From e13f46b3c2fd61e006caae761f4a803afd4cde31 Mon Sep 17 00:00:00 2001 From: Zer0- Date: Thu, 5 Jul 2018 22:16:27 -0400 Subject: MusE: add new package at version 3.0.2 (#42544) * muse: init at version 3.0.2 Added MusE; an application for working with midi. Allowing recording from midi instruments, playback and editing of midi files. * muse: remove unnecessary dependencies -builds and works just fine without listing these * Use fetchFromGitHub and add sha256 --- pkgs/applications/audio/muse/default.nix | 76 ++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 pkgs/applications/audio/muse/default.nix (limited to 'pkgs/applications') diff --git a/pkgs/applications/audio/muse/default.nix b/pkgs/applications/audio/muse/default.nix new file mode 100644 index 000000000000..9687ff3106bd --- /dev/null +++ b/pkgs/applications/audio/muse/default.nix @@ -0,0 +1,76 @@ +{ stdenv +, fetchFromGitHub +, libjack2 +, qt5 +, cmake +, libsndfile +, libsamplerate +, ladspaH +, fluidsynth +, alsaLib +, rtaudio +, lash +, dssi +, liblo +, pkgconfig +, gitAndTools +}: + +stdenv.mkDerivation rec { + name = "muse-sequencer-${version}"; + version = "3.0.2"; + + meta = with stdenv.lib; { + homepage = http://www.muse-sequencer.org; + 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 = stdenv.lib.licenses.gpl2; + }; + + src = + fetchFromGitHub { + owner = "muse-sequencer"; + repo = "muse"; + rev = "02d9dc6abd757c3c1783fdd46dacd3c4ef2c0a6d"; + sha256 = "0pn0mcg79z3bhjwxbss3ylypdz3gg70q5d1ij3x8yw65ryxbqf51"; + }; + + + buildInputs = [ + libjack2 + qt5.qtsvg + qt5.qttools + cmake + libsndfile + libsamplerate + ladspaH + fluidsynth + alsaLib + rtaudio + lash + dssi + liblo + pkgconfig + gitAndTools.gitFull + ]; + + sourceRoot = "source/muse3"; + + buildPhase = '' + cd .. + bash compile_muse.sh + ''; + + installPhase = '' + mkdir $out + cd build + make install + ''; +} -- cgit 1.4.1