Skip to content

Instantly share code, notes, and snippets.

@willbasky
Forked from gosub/sc3-plugins.nix
Created August 30, 2019 14:32
Show Gist options
  • Save willbasky/f326e4d0eb9ad83b7197424bd914284a to your computer and use it in GitHub Desktop.
Save willbasky/f326e4d0eb9ad83b7197424bd914284a 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