-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
supercollider: added alsaLib as dependency, req. for MIDI on Linux #33262
Conversation
@@ -1,6 +1,8 @@ | |||
{ stdenv, fetchurl, cmake, pkgconfig | |||
, libjack2, libsndfile, fftw, curl, gcc | |||
, libXt, qtbase, qttools, qtwebkit, readline | |||
, withAlsa ? !stdenv.isDarwin, alsaLib # ALSA is required for MIDI to work in SC |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need for withAlsa
: enable it for Linux unconditionally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put in ALSA to be optional since it's indicated as optional in supercollider readme.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nevertheless, there is no use in making it optional in Nixpkgs.
@@ -1,6 +1,8 @@ | |||
{ stdenv, fetchurl, cmake, pkgconfig | |||
, libjack2, libsndfile, fftw, curl, gcc | |||
, libXt, qtbase, qttools, qtwebkit, readline | |||
, withAlsa ? !stdenv.isDarwin, alsaLib # ALSA is required for MIDI to work in SC | |||
, withAvahi ? false, avahi # Avahai is optional dependency |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
qtbase
already depends on avahi
, no need to make it optional here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the cmake build system doesn't find avahi unless specifically added to dependencies
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, please add it as a dependency, but remove withAvahi
option.
@@ -24,10 +26,12 @@ stdenv.mkDerivation rec { | |||
-DSC_EL=${if useSCEL then "ON" else "OFF"} | |||
''; | |||
|
|||
nativeBuildInputs = [ cmake pkgconfig qttools ]; | |||
nativeBuildInputs = [cmake pkgconfig qttools ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restore space after [
.
incorporated the reviewer's comments
@orivej requested changes have been applied, please let me know if further changes are need. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changes has been submitted, please let me know if further action is required.
Motivation for this change
Currently
MIDIClient.init
command in SC fails mysteriously on Linux. SC requires alsa at compile time to enable MIDI. This commit fixes that issue.Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)