Merge pull request #168281 from misuzu/moc-darwin

moc: build on darwin
This commit is contained in:
Pascal Wittmann 2022-04-19 09:19:31 +02:00 committed by GitHub
commit 9e6887b3e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View file

@ -1,7 +1,8 @@
{ lib, stdenv, fetchurl, pkg-config
, ncurses, db , popt, libtool
, libiconv, CoreServices
# Sound sub-systems
, alsaSupport ? true, alsa-lib
, alsaSupport ? (!stdenv.isDarwin), alsa-lib
, pulseSupport ? true, libpulseaudio, autoreconfHook
, jackSupport ? true, libjack2
, ossSupport ? true
@ -64,7 +65,8 @@ in stdenv.mkDerivation rec {
++ opt wavpackSupport wavpack
# Misc
++ opt curlSupport curl
++ opt samplerateSupport libsamplerate;
++ opt samplerateSupport libsamplerate
++ lib.optionals stdenv.isDarwin [ libiconv CoreServices ];
configureFlags = [
# Sound sub-systems
@ -97,6 +99,6 @@ in stdenv.mkDerivation rec {
homepage = "http://moc.daper.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ aethelz pSub jagajaga ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}

View file

@ -27862,7 +27862,9 @@ with pkgs;
mnamer = callPackage ../applications/misc/mnamer { };
moc = callPackage ../applications/audio/moc { };
moc = callPackage ../applications/audio/moc {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
mod-arpeggiator-lv2 = callPackage ../applications/audio/mod-arpeggiator-lv2 { };