mkvtoolnix: fix build on darwin

This fixes the build on darwin by specifying the SDK.
This commit is contained in:
Alex James
2023-03-19 19:25:05 -05:00
parent 31254120db
commit cdc33cdb0e
+3 -1
View File
@@ -22527,7 +22527,9 @@ with pkgs;
minizip-ng = callPackage ../development/libraries/minizip-ng { };
mkvtoolnix = libsForQt5.callPackage ../applications/video/mkvtoolnix { };
mkvtoolnix = libsForQt5.callPackage ../applications/video/mkvtoolnix {
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
};
mkvtoolnix-cli = mkvtoolnix.override {
withGUI = false;