summaryrefslogtreecommitdiff
path: root/util/default.nix
blob: 5e6f689c9f44f466231b6326a2438705d8aebad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ replaceVarsWith
, perl
}:

replaceVarsWith {
  pname = "seacrit";
  version = "0.0.1";

  src = ./seacrit;
  dir = "bin";
  isExecutable = true;
  replacements = {
    perl = perl.withPackages (p: with p; [ JSON FileTemp ]);
  };
}