2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, HUnit, testFramework, testFrameworkHunit
|
|
|
|
, testFrameworkThPrime, transformers
|
|
|
|
}:
|
2012-11-01 15:07:15 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "optparse-applicative";
|
2012-12-25 11:35:03 +01:00
|
|
|
version = "0.5.2.1";
|
|
|
|
sha256 = "0w4mk851mx8dch8lnck0g82asmzrsc47xrf34jygh0f6v4kbj40i";
|
2012-11-01 15:07:15 +01:00
|
|
|
buildDepends = [ transformers ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
|
|
|
HUnit testFramework testFrameworkHunit testFrameworkThPrime
|
|
|
|
];
|
2013-04-18 22:19:36 +02:00
|
|
|
jailbreak = true;
|
2012-11-01 15:07:15 +01: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;
|
|
|
|
};
|
|
|
|
})
|