summary refs log tree commit diff
path: root/pkgs/tools/networking/uget/default.nix
blob: 8a60858526ee97e1d57ccefd708ccb3e8772d079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, fetchurl, pkgconfig, intltool, openssl, curl, libnotify, gstreamer,
  gst_plugins_base, gst-plugins-good, gnome3, makeWrapper, aria2 ? null }:

stdenv.mkDerivation rec {
  name = "uget-${version}";
  version = "2.0.8";

  src = fetchurl {
    url = "mirror://sourceforge/urlget/${name}.tar.gz";
    sha256 = "0919cf7lfk1djdl003cahqjvafdliv7v2l8r5wg95n4isqggdk75";
  };

  nativeBuildInputs = [ pkgconfig intltool makeWrapper ];
  
  buildInputs = [
    openssl curl libnotify gstreamer gst_plugins_base gst-plugins-good
    gnome3.gtk gnome3.dconf
  ]
  ++ (stdenv.lib.optional (aria2 != null) aria2);

  enableParallelBuilding = true;
  
  preFixup = ''
    wrapProgram $out/bin/uget-gtk \
      ${stdenv.lib.optionalString (aria2 != null) ''--suffix PATH : "${aria2}/bin"''} \
      --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \
      --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \
      --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules"
  '';

  meta = with stdenv.lib; {
    description = "Download manager using gtk+ and libcurl";
    longDescription = ''
      uGet is a VERY Powerful download manager application with a large
      inventory of features but is still very light-weight and low on
      resources, so don't let the impressive list of features scare you into
      thinking that it "might be too powerful" because remember power is good
      and lightweight power is uGet!
    '';
    license = licenses.lgpl21;
    homepage = http://www.ugetdm.com;
    maintainers = with maintainers; [ romildo ];
    platforms = platforms.unix;
  };
}