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-05-30 11:01:48 +02:00
|
|
|
version = "0.16.0.0";
|
|
|
|
sha256 = "086mnhbp1d3n0xdn4cdlyrkkgrykg4bwhi7sbfdmn688qhpl3g9m";
|
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-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-29 17:23:57 +01:00
|
|
|
};
|
|
|
|
})
|