summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cgi/default.nix
blob: e6e5bd91df6e937b478d4baaa70192229e68f33e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{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";
  };
})