Add download-curl

svn path=/nixpkgs/trunk/; revision=30130
This commit is contained in:
Shea Levy 2011-10-30 15:39:13 +00:00
parent 3ec73f62af
commit 9bcfce124a
2 changed files with 16 additions and 0 deletions

View File

@ -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;
};
})

View File

@ -549,6 +549,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
download = callPackage ../development/libraries/haskell/download {};
downloadCurl = callPackage ../development/libraries/haskell/download-curl { tagsoup = self.tagsoup_0_10_1; };
editline = callPackage ../development/libraries/haskell/editline {};
emailValidate = callPackage ../development/libraries/haskell/email-validate {};