uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
39
pkgs/tools/networking/uget-integrator/default.nix
Normal file
39
pkgs/tools/networking/uget-integrator/default.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ lib, 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 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue