moc: build on darwin

This commit is contained in:
misuzu 2022-04-11 17:59:18 +03:00
parent fd364d2688
commit 69b65787e8
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

@ -27598,7 +27598,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 { };