tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
neil: init at 0.0.13
José Luis Lafuente
4 years ago
1d5d0bb9
31ffc50c
+38
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
neil
default.nix
top-level
all-packages.nix
+36
pkgs/development/tools/neil/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchFromGitHub
4
+
, makeWrapper
5
+
, babashka
6
+
}:
7
+
8
+
stdenv.mkDerivation rec {
9
+
pname = "neil";
10
+
version = "0.0.13";
11
+
12
+
src = fetchFromGitHub {
13
+
owner = "babashka";
14
+
repo = "neil";
15
+
rev = "v${version}";
16
+
sha256 = "0jiyl0d39d8kk5bpangwxiy90vqipj4lgp8x84rh4z5m53knjpkd";
17
+
};
18
+
19
+
nativeBuildInputs = [ makeWrapper ];
20
+
21
+
dontBuild = true;
22
+
23
+
installPhase = ''
24
+
install -D neil $out/bin/neil
25
+
wrapProgram $out/bin/neil \
26
+
--prefix PATH : "${lib.makeBinPath [ babashka ]}"
27
+
'';
28
+
29
+
meta = with lib; {
30
+
homepage = "https://github.com/babashka/neil";
31
+
description = "A CLI to add common aliases and features to deps.edn-based projects";
32
+
license = licenses.mit;
33
+
platforms = babashka.meta.platforms;
34
+
maintainers = with maintainers; [ jlesquembre ];
35
+
};
36
+
}
+2
pkgs/top-level/all-packages.nix
···
7669
7670
pwsafe = callPackage ../applications/misc/pwsafe { };
7671
0
0
7672
niff = callPackage ../tools/package-management/niff { };
7673
7674
nifskope = libsForQt5.callPackage ../tools/graphics/nifskope { };
···
7669
7670
pwsafe = callPackage ../applications/misc/pwsafe { };
7671
7672
+
neil = callPackage ../development/tools/neil { };
7673
+
7674
niff = callPackage ../tools/package-management/niff { };
7675
7676
nifskope = libsForQt5.callPackage ../tools/graphics/nifskope { };