2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, HUnit, testFramework, testFrameworkHunit
|
|
|
|
, testFrameworkThPrime, transformers
|
|
|
|
}:
|
2012-11-01 14:07:15 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "optparse-applicative";
|
2012-12-25 10:35:03 +00:00
|
|
|
version = "0.5.2.1";
|
|
|
|
sha256 = "0w4mk851mx8dch8lnck0g82asmzrsc47xrf34jygh0f6v4kbj40i";
|
2012-11-01 14:07:15 +00:00
|
|
|
buildDepends = [ transformers ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
HUnit testFramework testFrameworkHunit testFrameworkThPrime
|
|
|
|
];
|
2013-04-18 20:19:36 +00:00
|
|
|
jailbreak = true;
|
2012-11-01 14:07:15 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/pcapriotti/optparse-applicative";
|
|
|
|
description = "Utilities and combinators for parsing command line options";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
2012-11-01 14:07:15 +00:00
|
|
|
};
|
|
|
|
})
|