mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-19 10:32:40 +00:00
Add the download Haskell library
svn path=/nixpkgs/trunk/; revision=30125
This commit is contained in:
parent
67e7995cdc
commit
62a775f829
pkgs
14
pkgs/development/libraries/haskell/download/default.nix
Normal file
14
pkgs/development/libraries/haskell/download/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue