3
0
Fork 0
forked from mirrors/nixpkgs

Add the download Haskell library

svn path=/nixpkgs/trunk/; revision=30125
This commit is contained in:
Shea Levy 2011-10-30 13:55:22 +00:00
parent 67e7995cdc
commit 62a775f829
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, feed, tagsoup, xml }:
cabal.mkDerivation (self: {
pname = "download";
version = "0.3.2";
sha256 = "0nhbfq8q9ckc5fnlg54l361p2jhkag9cz11v07kj9f1kwkm4d7w3";
buildDepends = [ feed tagsoup xml ];
meta = {
homepage = "http://code.haskell.org/~dons/code/download";
description = "High-level file download based on URLs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -545,6 +545,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
doubleConversion = callPackage ../development/libraries/haskell/double-conversion {};
download = callPackage ../development/libraries/haskell/download {};
editline = callPackage ../development/libraries/haskell/editline {};
emailValidate = callPackage ../development/libraries/haskell/email-validate {};