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

37 lines
1.3 KiB
Nix
Raw Normal View History

2017-09-08 13:43:18 +00:00
{ stdenv, fetchurl, cmake, qt4, pkgconfig, ladspaPlugins, ladspaH,
2015-08-23 13:15:59 +00:00
dssi, liblo, liblrdf, fftwSinglePrec, libsndfile,
libsamplerate, perl, makedepend, libjack2,
withLirc ? false, lirc ? null } :
stdenv.mkDerivation (rec {
2017-09-08 13:43:18 +00:00
version = "17.04";
2015-08-23 13:15:59 +00:00
name = "rosegarden-${version}";
2017-09-08 13:43:18 +00:00
2015-08-23 13:15:59 +00:00
src = fetchurl {
url = "mirror://sourceforge/rosegarden/${name}.tar.bz2";
2017-09-08 13:43:18 +00:00
sha256 = "1khfcj22asdhjh0jvhkqsz200wgmigkhsrcz09ffia5hqm0n32lq";
2015-08-23 13:15:59 +00:00
};
2017-09-08 13:43:18 +00:00
QTDIR = qt4;
buildInputs = [
cmake qt4 pkgconfig ladspaPlugins ladspaH dssi liblo liblrdf fftwSinglePrec
libsndfile libsamplerate perl makedepend libjack2
] ++ stdenv.lib.optional withLirc [ lirc ];
enableParallelBuilding = true;
2015-08-23 13:15:59 +00:00
meta = with stdenv.lib; {
homepage = http://www.rosegardenmusic.com/;
description = "Music composition and editing environment";
longDescription = ''
Rosegarden is a music composition and editing environment based around a MIDI sequencer that features a rich understanding of music notation and includes basic support for digital audio.
Rosegarden is an easy-to-learn, attractive application that runs on Linux, ideal for composers, musicians, music students, and small studio or home recording environments.
'';
maintainers = [ maintainers.lebastr ];
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
})