Skip to content

Commit

Permalink
supercollider: fix build with emacs support
Browse files Browse the repository at this point in the history
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
  • Loading branch information
Scrumplex committed Nov 1, 2024
1 parent ede6eeb commit 37847c5
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 37847c5

Please sign in to comment.