mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-12-04 05:25:33 +03:00
18 lines
499 B
Nix
18 lines
499 B
Nix
|
{ mkDerivation, base, wai, warp, http-types, aeson, optparse-applicative,
|
||
|
hspec, hspec-wai, mtl, sqlite-simple, sqlite-simple-errors
|
||
|
, stdenv
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "level07";
|
||
|
version = "0.1.0.0";
|
||
|
sha256 = "0";
|
||
|
isLibrary = false;
|
||
|
isExecutable = true;
|
||
|
executableHaskellDepends = [
|
||
|
base wai warp http-types optparse-applicative aeson
|
||
|
hspec hspec-wai mtl sqlite-simple sqlite-simple-errors
|
||
|
];
|
||
|
description = "Simplest of web apps";
|
||
|
license = stdenv.lib.licenses.bsd3;
|
||
|
}
|