diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-11 14:51:14 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-12 03:47:46 +0100 |
commit | 90a988e9a7fa93c8e233850a68214ccd4cb8b11c (patch) | |
tree | 589cb47019bf291c416bc285d783a5f1845150e7 /anissue.nix | |
parent | 4f39e5dbfa49d97637c1370d665e2380118955a1 (diff) |
chore: drop anissue.nix
This file is unused since the Haskell rewrite.
Diffstat (limited to 'anissue.nix')
-rw-r--r-- | anissue.nix | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/anissue.nix b/anissue.nix deleted file mode 100644 index 95d7cf8..0000000 --- a/anissue.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ coreutils -, docopts -, fetchFromGitHub -, findutils -, gawk -, git -, gnugrep -, gnused -, jq -, lib -, makeWrapper -, ncurses -, nix-gitignore -, stdenv -}: -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) \ - --argv0 ''' \ - --set PATH ${lib.makeBinPath [ - git - ]} - done - ln -s $out/share/anissue.sh $out/bin/anissue - ''; -} |