aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/shells/jush/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/jush/default.nix')
-rw-r--r--nixpkgs/pkgs/shells/jush/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/shells/jush/default.nix b/nixpkgs/pkgs/shells/jush/default.nix
new file mode 100644
index 00000000000..833947a6ddb
--- /dev/null
+++ b/nixpkgs/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 ];
+ };
+}