Merge pull request #123098 from stephank/fix-flip-link-darwin

flip-link: fix darwin build

authored by Mario Rodas and committed by GitHub b065b36e 94a0ad2f

+3 -1
+3 -1
pkgs/development/tools/flip-link/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub }: 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "flip-link"; ··· 12 12 }; 13 13 14 14 cargoSha256 = "13rgpbwaz2b928rg15lbaszzjymph54pwingxpszp5paihx4iayr"; 15 + 16 + buildInputs = lib.optional stdenv.isDarwin libiconv; 15 17 16 18 meta = with lib; { 17 19 description = "Adds zero-cost stack overflow protection to your embedded programs";