Merge pull request #146498 from smancill/ZHF-mhost

authored by Sandro and committed by GitHub 7d2c9796 c125359b

+6 -2
+3 -1
pkgs/applications/networking/mhost/default.nix
··· 1 - { fetchFromGitHub, rustPlatform, lib }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mhost"; ··· 12 12 }; 13 13 14 14 cargoSha256 = "0gqrya0bpdd67k2sxib7f4npnrx84d9r4hjq2sg2xz4j8pmgs018"; 15 + 16 + buildInputs = lib.optional stdenv.isDarwin Security; 15 17 16 18 CARGO_CRATE_NAME = "mhost"; 17 19
+3 -1
pkgs/top-level/all-packages.nix
··· 7674 7674 7675 7675 metasploit = callPackage ../tools/security/metasploit { }; 7676 7676 7677 - mhost = callPackage ../applications/networking/mhost { }; 7677 + mhost = callPackage ../applications/networking/mhost { 7678 + inherit (darwin.apple_sdk.frameworks) Security; 7679 + }; 7678 7680 7679 7681 ms-sys = callPackage ../tools/misc/ms-sys { }; 7680 7682