nixpkgs/pkgs/applications/audio/sonic-pi/default.nix

100 lines
2 KiB
Nix
Raw Normal View History

2015-11-15 20:16:00 +00:00
{ stdenv
, fetchFromGitHub
2017-10-05 14:44:59 +00:00
, fftwSinglePrec
2015-11-15 20:16:00 +00:00
, ruby
2017-10-05 14:44:59 +00:00
, libffi
, aubio
2015-11-15 20:16:00 +00:00
, cmake
, pkgconfig
2017-10-05 14:44:59 +00:00
, qt5
, libsForQt5
, boost
2015-11-15 20:16:00 +00:00
, bash
, makeWrapper
2017-10-05 14:44:59 +00:00
, jack2Full
2015-11-15 20:16:00 +00:00
}:
2017-10-05 14:44:59 +00:00
let
supercollider = libsForQt5.callPackage ../../../development/interpreters/supercollider {
fftw = fftwSinglePrec;
};
in stdenv.mkDerivation rec {
2018-10-13 11:46:30 +00:00
version = "3.1.0";
2015-11-15 20:16:00 +00:00
name = "sonic-pi-${version}";
src = fetchFromGitHub {
owner = "samaaron";
repo = "sonic-pi";
rev = "v${version}";
2018-10-13 11:46:30 +00:00
sha256 = "0gi4a73szaa8iz5q1gxgpsnyvhhghcfqm6bfwwxbix4m5csbfgh9";
2015-11-15 20:16:00 +00:00
};
buildInputs = [
bash
cmake
2015-11-15 20:16:00 +00:00
makeWrapper
pkgconfig
2017-10-05 14:44:59 +00:00
qt5.qtbase
libsForQt5.qscintilla
libsForQt5.qwt
ruby
2017-10-05 14:44:59 +00:00
libffi
aubio
supercollider
2017-10-05 14:44:59 +00:00
boost
2015-11-15 20:16:00 +00:00
];
dontUseCmakeConfigure = true;
preConfigure = ''
patchShebangs .
substituteInPlace app/gui/qt/mainwindow.cpp \
--subst-var-by ruby "${ruby}/bin/ruby" \
--subst-var out
'';
2015-11-15 20:16:00 +00:00
buildPhase = ''
2017-10-05 14:44:59 +00:00
export SONIC_PI_HOME=$TMPDIR
export AUBIO_LIB=${aubio}/lib/libaubio.so
2018-10-13 11:46:30 +00:00
pushd app/server/ruby/bin
./compile-extensions.rb
2017-10-05 14:44:59 +00:00
./i18n-tool.rb -t
2015-11-15 20:16:00 +00:00
popd
pushd app/gui/qt
2017-10-05 14:44:59 +00:00
cp -f ruby_help.tmpl ruby_help.h
2018-10-13 11:46:30 +00:00
../../server/ruby/bin/qt-doc.rb -o ruby_help.h
2017-10-05 14:44:59 +00:00
substituteInPlace SonicPi.pro \
--replace "LIBS += -lrt -lqt5scintilla2" \
"LIBS += -lrt -lqscintilla2 -lqwt"
lrelease SonicPi.pro
2018-10-13 11:46:30 +00:00
qmake SonicPi.pro
2017-10-05 14:44:59 +00:00
make
2015-11-15 20:16:00 +00:00
popd
'';
installPhase = ''
2017-10-05 14:44:59 +00:00
runHook preInstall
2015-11-15 20:16:00 +00:00
cp -r . $out
2017-10-05 14:44:59 +00:00
wrapProgram $out/bin/sonic-pi \
--prefix PATH : ${ruby}/bin:${bash}/bin:${supercollider}/bin:${jack2Full}/bin \
--set AUBIO_LIB "${aubio}/lib/libaubio.so"
runHook postInstall
2015-11-15 20:16:00 +00:00
'';
2017-10-05 14:44:59 +00:00
meta = {
homepage = http://sonic-pi.net/;
description = "Free live coding synth for everyone originally designed to support computing and music lessons within schools";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ Phlogistique kamilchm ];
platforms = stdenv.lib.platforms.linux;
};
2015-11-15 20:16:00 +00:00
}