depot/third_party/nixpkgs/pkgs/shells/jush/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
658 B
Nix

{ 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 ];
};
}