880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
19 lines
536 B
Nix
19 lines
536 B
Nix
{ cabal, MissingH, mtl, parsec }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ConfigFile";
|
|
version = "1.1.1";
|
|
sha256 = "0w2yhbnqldhmj3d98j720l4lj4d08abqcff751p2slszdm5pw1jm";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ MissingH mtl parsec ];
|
|
noHaddock = true;
|
|
meta = {
|
|
homepage = "http://software.complete.org/configfile";
|
|
description = "Configuration file reading & writing";
|
|
license = "LGPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|