nixpkgs/pkgs/shells/yash/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
605 B
Nix
Raw Normal View History

2022-01-09 13:48:36 +00:00
{ stdenv, lib, fetchurl, gettext, ncurses }:
stdenv.mkDerivation rec {
pname = "yash";
version = "2.53";
2022-01-09 13:48:36 +00:00
src = fetchurl {
url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
hash = "sha256-5DDuhF39dxHE+GTVGN+H3Xi0BWAyfElPWczEcxWFMF0=";
2022-01-09 13:48:36 +00:00
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
2022-01-09 13:48:36 +00:00
buildInputs = [ gettext ncurses ];
meta = with lib; {
homepage = "https://yash.osdn.jp/index.html.en";
2022-06-03 00:57:11 +00:00
description = "Yet another POSIX-compliant shell";
2022-01-09 13:48:36 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ qbit ];
platforms = platforms.all;
};
passthru.shellPath = "/bin/yash";
}