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.
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib
|
|
stdenv # do I need this? assuming for nix-shell
|
|
fetchurl,
|
|
runtimeSHell, # do I need this? assuming for nix-shell
|
|
|
|
cmake,
|
|
clang,
|
|
libcxx,
|
|
python312Packages.jinja2,
|
|
python312Packages.docutils,
|
|
python312Packages.pyaml,
|
|
python312Packages.schema,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "Flucoma-sc";
|
|
version = "1.0.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/flucoma/flucoma-sc/archive/refs/tags/${version}.tar.gz";
|
|
sha256 = "sha256-1phf1p40m20qlq0vivfinl2985ha8a1qhp3ixwfd5r8gjw7pbxs3";
|
|
};
|
|
|
|
# patches = [];
|
|
# postPatch = '';
|
|
# strictDeps = true;
|
|
# nativeBuildInputs
|
|
|
|
buildInputs = [
|
|
cmake,
|
|
clang,
|
|
libcxx,
|
|
python312Packages.jinja2,
|
|
python312Packages.docutils,
|
|
python312Packages.pyaml,
|
|
python312Packages.schema,
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DSC_PATH=${scSource}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description ="Fluid Corpus Manipulation plugins for Supercollider";
|
|
homepage = "https://www.flucoma.org";
|
|
changelog = "";
|
|
maintainers = ["Leonard Francis Coogan"];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|