mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-12-03 05:25:08 +03:00
57b72204be
Level 01 : Absolute Starting Point - possibly too basic Level 02 : Start specifying an application and filling it out - needs more detail about the spec we're trying to build README adjustments.
14 lines
344 B
Nix
14 lines
344 B
Nix
{ mkDerivation, base, wai, warp, http-types, yaml-config, stdenv }:
|
|
mkDerivation {
|
|
pname = "level02";
|
|
version = "0.1.0.0";
|
|
sha256 = "0";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [
|
|
base wai warp http-types yaml-config
|
|
];
|
|
description = "Simplest of web apps";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|