summaryrefslogtreecommitdiffstats
path: root/regfish.nix
blob: 14c7dc62e4c6dd17386c81f96ce495373c92000f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ mkDerivation, acid-state, base, bytestring, data-default
, HandsomeSoup, hex-text, http-client, hxt, lens, lib, mtl
, safecopy, split, text, wreq
}:
mkDerivation {
  pname = "regfish";
  version = "2.0.0";
  src = ./.;
  libraryHaskellDepends = [
    acid-state base bytestring data-default HandsomeSoup hex-text
    http-client hxt lens mtl safecopy split text wreq
  ];
  license = lib.licenses.mit;
}