2019-08-12 18:01:34 +01:00
|
|
|
{ stdenv, mkDerivation, lib, fetchzip, cmake, pkgconfig
|
2015-06-27 08:17:52 +01:00
|
|
|
, alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis
|
2020-05-30 08:45:57 +01:00
|
|
|
, portaudio, portmidi, qtbase, qtdeclarative, qtgraphicaleffects
|
|
|
|
, qtquickcontrols2, qtscript, qtsvg, qttools
|
2019-01-05 00:43:23 +00:00
|
|
|
, qtwebengine, qtxmlpatterns
|
2015-06-01 11:56:42 +01:00
|
|
|
}:
|
2014-09-12 11:14:14 +01:00
|
|
|
|
2019-08-12 18:01:34 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "musescore";
|
2020-03-18 18:45:15 +00:00
|
|
|
version = "3.4.2";
|
2014-09-12 11:14:14 +01:00
|
|
|
|
2019-01-28 17:49:22 +00:00
|
|
|
src = fetchzip {
|
2019-09-02 12:59:33 +01:00
|
|
|
url = "https://github.com/musescore/MuseScore/releases/download/v${version}/MuseScore-${version}.zip";
|
2020-03-18 18:45:15 +00:00
|
|
|
sha256 = "1laskvp40dncs12brkgvk7wl0qrvzy52rn7nf3b67ps1vmd130gp";
|
2019-01-28 17:49:22 +00:00
|
|
|
stripRoot = false;
|
2014-09-12 11:14:14 +01:00
|
|
|
};
|
|
|
|
|
2019-01-05 00:43:23 +00:00
|
|
|
patches = [
|
|
|
|
./remove_qtwebengine_install_hack.patch
|
|
|
|
];
|
|
|
|
|
2015-06-01 11:56:42 +01:00
|
|
|
cmakeFlags = [
|
2018-05-21 08:44:50 +01:00
|
|
|
] ++ lib.optional (lib.versionAtLeast freetype.version "2.5.2") "-DUSE_SYSTEM_FREETYPE=ON";
|
2015-10-17 04:42:40 +01:00
|
|
|
|
2015-06-01 11:56:42 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2015-06-27 08:17:52 +01:00
|
|
|
alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis
|
2018-05-21 08:44:50 +01:00
|
|
|
portaudio portmidi # tesseract
|
2020-05-30 08:45:57 +01:00
|
|
|
qtbase qtdeclarative qtgraphicaleffects qtquickcontrols2
|
|
|
|
qtscript qtsvg qttools qtwebengine qtxmlpatterns
|
2015-06-01 11:56:42 +01:00
|
|
|
];
|
2015-04-27 20:51:21 +01:00
|
|
|
|
2014-09-12 11:14:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-06-01 11:56:42 +01:00
|
|
|
description = "Music notation and composition software";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://musescore.org/";
|
2014-09-12 11:14:14 +01:00
|
|
|
license = licenses.gpl2;
|
2020-04-19 11:56:52 +01:00
|
|
|
maintainers = with maintainers; [ vandenoever turion ];
|
2014-09-12 11:14:14 +01:00
|
|
|
platforms = platforms.linux;
|
2020-04-01 02:11:51 +01:00
|
|
|
repositories.git = "https://github.com/musescore/MuseScore";
|
2014-09-12 11:14:14 +01:00
|
|
|
};
|
|
|
|
}
|