This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix | |
| index bfb15f2f783..fff57dd7c48 100644 | |
| --- a/pkgs/build-support/cc-wrapper/default.nix | |
| +++ b/pkgs/build-support/cc-wrapper/default.nix | |
| @@ -453,7 +453,7 @@ stdenv.mkDerivation { | |
| substituteAll ${./add-flags.sh} $out/nix-support/add-flags.sh | |
| substituteAll ${./add-hardening.sh} $out/nix-support/add-hardening.sh | |
| - substituteAll ${../wrapper-common/utils.bash} $out/nix-support/utils.bash | |
| + substituteAll ${if stdenv.isDarwin then ../wrapper-common/utils.bash.darwin else ../wrapper-common/utils.bash} $out/nix-support/utils.bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { stdenv | |
| , fetchFromGitHub | |
| , gobject-introspection | |
| , wrapGAppsHook | |
| , gtk3 | |
| , webkitgtk | |
| , python3 | |
| }: |
OlderNewer