42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, cmake, pkg-config, alsaLib
|
|
, libjack2, libsndfile, fftw, curl, gcc
|
|
, libXt, qtbase, qttools, qtwebengine
|
|
, readline, qtwebsockets, useSCEL ? false, emacs
|
|
}:
|
|
|
|
let optional = lib.optional;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "supercollider";
|
|
version = "3.11.2";
|
|
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source.tar.bz2";
|
|
sha256 = "wiwyxrxIJnHU+49RZy33Etl6amJ3I1xNojEpEDA6BQY=";
|
|
};
|
|
|
|
hardeningDisable = [ "stackprotector" ];
|
|
|
|
cmakeFlags = [
|
|
"-DSC_WII=OFF"
|
|
"-DSC_EL=${if useSCEL then "ON" else "OFF"}"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools ];
|
|
|
|
buildInputs = [
|
|
gcc libjack2 libsndfile fftw curl libXt qtbase qtwebengine qtwebsockets readline ]
|
|
++ optional (!stdenv.isDarwin) alsaLib
|
|
++ optional useSCEL emacs;
|
|
|
|
meta = with lib; {
|
|
description = "Programming language for real time audio synthesis";
|
|
homepage = "https://supercollider.github.io";
|
|
maintainers = with maintainers; [ mrmebelman ];
|
|
license = licenses.gpl3;
|
|
platforms = [ "x686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|