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

38 lines
1.1 KiB
Nix
Raw Normal View History

2018-05-21 08:44:50 +01:00
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig
, alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis
2018-05-21 08:44:50 +01:00
, portaudio, portmidi, qtbase, qtdeclarative, qtscript, qtsvg, qttools
2015-09-27 16:27:31 +01:00
, qtwebkit, qtxmlpatterns
2015-06-01 11:56:42 +01:00
}:
2014-09-12 11:14:14 +01:00
stdenv.mkDerivation rec {
2015-04-27 20:51:21 +01:00
name = "musescore-${version}";
version = "2.3.1";
2014-09-12 11:14:14 +01:00
2018-05-21 08:44:50 +01:00
src = fetchFromGitHub {
owner = "musescore";
repo = "MuseScore";
rev = "v${version}";
sha256 = "00inrw9g8g34g74bhg5gp0rr5nydhjraiyn7vpl7kaqi5yzmhawd";
2014-09-12 11:14:14 +01:00
};
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 = [
alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis
2018-05-21 08:44:50 +01:00
portaudio portmidi # tesseract
qtbase qtdeclarative qtscript qtsvg qttools qtwebkit 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";
homepage = https://musescore.org/;
2014-09-12 11:14:14 +01:00
license = licenses.gpl2;
2018-05-21 08:44:50 +01:00
maintainers = with maintainers; [ vandenoever ];
2014-09-12 11:14:14 +01:00
platforms = platforms.linux;
repositories.git = https://github.com/musescore/MuseScore;
};
}