1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, editline }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
15 nativeBuildInputs = [ autoreconfHook pkg-config ];
17 buildInputs = [ editline ];
19 passthru.shellPath = "/bin/jush";
22 description = "just a useless shell";
23 homepage = "https://github.com/troglobit/jush";
24 license = licenses.isc;
25 platforms = platforms.all;
26 maintainers = with maintainers; [ dtzWill ];