1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-27 01:23:00 +03:00
applied-fp-course/level06/default.nix

18 lines
516 B
Nix
Raw Normal View History

{ mkDerivation, base, wai, warp, http-types, aeson, optparse-applicative, doctest,
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
doctest hspec hspec-wai mtl sqlite-simple sqlite-simple-errors
];
description = "Simplest of web apps";
license = stdenv.lib.licenses.bsd3;
}