nixpkgs/pkgs/development/libraries/haskell/download-curl/default.nix
Peter Simons c20062ea51 haskell-download-curl: updated to version 0.1.4
svn path=/nixpkgs/trunk/; revision=32841
2012-03-06 22:27:29 +00:00

19 lines
566 B
Nix

{ cabal, curl, feed, tagsoup, xml }:
cabal.mkDerivation (self: {
pname = "download-curl";
version = "0.1.4";
sha256 = "1wf3pf2k4i6jvpfsjlxdj6v53qd33jj1z1ipaf3p47glgx4xw3lm";
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;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})