2011-08-21 22:21:22 +02:00
|
|
|
{ cabal, mtl, split, syb }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "cmdlib";
|
2011-08-23 10:45:04 +02:00
|
|
|
version = "0.3.3";
|
|
|
|
sha256 = "0gryz70d69r9pscwxmn5yr02r0zvvgj1vwc3g9klgbkipbsa7xvk";
|
2011-08-21 22:21:22 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ mtl split syb ];
|
|
|
|
meta = {
|
|
|
|
description = "a library for command line parsing & online help";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-22 13:54:16 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-21 22:21:22 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|