Skip to content
Snippets Groups Projects
Commit 29e506a2 authored by Daniel Firth's avatar Daniel Firth
Browse files

openapi3: init at 3.2.2

parent 40231af3
No related merge requests found
...@@ -219,6 +219,7 @@ let otherLibraries = ...@@ -219,6 +219,7 @@ let otherLibraries =
"https://github.com/locallycompact/nothunks" "https://github.com/locallycompact/nothunks"
"0d7e3565407aa4eb21d861d075dff6f20d090f97" "0d7e3565407aa4eb21d861d075dff6f20d090f97"
(None H.Subdir) (None H.Subdir)
, H.callHackage "openapi3" "3.2.2"
, H.callHackage "optparse-generic" "1.4.8" , H.callHackage "optparse-generic" "1.4.8"
, H.callHackage "partial-order" "0.2.0.0" , H.callHackage "partial-order" "0.2.0.0"
, H.callCabal2nix , H.callCabal2nix
......
...@@ -171,6 +171,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -171,6 +171,8 @@ final: prev: with pkgs.haskell.lib; {
nothunks = final.callPackage (./pkgs/nothunks.nix) { }; nothunks = final.callPackage (./pkgs/nothunks.nix) { };
openapi3 = final.callPackage (./pkgs/openapi3.nix) { };
optparse-generic = final.callPackage (./pkgs/optparse-generic.nix) { }; optparse-generic = final.callPackage (./pkgs/optparse-generic.nix) { };
partial-order = final.callPackage (./pkgs/partial-order.nix) { }; partial-order = final.callPackage (./pkgs/partial-order.nix) { };
......
{ mkDerivation
, Cabal
, Glob
, HUnit
, QuickCheck
, aeson
, aeson-pretty
, base
, base-compat-batteries
, bytestring
, cabal-doctest
, containers
, cookie
, doctest
, generics-sop
, hashable
, hspec
, hspec-discover
, http-media
, insert-ordered-containers
, lens
, lib
, mtl
, network
, optics-core
, optics-th
, quickcheck-instances
, scientific
, template-haskell
, text
, time
, transformers
, unordered-containers
, utf8-string
, uuid-types
, vector
}:
mkDerivation {
pname = "openapi3";
version = "3.2.2";
sha256 = "325d491e305de60510f5267b3eccdc2719d4a8e5784577d7e79aef28368d6134";
revision = "2";
editedCabalFile = "1yc3wlc8j84glav3hzx1l4yq33k05bll252a8yl6ld275jjswn8p";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
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
network
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 ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/biocad/openapi3";
description = "OpenAPI 3.0 data model";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment