summaryrefslogtreecommitdiffstats
path: root/cgserver.nix
blob: 28c4b166a221f585d37e0fac3a4cdb1673435dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, aeson, attoparsec, base, bytestring, containers
, directory, filepath, http-types, io-streams, safe, stdenv, text
, wai, wai-extra, warp
}:
mkDerivation {
  pname = "cgserver";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  buildDepends = [
    aeson attoparsec base bytestring containers directory filepath
    http-types io-streams safe text wai wai-extra warp
  ];
  license = stdenv.lib.licenses.bsd3;
}