2012-07-02 10:44:37 +02:00
|
|
|
{ cabal, explicitException, utf8String }:
|
2012-01-29 17:23:57 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "multiarg";
|
2013-03-08 12:18:21 +01:00
|
|
|
version = "0.10.0.0";
|
|
|
|
sha256 = "09clgin66i2m0b3ws7di9p15cy9bd144as832xpx4li6cfbg16ip";
|
2012-07-02 10:44:37 +02:00
|
|
|
buildDepends = [ explicitException utf8String ];
|
2012-01-29 17:23:57 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/massysett/multiarg";
|
|
|
|
description = "Combinators to build command line parsers";
|
2013-01-09 16:52:02 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2012-01-29 17:23:57 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-01-29 17:23:57 +01:00
|
|
|
};
|
|
|
|
})
|