2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, MissingH, mtl, parsec }:
|
2010-04-15 23:10:06 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 23:10:06 +02:00
|
|
|
pname = "ConfigFile";
|
|
|
|
version = "1.0.6";
|
|
|
|
sha256 = "339722184b86d53d8b361933e572b6e1478824c7eba3fb66b67d0eb5245cd038";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ MissingH mtl parsec ];
|
2010-04-15 23:10:06 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://software.complete.org/configfile";
|
2010-04-15 23:10:06 +02:00
|
|
|
description = "Configuration file reading & writing";
|
|
|
|
license = "LGPL";
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-04-15 23:10:06 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|