cb28766341
svn path=/nixpkgs/trunk/; revision=32327
18 lines
508 B
Nix
18 lines
508 B
Nix
{ cabal, mtl, network, parsec, xhtml }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cgi";
|
|
version = "3001.1.7.2";
|
|
sha256 = "ad35971388fa1809a5cd71bb2f051d69d753e4153b43d843b431674cf79a1c39";
|
|
buildDepends = [ mtl network parsec xhtml ];
|
|
meta = {
|
|
description = "A library for writing CGI programs";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|