summaryrefslogtreecommitdiff
path: root/anonco/default.nix
blob: 9472b739c564817f7d51ec05281dae5932533e99 (plain)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation, base, random, split, stdenv }:
mkDerivation {
  pname = "anonco";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base random split ];
  license = stdenv.lib.licenses.bsd3;
}