mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
16 lines
595 B
Nix
16 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;
|
||
|
}
|