2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, mtl, network, parsec, xhtml }:
|
2009-04-19 14:21:40 +01:00
|
|
|
|
2011-08-10 01:35:08 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 14:21:40 +01:00
|
|
|
pname = "cgi";
|
2011-08-10 01:35:08 +01:00
|
|
|
version = "3001.1.7.1";
|
2009-04-19 14:21:40 +01:00
|
|
|
sha256 = "7d1d710871fffbbec2a33d7288b2959ddbcfd794d47f0122127576c02550b339";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ mtl network parsec xhtml ];
|
2009-04-19 14:21:40 +01:00
|
|
|
meta = {
|
|
|
|
description = "A library for writing CGI programs";
|
2011-08-10 01:35:08 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-19 14:21:40 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|