-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.nix
33 lines (33 loc) · 1.26 KB
/
package.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ mkDerivation, aeson, aeson-lens, array, attoparsec, base
, bytestring, containers, generic-deriving, hedgehog, http-types
, HUnit, invariant, io-streams, json-stream, lens, lens-aeson, mtl
, semigroupoids, stdenv, streaming, streaming-bytestring
, streaming-utils, tasty, tasty-hedgehog, tasty-hunit, text
, text-show, time, uuid, wai, warp, webdriver, wreq
}:
mkDerivation {
pname = "effpee";
version = "0.1.4";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson array base bytestring containers generic-deriving http-types
invariant lens lens-aeson mtl semigroupoids text text-show time
uuid wai
];
executableHaskellDepends = [
aeson aeson-lens array attoparsec base bytestring containers
generic-deriving hedgehog http-types HUnit invariant io-streams
json-stream lens lens-aeson mtl semigroupoids streaming
streaming-bytestring streaming-utils tasty tasty-hedgehog
tasty-hunit text text-show time uuid wai warp webdriver wreq
];
testHaskellDepends = [
base hedgehog HUnit tasty tasty-hedgehog tasty-hunit text text-show
webdriver
];
homepage = "https://github.com/mbbx6spp/effpee";
description = "Exercises for teaching typed functional programming";
license = stdenv.lib.licenses.agpl3;
}