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`
14 lines
507 B
Nix
14 lines
507 B
Nix
{ mkDerivation, base, bytestring, optparse-applicative, semigroups
|
|
, stdenv, system-filepath, text, time, transformers, void
|
|
}:
|
|
mkDerivation {
|
|
pname = "optparse-generic";
|
|
version = "1.2.1";
|
|
sha256 = "1dk945dp98mwk1v4y0cky3z0ngmd29nbg6fbaaxnigcrgpbvkjml";
|
|
libraryHaskellDepends = [
|
|
base bytestring optparse-applicative semigroups system-filepath
|
|
text time transformers void
|
|
];
|
|
description = "Auto-generate a command-line parser for your datatype";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|