2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, explicitException, QuickCheck, text, transformers
|
2012-01-29 17:23:57 +01:00
|
|
|
, utf8String
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "multiarg";
|
|
|
|
version = "0.1.0.0";
|
|
|
|
sha256 = "010mph49fq0rdr5dmm4pdlbmfmaaas8wffa9p1cgprs2ic1hnx3g";
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
explicitException QuickCheck text transformers utf8String
|
2012-01-29 17:23:57 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/massysett/multiarg";
|
|
|
|
description = "Combinators to build command line parsers";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-29 17:23:57 +01:00
|
|
|
};
|
|
|
|
})
|