mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-11-30 02:14:01 +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.
12 lines
313 B
Nix
12 lines
313 B
Nix
{ mkDerivation, base, wai, warp, http-types, stdenv }:
|
|
mkDerivation {
|
|
pname = "level01";
|
|
version = "0.1.0.0";
|
|
sha256 = "0";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [ base wai warp http-types ];
|
|
description = "Simplest of web apps";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|