summary refs log tree commit diff
path: root/pkgs/applications/misc/d4x/default.nix
blob: 5a20893e9f3cb2bc10294a2b8a89b5c6f9d0e812 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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";
  };
}