Skip to content

Instantly share code, notes, and snippets.

@candeira
Forked from gosub/sc3-plugins.nix
Created October 9, 2019 04:17
Show Gist options
  • Save candeira/552c1a4e6a9381d5a67b1cc20e974519 to your computer and use it in GitHub Desktop.
Save candeira/552c1a4e6a9381d5a67b1cc20e974519 to your computer and use it in GitHub Desktop.
Nix package definition for sc3-plugins
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