mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
|
{ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring
|
||
|
, Cabal, cabal-doctest, containers, doctest, generics-sop, Glob
|
||
|
, hashable, hspec, http-media, HUnit, insert-ordered-containers
|
||
|
, lens, mtl, network, QuickCheck, scientific, stdenv
|
||
|
, template-haskell, text, time, transformers, transformers-compat
|
||
|
, unordered-containers, uuid-types, vector
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "swagger2";
|
||
|
version = "2.1.6";
|
||
|
sha256 = "01a29h56vfyw0ilij1pn6qwy50ca90kyj884vs1q52vvh572758j";
|
||
|
setupHaskellDepends = [ base Cabal cabal-doctest ];
|
||
|
libraryHaskellDepends = [
|
||
|
aeson base base-compat bytestring containers generics-sop hashable
|
||
|
http-media insert-ordered-containers lens mtl network scientific
|
||
|
template-haskell text time transformers transformers-compat
|
||
|
unordered-containers uuid-types vector
|
||
|
];
|
||
|
testHaskellDepends = [
|
||
|
aeson aeson-qq base base-compat bytestring containers doctest Glob
|
||
|
hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck
|
||
|
text time unordered-containers vector
|
||
|
];
|
||
|
homepage = "https://github.com/GetShopTV/swagger2";
|
||
|
description = "Swagger 2.0 data model";
|
||
|
license = stdenv.lib.licenses.bsd3;
|
||
|
}
|