summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/dic/default.nix
blob: 39402c0124e1561b7873cad6dfdd7a25f111b523 (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
{ fetchgit, lib, stdenv
, coreutils, curl, gnugrep, gnused, util-linux
}:

stdenv.mkDerivation {
  name = "dic";

  src = fetchgit {
    url = https://cgit.ni.krebsco.de/dic;
    rev = "refs/tags/v1.1.1";
    sha256 = "1gbj967a5hj53fdkkxijqgwnl9hb8kskz0cmpjq7v65ffz3v6vag";
  };

  phases = [
    "unpackPhase"
    "installPhase"
  ];

  installPhase =
    let
      path = lib.makeBinPath [
        coreutils
        curl
        gnused
        gnugrep
        util-linux
      ];
    in
    ''
      mkdir -p $out/bin

      sed \
        's,^main() {$,&\n  PATH=${path}; export PATH,' \
        < ./dic \
        > $out/bin/dic

      chmod +x $out/bin/dic
    '';
}