base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / networking / networkd-notify / default.nix
blob6671983e1e7d10063cbc284de1bd9605cbfa3462
1 { lib
2 , fetchFromGitLab
3 , buildPythonApplication
4 , dbus-python
5 , pygobject3
6 , systemd
7 , wirelesstools
8 , wrapGAppsNoGuiHook
9 }:
11 buildPythonApplication rec {
12   pname = "networkd-notify";
13   version = "unstable-2022-11-29";
14   # There is no setup.py, just a single Python script.
15   format = "other";
17   src = fetchFromGitLab {
18     owner = "wavexx";
19     repo = pname;
20     rev = "c2f3e71076a0f51c097064b1eb2505a361c7cc0e";
21     hash = "sha256-fanP1EWERT2Jy4OnMo8OMdR9flginYUgMw+XgmDve3o=";
22   };
24   nativeBuildInputs = [
25     wrapGAppsNoGuiHook
26   ];
28   propagatedBuildInputs = [
29     dbus-python
30     pygobject3
31   ];
33   patchPhase = ''
34     sed -i \
35       -e '/^NETWORKCTL = /c\NETWORKCTL = ["${systemd}/bin/networkctl"]' \
36       -e '/^IWCONFIG = /c\IWCONFIG = ["${wirelesstools}/bin/iwconfig"]' \
37       networkd-notify
38   '';
40   dontBuild = true;
42   installPhase = ''
43     install -D networkd-notify -t "$out/bin/"
44     install -D -m0644 networkd-notify.desktop -t "$out/share/applications/"
45   '';
47   # Let the Python wrapper add gappsWrapperArgs, to avoid two layers of wrapping.
48   dontWrapGApps = true;
50   preFixup = ''
51     makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
52   '';
54   meta = with lib; {
55     description = "Desktop notification integration for systemd-networkd";
56     mainProgram = "networkd-notify";
57     homepage = "https://gitlab.com/wavexx/networkd-notify";
58     maintainers = with maintainers; [ danc86 ];
59     license = licenses.gpl3;
60     platforms = platforms.linux;
61   };