2017-08-19 16:16:10 +02:00
|
|
|
{ mkDerivation, ansi-wl-pprint, base, bytestring, process
|
|
|
|
, QuickCheck, stdenv, transformers, transformers-compat
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "optparse-applicative";
|
2018-11-09 17:16:58 +01:00
|
|
|
version = "0.14.3.0";
|
|
|
|
sha256 = "72476302fe555a508917b2d7d6121c7b58ea5434cdc08aeb5d4b652e8f0e7663";
|
2017-08-19 16:16:10 +02:00
|
|
|
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;
|
|
|
|
}
|