-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
34 lines (34 loc) · 1.28 KB
/
default.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
34
{ mkDerivation, aeson, attoparsec, base-noprelude, dhall
, email-validate, email-validate-json, exceptions, hedgehog
, http-client, http-client-tls, http-types, lens, mtl
, optparse-applicative, protolude, servant, servant-client, stdenv
, tagsoup, tasty, tasty-hedgehog, tasty-hunit, text
}:
mkDerivation {
pname = "mtl-classy-prism";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base-noprelude dhall email-validate
email-validate-json exceptions http-client http-client-tls
http-types lens mtl optparse-applicative protolude servant
servant-client tagsoup text
];
executableHaskellDepends = [
aeson attoparsec base-noprelude dhall email-validate
email-validate-json exceptions http-client http-client-tls
http-types lens mtl optparse-applicative protolude servant
servant-client tagsoup text
];
testHaskellDepends = [
aeson attoparsec base-noprelude dhall email-validate
email-validate-json exceptions hedgehog http-client http-client-tls
http-types lens mtl optparse-applicative protolude servant
servant-client tagsoup tasty tasty-hedgehog tasty-hunit text
];
description = "Extract html content";
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}