Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pkgs/by-name/mp/mpd/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,13 @@ stdenv.mkDerivation (finalAttrs: {
substituteInPlace src/output/plugins/OSXOutputPlugin.cxx \
--replace kAudioObjectPropertyElement{Main,Master} \
--replace kAudioHardwareServiceDeviceProperty_Virtual{Main,Master}Volume
'';
''
+
lib.optionalString
(stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinSdkVersion "13.3")
''
sed -i "/subdir('time')/d" test/meson.build
'';

# Otherwise, the meson log says:
#
Expand Down
Loading