summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/htgen/default.nix
blob: 86e9f2b659805b13717255111ea33f115004dc8f (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
{ bash, coreutils, gnused, stdenv, fetchgit, script ? "", ucspi-tcp }:
with import <stockholm/lib>;
let
  version = "1.0";
in stdenv.mkDerivation {
  name = "htgen-${version}";

  src = fetchgit {
    url = "http://cgit.krebsco.de/htgen";
    rev = "refs/v1.0";
    sha256 = "15z451f57ddaxm21dlqqx2kavzyqx4sgnnzz4ql6vl237979g09s";
  };

  installPhase = ''
    find
    mkdir -p $out/bin
    {
      echo '#! ${bash}/bin/bash'
      echo 'export PATH=${makeBinPath [
        ucspi-tcp
        coreutils
        gnused
      ]}'
      sed -n '/^reply_404$/q;p' < htgen
      printf '%s' ${shell.escape script}
      echo 'reply_404'
    } > $out/bin/htgen
    chmod +x $out/bin/htgen
  '';
}