aboutsummaryrefslogtreecommitdiff
path: root/modules/pkgs/sproxy2/http-client.nix
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2018-06-28 17:05:27 +0300
committerIgor Pashev <pashev.igor@gmail.com>2018-06-28 17:05:27 +0300
commit98b9d61bc33b42699b70830fa5a77d8dfac3b30b (patch)
treed63c40b331ab91d3dd2bc218f11143c94987d535 /modules/pkgs/sproxy2/http-client.nix
parent6ea2011f8a4b92418fc66fda7b5cd082275838b5 (diff)
downloadnixsap-98b9d61bc33b42699b70830fa5a77d8dfac3b30b.tar.gz
sproxy2: drop overrides
Fails to build with recent nixpkgs.
Diffstat (limited to 'modules/pkgs/sproxy2/http-client.nix')
-rw-r--r--modules/pkgs/sproxy2/http-client.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/pkgs/sproxy2/http-client.nix b/modules/pkgs/sproxy2/http-client.nix
deleted file mode 100644
index 8dbd16c..0000000
--- a/modules/pkgs/sproxy2/http-client.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ mkDerivation, array, async, base, base64-bytestring
-, blaze-builder, bytestring, case-insensitive, containers, cookie
-, deepseq, directory, exceptions, filepath, ghc-prim, hspec
-, http-types, mime-types, monad-control, network, network-uri
-, random, stdenv, streaming-commons, text, time, transformers, zlib
-}:
-mkDerivation {
- pname = "http-client";
- version = "0.5.3.3";
- sha256 = "1kk4j5bg8fkw94c8r8b4ipxmia2arfkbbnhpgamcjy7m8mgbbblg";
- libraryHaskellDepends = [
- array base base64-bytestring blaze-builder bytestring
- case-insensitive containers cookie deepseq exceptions filepath
- ghc-prim http-types mime-types network network-uri random
- streaming-commons text time transformers
- ];
- testHaskellDepends = [
- async base base64-bytestring blaze-builder bytestring
- case-insensitive containers deepseq directory hspec http-types
- monad-control network network-uri streaming-commons text time
- transformers zlib
- ];
- doCheck = false;
- homepage = "https://github.com/snoyberg/http-client";
- description = "An HTTP client engine";
- license = stdenv.lib.licenses.mit;
-}