mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-11-30 02:14:01 +03:00
17 lines
461 B
Nix
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;
|
|
}
|