summary refs log tree commit diff
path: root/pkgs/applications/misc/d4x/default.nix
blob: cdcada196b98b036391628331366e673423a51d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, gtk, 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 = [ gtk glib pkgconfig openssl boost ];

  meta = {
    description = "Graphical download manager";
    homepage = http://www.krasu.ru/soft/chuchelo/;
    license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
  };
}