d4x (gui downloader for X) added

svn path=/nixpkgs/trunk/; revision=9304
This commit is contained in:
Marc Weber 2007-09-11 19:27:25 +00:00
parent 76a8d120a4
commit 8907d0ba89
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,22 @@
args:
args.stdenv.mkDerivation {
name = "d4x-2.5.7.1";
inherit (args) boost;
src = args.fetchurl {
url = http://d4x.krasu.ru/files/d4x-2.5.7.1.tar.bz2;
sha256 = "1i1jj02bxynisqapv31481sz9jpfp3f023ky47spz1v1wlwbs13m";
};
configurePhase = "./configure --prefix=\$out "
+ " --with-boost-libdir=\$boost/lib"
+ " --with-boost-includedir=\$boost/include";
buildInputs =(with args; [gtk glib pkgconfig openssl boost]);
meta = {
description = "graphical download manager";
homepage = http://www.krasu.ru/soft/chuchelo/;
license = "Artistic";
};
}

View file

@ -3133,6 +3133,11 @@ rec {
cvs2svn = import ../applications/version-management/cvs2svn {
inherit fetchurl stdenv python bsddb3 makeWrapper;
};
d4x = import ../applications/misc/d4x {
inherit fetchurl stdenv pkgconfig openssl boost;
inherit (gtkLibs) gtk glib;
};
darcs = import ../applications/version-management/darcs {
inherit fetchurl stdenv ghc zlib ncurses curl;