lol

Merge pull request #214835 from viraptor/mitmproxy-darwin

python310Packages.mitmproxy-wireguard: fix darwin build

authored by

Fabian Affolter and committed by
GitHub
63177139 11e9c497

+7
+7
pkgs/development/python-modules/mitmproxy-wireguard/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pytestCheckHook 5 , pythonOlder 6 , rustPlatform ··· 20 rev = "refs/tags/${version}"; 21 hash = "sha256-Oq3jF4XeT58rad0MWmqucZZHVAshhA8PViQ+2Q9Shgc="; 22 }; 23 24 nativeBuildInputs = [ 25 setuptools-rust
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , stdenv 5 + , darwin 6 , pytestCheckHook 7 , pythonOlder 8 , rustPlatform ··· 22 rev = "refs/tags/${version}"; 23 hash = "sha256-Oq3jF4XeT58rad0MWmqucZZHVAshhA8PViQ+2Q9Shgc="; 24 }; 25 + 26 + buildInputs = lib.optionals stdenv.isDarwin [ 27 + darwin.libiconv 28 + darwin.apple_sdk.frameworks.Security 29 + ]; 30 31 nativeBuildInputs = [ 32 setuptools-rust