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";
|
2013-10-18 16:03:36 +01:00
|
|
|
version = "0.7.0";
|
|
|
|
sha256 = "1mhf9jrkznd2aq11610rkss09i9q33i9f97f492z854bp86pfkk8";
|
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 21:19:36 +01: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;
|
|
|
|
};
|
|
|
|
})
|