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 }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "flip-link"; ··· 12 }; 13 14 cargoSha256 = "13rgpbwaz2b928rg15lbaszzjymph54pwingxpszp5paihx4iayr"; 15 16 meta = with lib; { 17 description = "Adds zero-cost stack overflow protection to your embedded programs";
··· 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "flip-link"; ··· 12 }; 13 14 cargoSha256 = "13rgpbwaz2b928rg15lbaszzjymph54pwingxpszp5paihx4iayr"; 15 + 16 + buildInputs = lib.optional stdenv.isDarwin libiconv; 17 18 meta = with lib; { 19 description = "Adds zero-cost stack overflow protection to your embedded programs";