1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-30 02:14:01 +03:00
applied-fp-course/level01/default.nix
Sean Chalmers 57b72204be Added two stages.
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.
2017-08-09 13:06:21 +10:00

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;
}