2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, extensibleExceptions, mtl, network, parsec, xhtml }:
|
2009-04-19 17:21:40 +04:00
|
|
|
|
2011-08-10 04:35:08 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 17:21:40 +04:00
|
|
|
pname = "cgi";
|
2011-08-10 04:35:08 +04:00
|
|
|
version = "3001.1.7.4";
|
2011-03-12 20:28:15 +03:00
|
|
|
sha256 = "1fiild4djzhyz683kwwb0k4wvhd89ihbn6vncjl270xvwj5xmrbd";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ extensibleExceptions mtl network parsec xhtml ];
|
2009-04-19 17:21:40 +04:00
|
|
|
meta = {
|
2011-08-10 04:35:08 +04:00
|
|
|
homepage = "http://andersk.mit.edu/haskell/cgi/";
|
2009-04-19 17:21:40 +04:00
|
|
|
description = "A library for writing CGI programs";
|
2011-08-10 04:35:08 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-19 17:21:40 +04:00
|
|
|
};
|
2011-03-28 19:04:00 +04:00
|
|
|
})
|