Skip to content

Commit

Permalink
supercollider: fix build with emacs support (#352996)
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank authored Nov 2, 2024
2 parents e7168d0 + 37847c5 commit cf3e5d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/interpreters/supercollider/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ mkDerivation rec {

strictDeps = true;

nativeBuildInputs = [ cmake pkg-config qttools ];
nativeBuildInputs = [ cmake pkg-config qttools ]
++ lib.optionals useSCEL [ emacs ];

buildInputs = [ gcc libjack2 libsndfile fftw curl libXt qtbase qtwebengine qtwebsockets readline ]
++ lib.optional (!stdenv.hostPlatform.isDarwin) alsa-lib
++ lib.optional useSCEL emacs;
++ lib.optional (!stdenv.hostPlatform.isDarwin) alsa-lib;

hardeningDisable = [ "stackprotector" ];

Expand Down

0 comments on commit cf3e5d3

Please sign in to comment.