about summary refs log tree commit diff
path: root/pkgs/shells/nsh
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-10-30 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-10-30 04:20:00 +0000
commit00af64cee3a176a4380924bac3ad1c0c6950a02b (patch)
tree31e7c855b9a6ef13681cea965df79e96eaa76231 /pkgs/shells/nsh
parentc2189078d81c846a9f72f5e6d05ef1e9a72ba09d (diff)
nsh: init at 0.4.2
Diffstat (limited to 'pkgs/shells/nsh')
-rw-r--r--pkgs/shells/nsh/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/shells/nsh/default.nix b/pkgs/shells/nsh/default.nix
new file mode 100644
index 0000000000000..881d14002ebdf
--- /dev/null
+++ b/pkgs/shells/nsh/default.nix
@@ -0,0 +1,29 @@
+{ lib, rustPlatform, fetchFromGitHub }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "nsh";
+  version = "0.4.2";
+
+  src = fetchFromGitHub {
+    owner = "nuta";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1479wv8h5l2b0cwp27vpybq50nyvszhjxmn76n2bz3fchr0lrcbp";
+  };
+
+  cargoSha256 = "1kxjr4ymns95g6jz94107nqmd71m2xh8k19gcsy08650gjrn5cz3";
+
+  doCheck = false;
+
+  meta = with lib; {
+    description = "A command-line shell like fish, but POSIX compatible";
+    homepage = "https://github.com/nuta/nsh";
+    changelog = "https://github.com/nuta/nsh/raw/v${version}/docs/changelog.md";
+    license = [ licenses.cc0 /* or */ licenses.mit ];
+    maintainers = [ maintainers.marsam ];
+  };
+
+  passthru = {
+    shellPath = "/bin/nsh";
+  };
+}