Author: shlevy
Date: Sun Oct 30 15:26:55 2011
New Revision: 30129
URL: https://nixos.org/websvn/nix/?rev=30129&sc=1

Log:
Whoops, forgot the nix expression

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/curl/default.nix

Added: nixpkgs/trunk/pkgs/development/libraries/haskell/curl/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/curl/default.nix   Sun Oct 
30 15:26:55 2011        (r30129)
@@ -0,0 +1,13 @@
+{ cabal, curl }:
+
+cabal.mkDerivation (self: {
+  pname = "curl";
+  version = "1.3.7";
+  sha256 = "0i6d7732p5gn1bcvavbxcg4wd18j425mi1yjg0b29zzz3yl0qhgi";
+  extraLibraries = [ curl ];
+  meta = {
+    description = "Haskell binding to libcurl";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to