nixpkgs/pkgs/development/libraries/haskell/cgi/3001.2.0.0.nix
Peter Simons 2e505d0eb7 haskell-cgi: mark version 3001.2.0.0 broken
It needs mtl >=2.2.1 && <2.3, and we cannot easily satisfy this requirement.

It's interesting to observe how "cgi" remains broken in current versions of GHC
for months, despite the fact that it's a Haskell Platform package. Makes one
wonder about the purpose of the Haskell Platform, no? In the end, if there is
no maintainer for a package, then it stays unmaintained, HP member or not.
2014-08-29 12:52:27 +02:00

19 lines
639 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, exceptions, mtl, network, networkUri, parsec, xhtml }:
cabal.mkDerivation (self: {
pname = "cgi";
version = "3001.2.0.0";
sha256 = "03az978d5ayv5v4g89h4wajjhcribyf37b8ws8kvsqir3i7h7k8d";
buildDepends = [ exceptions mtl network networkUri parsec xhtml ];
meta = {
homepage = "https://github.com/cheecheeo/haskell-cgi";
description = "A library for writing CGI programs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
hydraPlatforms = self.stdenv.lib.platforms.none;
broken = true;
};
})