2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, curl, feed, tagsoup, xml }:
|
2011-10-30 16:39:13 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "download-curl";
|
2012-03-06 23:27:29 +01:00
|
|
|
version = "0.1.4";
|
|
|
|
sha256 = "1wf3pf2k4i6jvpfsjlxdj6v53qd33jj1z1ipaf3p47glgx4xw3lm";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ curl feed tagsoup xml ];
|
2011-10-30 16:39:13 +01: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;
|
2011-10-31 19:49:49 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-10-30 16:39:13 +01:00
|
|
|
};
|
|
|
|
})
|