blob: db208c54cf3fd09747dc8b44b03fe6ad2b102316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{ coreutils
, fetchFromGitHub
, findutils
, gawk
, git
, gnused
, jq
, lib
, makeWrapper
, ncurses
, nix-gitignore
, stdenv
, tree-grepper
}:
stdenv.mkDerivation {
name = "anissue";
src = nix-gitignore.gitignoreSource [ ] ./.;
nativeBuildInputs = [ makeWrapper ];
buildPhase = ":";
installPhase = ''
mkdir -p $out/{bin,share}
for bin in src/*.sh; do
cp $bin $out/share/$(basename $bin)
wrapProgram $out/share/$(basename $bin) \
--set PATH ${lib.makeBinPath [
coreutils
findutils
gawk
git
gnused
jq
ncurses
tree-grepper
]}
done
ln -s $out/share/extract.sh $out/bin/anissue
'';
}
|