jush: init at 0.1
This commit is contained in:
parent
ffc8ac2fad
commit
3c13d77713
27
pkgs/shells/jush/default.nix
Normal file
27
pkgs/shells/jush/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6831,6 +6831,8 @@ in
|
|||||||
|
|
||||||
ion = callPackage ../shells/ion { };
|
ion = callPackage ../shells/ion { };
|
||||||
|
|
||||||
|
jush = callPackage ../shells/jush { };
|
||||||
|
|
||||||
ksh = callPackage ../shells/ksh { };
|
ksh = callPackage ../shells/ksh { };
|
||||||
|
|
||||||
mksh = callPackage ../shells/mksh { };
|
mksh = callPackage ../shells/mksh { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user