about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-10-24 16:43:12 +0200
committerPeter Simons <simons@cryp.to>2012-10-24 16:43:26 +0200
commitd48aea2118b0604364ab38a5d28c7a255fc7f670 (patch)
tree003ae9f7cb1f318fda10a75e3b22ff3d7a4b2671 /pkgs/development/libraries
parentb96362486756188b8e1a6c41b2af55e427b080d9 (diff)
downloadnixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.tar
nixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.tar.gz
nixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.tar.bz2
nixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.tar.lz
nixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.tar.xz
nixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.tar.zst
nixlib-d48aea2118b0604364ab38a5d28c7a255fc7f670.zip
Fix haskellPackackages_ghc742_pedantic package set, which was broken by an earlier commit.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/haskell/HTTP/4000.2.5.nix15
-rw-r--r--pkgs/development/libraries/haskell/async/2.0.1.3.nix15
2 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/HTTP/4000.2.5.nix b/pkgs/development/libraries/haskell/HTTP/4000.2.5.nix
new file mode 100644
index 000000000000..f345e7c98e1c
--- /dev/null
+++ b/pkgs/development/libraries/haskell/HTTP/4000.2.5.nix
@@ -0,0 +1,15 @@
+{ cabal, mtl, network, parsec }:
+
+cabal.mkDerivation (self: {
+  pname = "HTTP";
+  version = "4000.2.5";
+  sha256 = "03ij1zkykc438x2r1szz6ddvfhrjywlx61nrz377srcpbdmhxpb7";
+  buildDepends = [ mtl network parsec ];
+  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 ];
+  };
+})
diff --git a/pkgs/development/libraries/haskell/async/2.0.1.3.nix b/pkgs/development/libraries/haskell/async/2.0.1.3.nix
new file mode 100644
index 000000000000..a0da6384e958
--- /dev/null
+++ b/pkgs/development/libraries/haskell/async/2.0.1.3.nix
@@ -0,0 +1,15 @@
+{ cabal, stm }:
+
+cabal.mkDerivation (self: {
+  pname = "async";
+  version = "2.0.1.3";
+  sha256 = "1rbjr6xw5sp8npw17fxg0942kikssv2hyci2sy26r0na98483mkh";
+  buildDepends = [ stm ];
+  meta = {
+    homepage = "https://github.com/simonmar/async";
+    description = "Run IO operations asynchronously and wait for their results";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})