Add missing wireguard-tools dependency

This commit is contained in:
fi 2024-11-20 05:46:40 +01:00
parent 0f3e7771a5
commit fec97bb146
7 changed files with 107 additions and 113 deletions

View file

@ -4,12 +4,13 @@ let
nftables = (prev.nftables.override { withPython = true; });
};
pkgs-overlay = pkgs.extend nftablesWithPythonOverlay;
in
in
pkgs-overlay.python310Packages.buildPythonApplication {
pname = "wireguard-nat-nftables";
version = "0.0.1";
propagatedBuildInputs = with pkgs-overlay; [
wireguard-tools
python310Packages.nftables
];