Merge pull request #69199 from c0deaddict/feature/sonic-pi-add-midi-support

sonic-pi: add midi support
This commit is contained in:
Matthew Bauer 2019-11-07 17:37:38 -05:00 committed by GitHub
commit e78dd20e86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -14,6 +14,7 @@
, supercollider
, qscintilla
, qwt
, osmid
}:
let
@ -59,6 +60,10 @@ mkDerivation rec {
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
@ -95,11 +100,10 @@ mkDerivation rec {
'';
meta = {
homepage = http://sonic-pi.net/;
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;
broken = true;
};
}

View file

@ -20932,7 +20932,9 @@ in
wavebox = callPackage ../applications/networking/instant-messengers/wavebox { };
sonic-pi = libsForQt5.callPackage ../applications/audio/sonic-pi { };
sonic-pi = libsForQt5.callPackage ../applications/audio/sonic-pi {
ruby = ruby_2_4; # sonic-pi build breaks with ruby 2.5 and 2.6
};
st = callPackage ../applications/misc/st {
conf = config.st.conf or null;