1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-30 02:14:01 +03:00
applied-fp-course/level05/default.nix
2017-08-11 16:28:56 +10:00

17 lines
461 B
Nix

{ mkDerivation, base, wai, warp, http-types, aeson, optparse-applicative,
hspec, hspec-wai, postgresql-simple, mtl, stdenv
}:
mkDerivation {
pname = "level05";
version = "0.1.0.0";
sha256 = "0";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base wai warp http-types optparse-applicative aeson
hspec hspec-wai mtl postgresql-simple
];
description = "Simplest of web apps";
license = stdenv.lib.licenses.bsd3;
}