yash: init at 2.52
This commit is contained in:
parent
8f0eadb68c
commit
71930ab2f4
2 changed files with 25 additions and 0 deletions
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";
|
||||
}
|
|
@ -11438,6 +11438,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