2014-03-19 16:54:36 +01:00
|
|
|
{ cabal, ansiWlPprint, HUnit, QuickCheck, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2
|
2013-02-24 22:09:07 +01:00
|
|
|
, testFrameworkThPrime, transformers
|
|
|
|
}:
|
2012-11-01 15:07:15 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "optparse-applicative";
|
2014-05-05 23:04:02 +02:00
|
|
|
version = "0.8.1";
|
|
|
|
sha256 = "0zy295r2idrwz030i1slpgysyw08782cjc4vgpkxby8i6piixwlh";
|
2014-03-19 16:54:36 +01:00
|
|
|
buildDepends = [ ansiWlPprint transformers ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2014-03-19 16:54:36 +01:00
|
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 testFrameworkThPrime
|
2013-02-24 22:09:07 +01:00
|
|
|
];
|
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;
|
|
|
|
};
|
|
|
|
})
|