Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / shells / jush / default.nix
bloba09024608bb63ddcba5a11d4fb87a3d213718b08
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, editline }:
3 stdenv.mkDerivation rec {
4   pname = "jush";
5   version = "0.1";
7   src = fetchFromGitHub {
8     owner = "troglobit";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
12   };
14   strictDeps = true;
15   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   buildInputs = [ editline ];
19   passthru.shellPath = "/bin/jush";
21   meta = with lib; {
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 ];
27   };