linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / uget-integrator / default.nix
blob2d069ea07f02c69c4c7f83e5af7d25cf4b9e2d8e
1 { lib, stdenv, fetchFromGitHub, uget, python3Packages }:
3 stdenv.mkDerivation rec {
4   pname = "uget-integrator";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "ugetdm";
9     repo = "uget-integrator";
10     rev = "v${version}";
11     sha256 = "0bfqwbpprxp5sy49p2hqcjdfj7zamnp2hhcnnyccffkn7pghx8pp";
12   };
14   nativeBuildInputs = [ python3Packages.wrapPython ];
16   buildInputs = [ uget python3Packages.python ];
18   installPhase = ''
19     for f in conf/com.ugetdm.{chrome,firefox}.json; do
20       substituteInPlace $f --replace "/usr" "$out"
21     done
23     install -D -t $out/bin                                   bin/uget-integrator
24     install -D -t $out/etc/opt/chrome/native-messaging-hosts conf/com.ugetdm.chrome.json
25     install -D -t $out/etc/chromium/native-messaging-hosts   conf/com.ugetdm.chrome.json
26     install -D -t $out/etc/opera/native-messaging-hosts      conf/com.ugetdm.chrome.json
27     install -D -t $out/lib/mozilla/native-messaging-hosts    conf/com.ugetdm.firefox.json
29     wrapPythonPrograms
30   '';
32   meta = with lib; {
33     description = "Native messaging host to integrate uGet Download Manager with web browsers";
34     homepage = "https://github.com/ugetdm/uget-integrator";
35     license = licenses.gpl3;
36     platforms = platforms.linux;
37     maintainers = [ maintainers.romildo ];
38   };