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";
|
2011-10-26 19:37:19 +02:00
|
|
|
version = "1.1.1";
|
|
|
|
sha256 = "0w2yhbnqldhmj3d98j720l4lj4d08abqcff751p2slszdm5pw1jm";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ MissingH mtl parsec ];
|
2011-10-21 18:13:56 +02:00
|
|
|
noHaddock = true;
|
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
|
|
|
})
|