mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
commit
17a097c64c
|
@ -13589,4 +13589,15 @@
|
|||
github = "PhilippWoelfel";
|
||||
githubId = 19400064;
|
||||
};
|
||||
qbit = {
|
||||
name = "Aaron Bieber";
|
||||
email = "aaron@bolddaemon.com";
|
||||
github = "qbit";
|
||||
githubId = 68368;
|
||||
matrix = "@qbit:tapenet.org";
|
||||
keys = [{
|
||||
longkeyid = "rsa4096/0x1F81112D62A9ADCE";
|
||||
fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE";
|
||||
}];
|
||||
};
|
||||
}
|
||||
|
|
23
pkgs/shells/yash/default.nix
Normal file
23
pkgs/shells/yash/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, lib, fetchurl, gettext, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "yash";
|
||||
version = "2.52";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
|
||||
sha256 = "sha256:1jdmj4cyzwxxyyqf20y1zi578h7md860ryffp02qi143zpppn4sm";
|
||||
};
|
||||
|
||||
buildInputs = [ gettext ncurses ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Yet another POSIX-compliant shell";
|
||||
homepage = "https://yash.osdn.jp/index.html.en";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ qbit ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
passthru.shellPath = "/bin/yash";
|
||||
}
|
|
@ -11445,6 +11445,8 @@ with pkgs;
|
|||
|
||||
zsh-prezto = callPackage ../shells/zsh/zsh-prezto { };
|
||||
|
||||
yash = callPackage ../shells/yash { };
|
||||
|
||||
grml-zsh-config = callPackage ../shells/zsh/grml-zsh-config { };
|
||||
|
||||
powerline = with python3Packages; toPythonApplication powerline;
|
||||
|
|
Loading…
Reference in a new issue