You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
444 B
Nix
26 lines
444 B
Nix
{pkgs ? import <nixpkgs> {} }:
|
|
|
|
/*
|
|
let
|
|
scSource = pkgs.supercollider.src;
|
|
in
|
|
*/
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.cmake
|
|
pkgs.clang
|
|
pkgs.libcxx
|
|
pkgs.fftw
|
|
pkgs.python312Packages.jinja2
|
|
pkgs.python312Packages.docutils
|
|
pkgs.python312Packages.pyaml
|
|
pkgs.python312Packages.schema
|
|
];
|
|
|
|
shellHook = ''
|
|
export SC_PATH="${scSource}"
|
|
export INSTALL_PREFIX="~/.local/share/SuperCollider/Extensions"
|
|
'';
|
|
}
|