Add missing wireguard-tools dependency

This commit is contained in:
yuri 2023-09-17 21:04:22 +02:00
parent 03719f5bf8
commit d1f2b13232
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
];