Newer
Older
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ mkDerivation
, ap-normalize
, base
, base-orphans
, contravariant
, criterion
, deepseq
, generic-lens
, ghc-boot-th
, lib
, one-liner
, show-combinators
, tasty
, tasty-hunit
}:
mkDerivation {
pname = "generic-data";
version = "1.0.0.0";
sha256 = "0fa021b8d0d879d9f1d81c792bf596ccc88ebdaf94dc0c1d1d3cadcf47eacab1";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ap-normalize
base
base-orphans
contravariant
ghc-boot-th
show-combinators
];
testHaskellDepends = [
base
generic-lens
one-liner
show-combinators
tasty
tasty-hunit
];
benchmarkHaskellDepends = [ base criterion deepseq ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Lysxia/generic-data#readme";
description = "Deriving instances with GHC.Generics and related utilities";
license = lib.licenses.mit;
broken = false;
}