about summary refs log tree commit diff
path: root/pkgs/shells/yash
diff options
context:
space:
mode:
authorAaron Bieber <aaron@bolddaemon.com>2022-01-09 06:48:36 -0700
committerAaron Bieber <aaron@bolddaemon.com>2022-01-09 06:48:36 -0700
commit71930ab2f4cd152d83c976e18be17e24acccad31 (patch)
tree6ec5e715441f53df4f6073cad9c7001062070604 /pkgs/shells/yash
parent8f0eadb68c74e730baeb17b46c16590b5cb6052b (diff)
yash: init at 2.52
Diffstat (limited to 'pkgs/shells/yash')
-rw-r--r--pkgs/shells/yash/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix
new file mode 100644
index 0000000000000..44faf5c4e0277
--- /dev/null
+++ b/pkgs/shells/yash/default.nix
@@ -0,0 +1,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";
+}