summary refs log tree commit diff
path: root/pkgs/shells/yash/default.nix
blob: 44faf5c4e0277006eea632228aa2dddd498814d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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";
}