2017-09-12 04:21:27 +03:00
|
|
|
{ mkDerivation, base, wai, warp, http-types, aeson, optparse-applicative, doctest,
|
2017-08-15 09:42:24 +03:00
|
|
|
hspec, hspec-wai, mtl, sqlite-simple, sqlite-simple-errors
|
|
|
|
, stdenv
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "level06";
|
|
|
|
version = "0.1.0.0";
|
|
|
|
sha256 = "0";
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
executableHaskellDepends = [
|
|
|
|
base wai warp http-types optparse-applicative aeson
|
2017-09-12 04:21:27 +03:00
|
|
|
doctest hspec hspec-wai mtl sqlite-simple sqlite-simple-errors
|
2017-08-15 09:42:24 +03:00
|
|
|
];
|
|
|
|
description = "Simplest of web apps";
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
}
|