forked from mirrors/nixpkgs
b31d80ba92
Upstream changes: https://github.com/magicant/yash/blob/trunk/NEWS
25 lines
605 B
Nix
25 lines
605 B
Nix
{ stdenv, lib, fetchurl, gettext, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yash";
|
|
version = "2.53";
|
|
|
|
src = fetchurl {
|
|
url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
|
|
hash = "sha256-5DDuhF39dxHE+GTVGN+H3Xi0BWAyfElPWczEcxWFMF0=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
buildInputs = [ gettext ncurses ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://yash.osdn.jp/index.html.en";
|
|
description = "Yet another POSIX-compliant shell";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ qbit ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
passthru.shellPath = "/bin/yash";
|
|
}
|