summary refs log tree commit diff
path: root/pkgs/tools/networking/uget-integrator/default.nix
blob: 68f457c2a63823c8c29184d55b029dd69551b437 (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
{ stdenv, fetchFromGitHub, uget, python3Packages }:

stdenv.mkDerivation rec {
  pname = "uget-integrator";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "ugetdm";
    repo = "uget-integrator";
    rev = "v${version}";
    sha256 = "0bfqwbpprxp5sy49p2hqcjdfj7zamnp2hhcnnyccffkn7pghx8pp";
  };

  nativeBuildInputs = [ python3Packages.wrapPython ];

  buildInputs = [ uget python3Packages.python ];

  installPhase = ''
    for f in conf/com.ugetdm.{chrome,firefox}.json; do
      substituteInPlace $f --replace "/usr" "$out"
    done

	  install -D -t $out/bin                                   bin/uget-integrator
	  install -D -t $out/etc/opt/chrome/native-messaging-hosts conf/com.ugetdm.chrome.json
	  install -D -t $out/etc/chromium/native-messaging-hosts   conf/com.ugetdm.chrome.json
	  install -D -t $out/etc/opera/native-messaging-hosts      conf/com.ugetdm.chrome.json
	  install -D -t $out/lib/mozilla/native-messaging-hosts    conf/com.ugetdm.firefox.json

    wrapPythonPrograms
  '';

  meta = with stdenv.lib; {
    description = "Native messaging host to integrate uGet Download Manager with web browsers";
    homepage = https://github.com/ugetdm/uget-integrator;
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = [ maintainers.romildo ];
  };
}