aboutsummaryrefslogtreecommitdiffstats
path: root/anissue.nix
blob: e0c3496912ba1ee10994b498a52084f1993aa869 (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
39
40
{ coreutils
, fetchFromGitHub
, findutils
, gawk
, git
, gnugrep
, 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
          gnugrep
          gnused
          jq
          ncurses
          tree-grepper
        ]}
    done
    ln -s $out/share/extract.sh $out/bin/anissue
  '';
}