bcdc90a3a7
According to https://endoflife.software/programming-languages/server-side-scripting/ruby ruby 2.4 will go end-of-life in march, where the new release of nixpkgs will be cut. We won't be able to support it for security updates. Remove all references to ruby_2_4 and add ruby_2_7 instead where missing. Mark packages that depend on ruby 2.4 as broken: * chefdk * sonic-pi
112 lines
2.3 KiB
Nix
112 lines
2.3 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
, qtbase
|
|
, fetchFromGitHub
|
|
, fftwSinglePrec
|
|
, ruby
|
|
, libffi
|
|
, aubio
|
|
, cmake
|
|
, pkgconfig
|
|
, boost
|
|
, bash
|
|
, jack2Full
|
|
, supercollider
|
|
, qscintilla
|
|
, qwt
|
|
, osmid
|
|
}:
|
|
|
|
let
|
|
|
|
supercollider_single_prec = supercollider.override { fftw = fftwSinglePrec; };
|
|
|
|
in
|
|
|
|
mkDerivation rec {
|
|
version = "3.1.0";
|
|
pname = "sonic-pi";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samaaron";
|
|
repo = "sonic-pi";
|
|
rev = "v${version}";
|
|
sha256 = "0gi4a73szaa8iz5q1gxgpsnyvhhghcfqm6bfwwxbix4m5csbfgh9";
|
|
};
|
|
|
|
buildInputs = [
|
|
bash
|
|
cmake
|
|
pkgconfig
|
|
qtbase
|
|
qscintilla
|
|
qwt
|
|
ruby
|
|
libffi
|
|
aubio
|
|
supercollider_single_prec
|
|
boost
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
preConfigure = ''
|
|
patchShebangs .
|
|
substituteInPlace app/gui/qt/mainwindow.cpp \
|
|
--subst-var-by ruby "${ruby}/bin/ruby" \
|
|
--subst-var out
|
|
'';
|
|
|
|
buildPhase = ''
|
|
export SONIC_PI_HOME=$TMPDIR
|
|
export AUBIO_LIB=${aubio}/lib/libaubio.so
|
|
export OSMID_DIR=app/server/native/osmid
|
|
|
|
mkdir -p $OSMID_DIR
|
|
cp ${osmid}/bin/{m2o,o2m} $OSMID_DIR
|
|
|
|
pushd app/server/ruby/bin
|
|
./compile-extensions.rb
|
|
./i18n-tool.rb -t
|
|
popd
|
|
|
|
pushd app/gui/qt
|
|
cp -f ruby_help.tmpl ruby_help.h
|
|
../../server/ruby/bin/qt-doc.rb -o ruby_help.h
|
|
|
|
substituteInPlace SonicPi.pro \
|
|
--replace "LIBS += -lrt -lqt5scintilla2" \
|
|
"LIBS += -lrt -lqscintilla2 -lqwt"
|
|
|
|
lrelease SonicPi.pro
|
|
qmake SonicPi.pro
|
|
|
|
make
|
|
popd
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r . $out
|
|
runHook postInstall
|
|
'';
|
|
|
|
# $out/bin/sonic-pi is a shell script, and wrapQtAppsHook doesn't wrap them.
|
|
dontWrapQtApps = true;
|
|
preFixup = ''
|
|
wrapQtApp "$out/bin/sonic-pi" \
|
|
--prefix PATH : ${ruby}/bin:${bash}/bin:${supercollider}/bin:${jack2Full}/bin \
|
|
--set AUBIO_LIB "${aubio}/lib/libaubio.so"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://sonic-pi.net/";
|
|
description = "Free live coding synth for everyone originally designed to support computing and music lessons within schools";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ Phlogistique kamilchm ];
|
|
platforms = lib.platforms.linux;
|
|
# sonic-pi depends on ruby 2.4 which we don't support anymore
|
|
broken = true;
|
|
};
|
|
}
|