-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi3.nix
102 lines (102 loc) · 1.73 KB
/
openapi3.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{ mkDerivation
, aeson
, aeson-pretty
, base
, base-compat-batteries
, bytestring
, Cabal
, cabal-doctest
, containers
, cookie
, doctest
, generics-sop
, Glob
, hashable
, hspec
, hspec-discover
, http-media
, HUnit
, insert-ordered-containers
, lens
, lib
, mtl
, optics-core
, optics-th
, QuickCheck
, quickcheck-instances
, scientific
, template-haskell
, text
, time
, transformers
, unordered-containers
, utf8-string
, uuid-types
, vector
}:
mkDerivation {
pname = "openapi3";
version = "3.2.3";
sha256 = "d4e4570955bcc66fde72c3070bc3ef4bcf54b82ef71448f6541256d79dfa736b";
revision = "4";
editedCabalFile = "1wpdmp3xp948052y325h64smp6l809r8mcvh220bfbrb4vrbk43b";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson
aeson-pretty
base
base-compat-batteries
bytestring
containers
cookie
generics-sop
hashable
http-media
insert-ordered-containers
lens
mtl
optics-core
optics-th
QuickCheck
scientific
template-haskell
text
time
transformers
unordered-containers
uuid-types
vector
];
executableHaskellDepends = [ aeson base lens text ];
testHaskellDepends = [
aeson
base
base-compat-batteries
bytestring
containers
doctest
Glob
hashable
hspec
HUnit
insert-ordered-containers
lens
mtl
QuickCheck
quickcheck-instances
template-haskell
text
time
unordered-containers
utf8-string
vector
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/biocad/openapi3";
description = "OpenAPI 3.0 data model";
license = lib.licenses.bsd3;
mainProgram = "example";
doCheck = false;
}