Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
37 lines
821 B
Nix
37 lines
821 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, babashka
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "neil";
|
|
version = "0.3.68";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "babashka";
|
|
repo = "neil";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ulqVrFsuYvRKxASHI6AqnHkKKdmDVgtivsRIscivcXw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -D neil $out/bin/neil
|
|
wrapProgram $out/bin/neil \
|
|
--prefix PATH : "${lib.makeBinPath [ babashka ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/babashka/neil";
|
|
description = "CLI to add common aliases and features to deps.edn-based projects";
|
|
mainProgram = "neil";
|
|
license = licenses.mit;
|
|
platforms = babashka.meta.platforms;
|
|
maintainers = with maintainers; [ jlesquembre ];
|
|
};
|
|
}
|