2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, qttools, wrapQtAppsHook
|
2020-04-24 23:36:52 +00:00
|
|
|
, alsaLib, dssi, fluidsynth, ladspaH, lash, libinstpatch, libjack2, liblo
|
|
|
|
, libsamplerate, libsndfile, lilv, lrdf, lv2, qtsvg, rtaudio, rubberband, sord
|
|
|
|
}:
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
chmod u+w $NIX_BUILD_TOP
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 = [
|
|
|
|
alsaLib dssi fluidsynth ladspaH lash libinstpatch libjack2 liblo
|
|
|
|
libsamplerate libsndfile lilv lrdf lv2 qtsvg rtaudio rubberband sord
|
|
|
|
];
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|