7295830f7e
- aeson: updated to version 0.6.0.1 - alex-meta: updated to version 0.3.0.3 - BNFC-meta: updated to version 0.3.0.1 - hakyll: updated to version 3.2.7.1 - happy-meta: updated to version 0.2.0.4 - http-enumerator: updated to version 0.7.3.2 - multiarg: updated to version 0.2.0.0 Disabled Haddock documentation for the following packages, because the input crashes Haddock: - BNFC-meta - alex-meta Re-enabled Haddock documentation for the following packages, because previously occurring errors have been fixed: - ConfigFile - HDBC-odbc - Hipmunk - instant-generics - RepLib - type-equality - xmonad - xmonad-extras - yesod-core svn path=/nixpkgs/trunk/; revision=33559
18 lines
516 B
Nix
18 lines
516 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 ];
|
|
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 ];
|
|
};
|
|
})
|