13 lines
350 B
Nix
13 lines
350 B
Nix
|
{cabal, mtl, network, parsec, xhtml}:
|
||
|
|
||
|
cabal.mkDerivation (self : {
|
||
|
pname = "cgi";
|
||
|
version = "3001.1.7.1"; # Haskell Platform 2009.0.0
|
||
|
sha256 = "7d1d710871fffbbec2a33d7288b2959ddbcfd794d47f0122127576c02550b339";
|
||
|
propagatedBuildInputs = [mtl network parsec xhtml];
|
||
|
meta = {
|
||
|
description = "A library for writing CGI programs";
|
||
|
};
|
||
|
})
|
||
|
|