21 lines
586 B
Nix
21 lines
586 B
Nix
{ stdenv, fetchurl, gtk2, glib, pkgconfig, openssl, boost }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "d4x-2.5.7.1";
|
|
|
|
inherit boost;
|
|
|
|
src = fetchurl {
|
|
url = http://pkgs.fedoraproject.org/repo/pkgs/d4x/d4x-2.5.7.1.tar.bz2/68d6336c3749a7caabb0f5a5f84f4102/d4x-2.5.7.1.tar.bz2;
|
|
sha256 = "1i1jj02bxynisqapv31481sz9jpfp3f023ky47spz1v1wlwbs13m";
|
|
};
|
|
|
|
buildInputs = [ gtk2 glib pkgconfig openssl boost ];
|
|
|
|
meta = {
|
|
description = "Graphical download manager";
|
|
homepage = http://www.krasu.ru/soft/chuchelo/;
|
|
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
|
};
|
|
}
|