summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HTTP/4000.2.10.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/HTTP/4000.2.10.nix')
-rw-r--r--pkgs/development/libraries/haskell/HTTP/4000.2.10.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/HTTP/4000.2.10.nix b/pkgs/development/libraries/haskell/HTTP/4000.2.10.nix
new file mode 100644
index 000000000000..c893d2f1e750
--- /dev/null
+++ b/pkgs/development/libraries/haskell/HTTP/4000.2.10.nix
@@ -0,0 +1,24 @@
+{ cabal, caseInsensitive, conduit, deepseq, httpdShed, httpTypes
+, HUnit, mtl, network, parsec, pureMD5, split, testFramework
+, testFrameworkHunit, wai, warp
+}:
+
+cabal.mkDerivation (self: {
+  pname = "HTTP";
+  version = "4000.2.10";
+  sha256 = "1l97l6am45xgyg0dyxpfgbxc00wp8ishm7spd0hbgmwc5sgnvppg";
+  buildDepends = [ mtl network parsec ];
+  testDepends = [
+    caseInsensitive conduit deepseq httpdShed httpTypes HUnit mtl
+    network pureMD5 split testFramework testFrameworkHunit wai warp
+  ];
+  jailbreak = true;
+  doCheck = false;
+  meta = {
+    homepage = "https://github.com/haskell/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 ];
+  };
+})