mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
96 lines
2.4 KiB
Nix
96 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
fetchpatch,
|
|
python3Packages,
|
|
asciidoc,
|
|
wrapGAppsNoGuiHook,
|
|
iw,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "networkd-dispatcher";
|
|
version = "2.2.4";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.com";
|
|
owner = "craftyguy";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-yO9/HlUkaQmW/n9N3vboHw//YMzBjxIHA2zAxgZNEv0=";
|
|
};
|
|
|
|
patches = [
|
|
# Support rule files in NixOS store paths. Required for the networkd-dispatcher
|
|
# module to work
|
|
./support_nix_store_path.patch
|
|
|
|
# Fixes: networkd-dispatcher.service: Got notification message from PID XXXX, but reception only permitted for main PID XXXX
|
|
(fetchpatch {
|
|
url = "https://gitlab.com/craftyguy/networkd-dispatcher/-/commit/4796368d88da516fafda321d8565ae8ccf465120.patch";
|
|
hash = "sha256-RAoCSmZCjTXxVKesatWjiePY4xECGn5pwvOOV0clL+Q=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# Fix paths in systemd unit file
|
|
substituteInPlace networkd-dispatcher.service \
|
|
--replace "/usr/bin/networkd-dispatcher" "$out/bin/networkd-dispatcher"
|
|
# Remove conditions on existing rules path
|
|
sed -i '/ConditionPathExistsGlob/g' networkd-dispatcher.service
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
wrapGAppsNoGuiHook
|
|
python3Packages.wrapPython
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
checkInputs = with python3Packages; [
|
|
dbus-python
|
|
iw
|
|
mock
|
|
pygobject3
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonPath = with python3Packages; [
|
|
configparser
|
|
dbus-python
|
|
pygobject3
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -m755 -t $out/bin networkd-dispatcher
|
|
install -Dm644 networkd-dispatcher.service $out/lib/systemd/system/networkd-dispatcher.service
|
|
install -Dm644 networkd-dispatcher.conf $out/etc/conf.d/networkd-dispatcher.conf
|
|
install -D networkd-dispatcher.8 -t $out/share/man/man8/
|
|
runHook postInstall
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=( \
|
|
"''${gappsWrapperArgs[@]}" \
|
|
--prefix PATH : "${lib.makeBinPath [ iw ]}" \
|
|
)
|
|
'';
|
|
postFixup = ''
|
|
wrapPythonPrograms
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Dispatcher service for systemd-networkd connection status changes";
|
|
mainProgram = "networkd-dispatcher";
|
|
homepage = "https://gitlab.com/craftyguy/networkd-dispatcher";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|