-
-
Save candeira/552c1a4e6a9381d5a67b1cc20e974519 to your computer and use it in GitHub Desktop.
Nix package definition for sc3-plugins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; | |
stdenv.mkDerivation { | |
name = "sc3-plugins-3.7.0-beta"; | |
src = fetchgit { | |
url = "https://github.com/supercollider/sc3-plugins"; | |
rev = "a963ecb"; | |
sha256="0840jwh7ljmhg34zblahqx3abk42a3y3gvgb740r558rphbp1p19"; | |
fetchSubmodules = true; | |
}; | |
buildInputs = [ cmake supercollider fftw libsndfile ]; | |
cmakeFlags = [ "-DSUPERNOVA=OFF" "-DSC_PATH=${supercollider}/include/SuperCollider" "-DFFTW3F_LIBRARY=${fftw}/lib/"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment