3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
539 B
Nix
17 lines
539 B
Nix
{ cabal, filepath, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cmdargs";
|
|
version = "0.10.3";
|
|
sha256 = "1cglfbkmgbsv3k32vdfg4xk6b5g5c2z8pm0xgbmdb4bbg765lrh6";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ filepath transformers ];
|
|
meta = {
|
|
homepage = "http://community.haskell.org/~ndm/cmdargs/";
|
|
description = "Command line argument processing";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|