rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / uget / default.nix
bloba2387f838ff52d3c6fbf1c61a640667b01810ba3
1 { lib, stdenv, fetchurl, pkg-config, intltool, openssl, curl, libnotify,
2   libappindicator-gtk3, gst_all_1, gtk3, dconf, wrapGAppsHook3, aria2 ? null
3 }:
5 stdenv.mkDerivation rec {
6   pname = "uget";
7   version = "2.2.3-1";
9   src = fetchurl {
10     url = "mirror://sourceforge/urlget/${pname}-${version}.tar.gz";
11     sha256 = "0jchvgkkphhwp2z7vd4axxr9ns8b6vqc22b2z8a906qm8916wd8i";
12   };
14   # Apply upstream fix for -fno-common toolchains.
15   postPatch = ''
16     # TODO: remove the replace once upstream fix is released:
17     #   https://sourceforge.net/p/urlget/uget2/ci/14890943c52e0a5cd2a87d8a1c51cbffebee7cf9/
18     substituteInPlace ui-gtk/UgtkBanner.h --replace "} banner;" "};"
19   '';
21   nativeBuildInputs = [
22     pkg-config
23     intltool
24     wrapGAppsHook3
25   ];
27   buildInputs = [
28     openssl
29     curl
30     libnotify
31     libappindicator-gtk3
32     gtk3
33     (lib.getLib dconf)
34   ]
35   ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good ])
36   ++ (lib.optional (aria2 != null) aria2);
38   enableParallelBuilding = true;
40   preFixup = lib.optionalString (aria2 != null)
41                ''gappsWrapperArgs+=(--suffix PATH : "${aria2}/bin")'';
43   meta = with lib; {
44     description = "Download manager using GTK and libcurl";
45     longDescription = ''
46       uGet is a VERY Powerful download manager application with a large
47       inventory of features but is still very light-weight and low on
48       resources, so don't let the impressive list of features scare you into
49       thinking that it "might be too powerful" because remember power is good
50       and lightweight power is uGet!
51     '';
52     homepage = "http://www.ugetdm.com";
53     license = licenses.lgpl21;
54     platforms = platforms.unix;
55     maintainers = with maintainers; [ romildo ];
56     mainProgram = "uget-gtk";
57   };