mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
ab8ec43d17
* Update turtle, optparse-{applicative,generic}; remove stack dep from nix-shell env * Track proto3-suite changes to readDotProtoWithContext * Update proto3-suite gitrev, use `compileDotProtoFileOrDie` in `GeneratedTests` * Bump `proto3-suite` rev * Bump `proto3-suite` and `proto3-wire` gitrevs, update `stack.yaml`
15 lines
595 B
Nix
15 lines
595 B
Nix
{ mkDerivation, ansi-wl-pprint, base, bytestring, process
|
|
, QuickCheck, stdenv, transformers, transformers-compat
|
|
}:
|
|
mkDerivation {
|
|
pname = "optparse-applicative";
|
|
version = "0.14.0.0";
|
|
sha256 = "06iwp1qsq0gjhnhxwyhdhldwvhlgcik6lx5jxpbb40fispyk4nxm";
|
|
libraryHaskellDepends = [
|
|
ansi-wl-pprint base process transformers transformers-compat
|
|
];
|
|
testHaskellDepends = [ base bytestring QuickCheck ];
|
|
homepage = "https://github.com/pcapriotti/optparse-applicative";
|
|
description = "Utilities and combinators for parsing command line options";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|