Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / shells / yash / default.nix
blob4957c657b86d1dba40f76a07b484f1a51af4e065
1 { stdenv, lib, fetchFromGitHub, gettext, ncurses, asciidoc }:
3 stdenv.mkDerivation rec {
4   pname = "yash";
5   version = "2.55";
7   src = fetchFromGitHub {
8     owner = "magicant";
9     repo = pname;
10     rev = version;
11     hash = "sha256-raTIqklo69JEuhzdWUK3uywuLjqeQJCJ9nvnLRxlGr4=";
12   };
14   strictDeps = true;
15   nativeBuildInputs = [ asciidoc gettext ];
16   buildInputs = [ ncurses ] ++ lib.optionals stdenv.isDarwin [ gettext ];
18   meta = with lib; {
19     homepage = "https://yash.osdn.jp/index.html.en";
20     description = "Yet another POSIX-compliant shell";
21     license = licenses.gpl2Plus;
22     maintainers = with maintainers; [ qbit ];
23     platforms = platforms.all;
24   };
26   passthru.shellPath = "/bin/yash";