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
23 lines
942 B
Nix
23 lines
942 B
Nix
{ mkDerivation, aeson, base, base-compat, hashable, lens
|
|
, QuickCheck, semigroupoids, semigroups, stdenv, tasty
|
|
, tasty-quickcheck, text, transformers, unordered-containers
|
|
}:
|
|
mkDerivation {
|
|
pname = "insert-ordered-containers";
|
|
version = "0.2.1.0";
|
|
sha256 = "1612f455dw37da9g7bsd1s5kyi84mnr1ifnjw69892amyimi47fp";
|
|
revision = "3";
|
|
editedCabalFile = "6fdce987672b006226243aa17522b57ec7a9e1cab247802eddbdaa9dc5b06446";
|
|
libraryHaskellDepends = [
|
|
aeson base base-compat hashable lens semigroupoids semigroups text
|
|
transformers unordered-containers
|
|
];
|
|
testHaskellDepends = [
|
|
aeson base base-compat hashable lens QuickCheck semigroupoids
|
|
semigroups tasty tasty-quickcheck text transformers
|
|
unordered-containers
|
|
];
|
|
homepage = "https://github.com/phadej/insert-ordered-containers#readme";
|
|
description = "Associative containers retating insertion order for traversals";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|