-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
26 lines (26 loc) · 771 Bytes
/
default.nix
File metadata and controls
26 lines (26 loc) · 771 Bytes
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
{ mkDerivation, aeson, aeson-pretty, base-noprelude, bytestring
, checkers, containers, hspec, HUnit, lens, mtl, protolude
, QuickCheck, stdenv
}:
mkDerivation {
pname = "apply-lens";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty base-noprelude bytestring containers lens mtl
protolude
];
executableHaskellDepends = [
aeson aeson-pretty base-noprelude bytestring containers lens mtl
protolude
];
testHaskellDepends = [
aeson aeson-pretty base-noprelude bytestring checkers containers
hspec HUnit lens mtl protolude QuickCheck
];
homepage = "https://github.com/githubuser/ #readme";
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}