2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, curl, feed, tagsoup, xml }:
|
2011-10-30 08:39:13 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "download-curl";
|
2012-03-06 14:27:29 -08:00
|
|
|
version = "0.1.4";
|
|
|
|
sha256 = "1wf3pf2k4i6jvpfsjlxdj6v53qd33jj1z1ipaf3p47glgx4xw3lm";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ curl feed tagsoup xml ];
|
2014-05-04 03:53:45 -07:00
|
|
|
jailbreak = true;
|
2011-10-30 08:39:13 -07:00
|
|
|
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;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-10-30 08:39:13 -07:00
|
|
|
};
|
|
|
|
})
|