summary refs log tree commit diff
path: root/pkgs/shells/jush
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-04-30 23:40:28 -0500
committerWill Dietz <w@wdtz.org>2019-04-30 23:41:58 -0500
commit3c13d77713b92a03590ae5f4f6d7dffbb57e6051 (patch)
tree83c0a6e17572eded9b0cf89f4e118c360ffac0c7 /pkgs/shells/jush
parentffc8ac2fad393182211f64ea8d9186ea9fe5b2ea (diff)
downloadnixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.tar
nixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.tar.gz
nixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.tar.bz2
nixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.tar.lz
nixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.tar.xz
nixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.tar.zst
nixpkgs-3c13d77713b92a03590ae5f4f6d7dffbb57e6051.zip
jush: init at 0.1
Diffstat (limited to 'pkgs/shells/jush')
-rw-r--r--pkgs/shells/jush/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/shells/jush/default.nix b/pkgs/shells/jush/default.nix
new file mode 100644
index 00000000000..833947a6ddb
--- /dev/null
+++ b/pkgs/shells/jush/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, editline }:
+
+stdenv.mkDerivation rec {
+  pname = "jush";
+  version = "0.1";
+
+  src = fetchFromGitHub {
+    owner = "troglobit";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+  buildInputs = [ editline ];
+
+  passthru.shellPath = "/bin/jush";
+
+  meta = with stdenv.lib; {
+    description = "just a useless shell";
+    homepage = https://github.com/troglobit/jush;
+    license = licenses.isc;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}