nixpkgs/pkgs/applications/audio/musescore/default.nix

55 lines
1.5 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
, alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis
, portaudio, portmidi, qtbase, qtdeclarative, qtgraphicaleffects
, qtquickcontrols2, qtscript, qtsvg, qttools
, qtwebengine, qtxmlpatterns
2021-02-27 02:26:02 +01:00
, nixosTests
2015-06-01 12:56:42 +02:00
}:
2014-09-12 12:14:14 +02:00
mkDerivation rec {
pname = "musescore";
2021-01-30 18:40:49 +01:00
version = "3.6.1";
2014-09-12 12:14:14 +02:00
src = fetchFromGitHub {
owner = "musescore";
repo = "MuseScore";
rev = "v${version}";
2021-01-30 18:40:49 +01:00
sha256 = "sha256-21ZI5rsc05ZWEyM0LeFr+212YViLYveZZBvVpskh8iA=";
2014-09-12 12:14:14 +02:00
};
patches = [
./remove_qtwebengine_install_hack.patch
];
2015-06-01 12:56:42 +02:00
cmakeFlags = [
"-DMUSESCORE_BUILD_CONFIG=release"
2020-08-11 06:43:42 +02:00
"-DUSE_SYSTEM_FREETYPE=ON"
];
qtWrapperArgs = [
# Work around crash on update from 3.4.2 to 3.5.0
# https://bugreports.qt.io/browse/QTBUG-85967
"--set QML_DISABLE_DISK_CACHE 1"
];
2015-10-17 05:42:40 +02:00
nativeBuildInputs = [ cmake pkg-config ];
2015-06-01 12:56:42 +02:00
buildInputs = [
alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis
2018-05-21 09:44:50 +02:00
portaudio portmidi # tesseract
qtbase qtdeclarative qtgraphicaleffects qtquickcontrols2
qtscript qtsvg qttools qtwebengine qtxmlpatterns
2015-06-01 12:56:42 +02:00
];
2015-04-27 21:51:21 +02:00
2021-02-27 02:26:02 +01:00
passthru.tests = nixosTests.musescore;
meta = with lib; {
2015-06-01 12:56:42 +02:00
description = "Music notation and composition software";
homepage = "https://musescore.org/";
2014-09-12 12:14:14 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ vandenoever turion ];
2014-09-12 12:14:14 +02:00
platforms = platforms.linux;
repositories.git = "https://github.com/musescore/MuseScore";
2014-09-12 12:14:14 +02:00
};
}