neil: init at 0.0.13
This commit is contained in:
parent
31ffc50c57
commit
1d5d0bb97f
2 changed files with 38 additions and 0 deletions
36
pkgs/development/tools/neil/default.nix
Normal file
36
pkgs/development/tools/neil/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, makeWrapper
|
||||||
|
, babashka
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "neil";
|
||||||
|
version = "0.0.13";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "babashka";
|
||||||
|
repo = "neil";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0jiyl0d39d8kk5bpangwxiy90vqipj4lgp8x84rh4z5m53knjpkd";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 = "A CLI to add common aliases and features to deps.edn-based projects";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = babashka.meta.platforms;
|
||||||
|
maintainers = with maintainers; [ jlesquembre ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7669,6 +7669,8 @@ with pkgs;
|
||||||
|
|
||||||
pwsafe = callPackage ../applications/misc/pwsafe { };
|
pwsafe = callPackage ../applications/misc/pwsafe { };
|
||||||
|
|
||||||
|
neil = callPackage ../development/tools/neil { };
|
||||||
|
|
||||||
niff = callPackage ../tools/package-management/niff { };
|
niff = callPackage ../tools/package-management/niff { };
|
||||||
|
|
||||||
nifskope = libsForQt5.callPackage ../tools/graphics/nifskope { };
|
nifskope = libsForQt5.callPackage ../tools/graphics/nifskope { };
|
||||||
|
|
Loading…
Reference in a new issue