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

53 lines
1.5 KiB
Nix
Raw Normal View History

2017-09-30 22:51:17 -04:00
{ stdenv, fetchurl, cmake, makedepend, perl, pkgconfig, qttools
, dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2
, liblo, liblrdf, libsamplerate, libsndfile, lirc ? null, qtbase }:
2015-08-23 09:15:59 -04:00
stdenv.mkDerivation (rec {
version = "18.12";
2015-08-23 09:15:59 -04:00
name = "rosegarden-${version}";
2017-09-08 09:43:18 -04:00
2015-08-23 09:15:59 -04:00
src = fetchurl {
2017-09-30 22:51:17 -04:00
url = "mirror://sourceforge/rosegarden/${name}.tar.bz2";
sha256 = "15i9fm0vkn3wsgahaxqi1j5zs0wc0j3wdwml0x49084gk2p328vb";
2015-08-23 09:15:59 -04:00
};
2017-09-30 22:51:17 -04:00
patchPhase = ''
substituteInPlace src/CMakeLists.txt --replace svnheader svnversion
'';
nativeBuildInputs = [ cmake makedepend perl pkgconfig qttools ];
2017-09-08 09:43:18 -04:00
buildInputs = [
2017-09-30 22:51:17 -04:00
dssi
fftwSinglePrec
ladspaH
ladspaPlugins
libjack2
liblo
liblrdf
libsamplerate
libsndfile
lirc
qtbase
];
2017-09-08 09:43:18 -04:00
enableParallelBuilding = true;
2015-08-23 09:15:59 -04:00
meta = with stdenv.lib; {
2018-06-27 16:12:57 -04:00
homepage = https://www.rosegardenmusic.com/;
2015-08-23 09:15:59 -04:00
description = "Music composition and editing environment";
longDescription = ''
2017-09-30 22:51:17 -04:00
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.
2015-08-23 09:15:59 -04:00
2017-09-30 22:51:17 -04:00
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 = with maintainers; [ lebastr ];
2015-08-23 09:15:59 -04:00
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
})