Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
python3Packages,
|
|
glib,
|
|
gobject-introspection,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "connman-notify";
|
|
version = "2019-10-05";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "wavexx";
|
|
repo = "connman-notify";
|
|
rev = "24b10a51721b54d932f4cd61ef2756423768c015";
|
|
hash = "sha256-EsF+Ckjojnn2o5PCDIexKrNIYxcIM1CZUNaTEIwvq8w=";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
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";
|
|
mainProgram = "connman-notify";
|
|
homepage = "https://gitlab.com/wavexx/connman-notify";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|