nixpkgs/pkgs/development/libraries/haskell/wreq/default.nix
Cray Elliott 8e9ab29d43 mark wreq as broken, issue made upstream
breaks because of incompatibility with lens > 4.4
2014-08-24 20:28:10 +02:00

33 lines
1.0 KiB
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, attoparsec, doctest, exceptions, filepath
, httpClient, httpClientTls, httpTypes, HUnit, lens, mimeTypes
, temporary, testFramework, testFrameworkHunit, text, time
}:
cabal.mkDerivation (self: {
pname = "wreq";
version = "0.1.0.1";
sha256 = "05w3b555arsab8a5w73nm9pk3p9r6jipi6cd3ngxv48gdn9wzhvz";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson attoparsec exceptions httpClient httpClientTls httpTypes lens
mimeTypes text time
];
testDepends = [
aeson doctest filepath httpClient httpTypes HUnit lens temporary
testFramework testFrameworkHunit text
];
doCheck = false;
meta = {
homepage = "http://www.serpentine.com/wreq";
description = "An easy-to-use HTTP client library";
license = self.stdenv.lib.licenses.bsd3;
broken = true;
hydraPlatforms = self.stdenv.lib.platforms.none;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ ocharles ];
};
})