Skip to content

Commit

Permalink
tk: fix x64 darwin build
Browse files Browse the repository at this point in the history
update replace -framework -> -weak_framwork to remove reverence to
UniformTypeIdentifiers
  • Loading branch information
paparodeo committed Nov 21, 2024
1 parent 7ebb7f2 commit bde624d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/tk/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tcl.mkTclDerivation {
''
+ lib.optionalString (stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11") ''
substituteInPlace unix/configure* \
--replace " -framework UniformTypeIdentifiers" ""
--replace-fail " -weak_framework UniformTypeIdentifiers" ""
'';

postInstall = ''
Expand Down

0 comments on commit bde624d

Please sign in to comment.