2010-07-28 17:35:01 +02:00
|
|
|
{ stdenv, fetchurl, gtk, glib, pkgconfig, openssl, boost }:
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
stdenv.mkDerivation {
|
2007-09-11 21:27:25 +02:00
|
|
|
name = "d4x-2.5.7.1";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
inherit boost;
|
2007-09-11 21:27:25 +02:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-09-11 21:27:25 +02:00
|
|
|
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";
|
2010-07-28 17:35:01 +02:00
|
|
|
|
|
|
|
buildInputs = [ gtk glib pkgconfig openssl boost ];
|
2007-09-11 21:27:25 +02:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 17:35:01 +02:00
|
|
|
description = "Graphical download manager";
|
|
|
|
homepage = http://www.krasu.ru/soft/chuchelo/;
|
|
|
|
license = "Artistic";
|
2007-09-11 21:27:25 +02:00
|
|
|
};
|
|
|
|
}
|