nixpkgs/pkgs/development/libraries/haskell/HTTP/4000.0.6.nix
Peter Simons 28a0367f9e haskell-HTTP: disable 'doCheck' to avoid compilation errors
Setup: At least the following dependencies are missing:
  case-insensitive ==0.4.*,
  conduit >=0.4 && <0.6,
  http-types >=0.6 && <0.8,
  wai >=1.2 && <1.4
2013-02-25 00:32:43 +01:00

17 lines
510 B
Nix

{ cabal, mtl, network, parsec }:
cabal.mkDerivation (self: {
pname = "HTTP";
version = "4000.0.6";
sha256 = "75af1ac4dc21b10c8a1a54a33179ea822e591887bab7278360a3d6b38304d39b";
buildDepends = [ mtl network parsec ];
doCheck = false;
meta = {
homepage = "http://projects.haskell.org/http/";
description = "A library for client-side HTTP";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})