1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/uget-integrator/default.nix

40 lines
1.3 KiB
Nix
Raw Normal View History

2018-04-30 03:41:36 +01:00
{ stdenv, fetchFromGitHub, uget, python3Packages }:
stdenv.mkDerivation rec {
pname = "uget-integrator";
2018-04-30 03:41:36 +01:00
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";
2018-04-30 03:41:36 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}