mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
19125b42be
* `proto3-suite` => `9394ade` and regenerate CG artifacts * `proto3-suite` => `56cf36f` * `proto3-wire` => `a938330` * `proto3-suite` => `e8f2acb` * Update `stack.yaml` * Update CG artifacts for Echo and Arithmetic examples * Update `stack.yaml` * `proto3-suite` => `aff63e6` and add related nix deps * Update CG artifacts for Echo and Arithmetic examples * `proto3-suite` => `97c4f66` * Nitpick: Rename test exe from `test` to `tests` * Add `.gitattributes` files to mark generated modules
27 lines
1.1 KiB
Nix
27 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;
|
|
}
|