2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, qttools, wrapQtAppsHook
|
2021-06-28 23:13:55 +00:00
|
|
|
, alsa-lib, dssi, fluidsynth, ladspaH, lash, libinstpatch, libjack2, liblo
|
2022-10-30 15:09:59 +00:00
|
|
|
, libsamplerate, libsndfile, lilv, lrdf, lv2, qtsvg, rtaudio, rubberband, sord, serd
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "muse-sequencer";
|
2020-08-20 17:08:02 +00:00
|
|
|
version = "3.1.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "muse-sequencer";
|
|
|
|
repo = "muse";
|
|
|
|
rev = "muse_${builtins.replaceStrings ["."] ["_"] version}";
|
2020-08-20 17:08:02 +00:00
|
|
|
sha256 = "1rasp2v1ds2aw296lbf27rzw0l9fjl0cvbvw85d5ycvh6wkm301p";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = "source/muse3";
|
|
|
|
|
|
|
|
patches = [ ./fix-parallel-building.patch ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools wrapQtAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
alsa-lib dssi fluidsynth ladspaH lash libinstpatch libjack2 liblo
|
2020-04-24 23:36:52 +00:00
|
|
|
libsamplerate libsndfile lilv lrdf lv2 qtsvg rtaudio rubberband sord
|
|
|
|
];
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${lib.getDev serd}/include/serd-0" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-11-30 08:33:03 +00:00
|
|
|
homepage = "https://muse-sequencer.github.io/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "MIDI/Audio sequencer with recording and editing capabilities";
|
|
|
|
longDescription = ''
|
|
|
|
MusE is a MIDI/Audio sequencer with recording and editing capabilities
|
|
|
|
written originally by Werner Schweer now developed and maintained
|
|
|
|
by the MusE development team.
|
|
|
|
|
|
|
|
MusE aims to be a complete multitrack virtual studio for Linux,
|
|
|
|
it is published under the GNU General Public License.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
};
|
|
|
|
}
|