about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/download-curl
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-10-30 15:39:13 +0000
committerShea Levy <shea@shealevy.com>2011-10-30 15:39:13 +0000
commit9bcfce124a63e971b3f6ed4bb77d058c883cf4f6 (patch)
treeabbde8931f2eb2e66cb761509ab5227dcf4f0324 /pkgs/development/libraries/haskell/download-curl
parent3ec73f62af44d5cb3b4ccacbaaedb82fdffd9c8e (diff)
Add download-curl
svn path=/nixpkgs/trunk/; revision=30130
Diffstat (limited to 'pkgs/development/libraries/haskell/download-curl')
-rw-r--r--pkgs/development/libraries/haskell/download-curl/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/download-curl/default.nix b/pkgs/development/libraries/haskell/download-curl/default.nix
new file mode 100644
index 0000000000000..fe391bd01bbb4
--- /dev/null
+++ b/pkgs/development/libraries/haskell/download-curl/default.nix
@@ -0,0 +1,14 @@
+{ cabal, curl, feed, tagsoup, xml }:
+
+cabal.mkDerivation (self: {
+  pname = "download-curl";
+  version = "0.1.3";
+  sha256 = "17g5dnw4yxi4kf5x71bkk4wx1zl8yjs5dd34k6dgnw9wgkz97qw1";
+  buildDepends = [ curl feed tagsoup xml ];
+  meta = {
+    homepage = "http://code.haskell.org/~dons/code/download-curl";
+    description = "High-level file download based on URLs";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})