depot/third_party/nixpkgs/pkgs/shells/yash/default.nix
Default email 14910f5943 Project import generated by Copybara.
GitOrigin-RevId: 5aaed40d22f0d9376330b6fa413223435ad6fee5
2022-01-13 15:06:32 -05:00

23 lines
594 B
Nix

{ 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";
}