Merge pull request #84975 from Maxdamantus/polyphone

polyphone: init at 2.2.0
This commit is contained in:
Maximilian Bosch 2020-04-12 18:10:11 +02:00 committed by GitHub
commit 539b7f1e3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 57 additions and 0 deletions

View file

@ -4703,6 +4703,12 @@
githubId = 136037;
name = "Matthew Maurer";
};
maxdamantus = {
email = "maxdamantus@gmail.com";
github = "Maxdamantus";
githubId = 502805;
name = "Max Zerzouri";
};
mbakke = {
email = "mbakke@fastmail.com";
github = "mbakke";

View file

@ -0,0 +1,49 @@
{ stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, alsaLib, libjack2, portaudio, libogg, flac, libvorbis, rtmidi, qtsvg }:
mkDerivation rec {
version = "2.2.0";
pname = "polyphone";
src = fetchFromGitHub {
owner = "davy7125";
repo = "polyphone";
rev = version;
sha256 = "0w5pidzhpwpggjn5la384fvjzkvprvrnidb06068whci11kgpbp7";
};
buildInputs = [
alsaLib
libjack2
portaudio
libogg
flac
libvorbis
rtmidi
qtsvg
];
nativeBuildInputs = [ qmake pkgconfig ];
preConfigure = ''
cd ./sources/
'';
installPhase = ''
install -d $out/bin
install -m755 bin/polyphone $out/bin/
'';
qmakeFlags = [
"DEFINES+=USE_LOCAL_STK"
"DEFINES+=USE_LOCAL_QCUSTOMPLOT"
"INCLUDEPATH+=${libjack2}/include/jack"
];
meta = with stdenv.lib; {
description = "A soundfont editor for creating musical instruments";
homepage = https://www.polyphone-soundfonts.com/;
license = licenses.gpl3;
maintainers = [ maintainers.maxdamantus ];
platforms = platforms.linux;
};
}

View file

@ -20849,6 +20849,8 @@ in
i3GapsSupport = false;
};
polyphone = libsForQt5.callPackage ../applications/audio/polyphone { };
ptex = callPackage ../development/libraries/ptex {};
qbec = callPackage ../applications/networking/cluster/qbec { };