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
36
pkgs/tools/networking/connman/connman-notify/default.nix
Normal file
36
pkgs/tools/networking/connman/connman-notify/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ lib, fetchFromGitLab, python3Packages, glib, gobject-introspection, wrapGAppsHook }:
|
||||
|
||||
python3Packages.buildPythonApplication {
|
||||
pname = "connman-notify";
|
||||
version = "2019-10-05";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "wavexx";
|
||||
repo = "connman-notify";
|
||||
rev = "24b10a51721b54d932f4cd61ef2756423768c015";
|
||||
sha256 = "1k5b5y6114yna2cm0cq82xilicran63hrhlklgv7k3p89057xh8j";
|
||||
};
|
||||
|
||||
format = "other";
|
||||
|
||||
nativeBuildInputs = [ gobject-introspection wrapGAppsHook ];
|
||||
|
||||
buildInputs = [ glib ];
|
||||
|
||||
pythonPath = with python3Packages; [ dbus-python pygobject3 ];
|
||||
|
||||
strictDeps = false;
|
||||
|
||||
installPhase = ''
|
||||
install -D -t $out/bin connman-notify
|
||||
install -D -t $out/share/doc README.rst
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Desktop notification integration for connman";
|
||||
homepage = "https://gitlab.com/wavexx/connman-notify";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.romildo ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue