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