2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, cmake, makedepend, perl, pkg-config, qttools, wrapQtAppsHook
|
2020-01-19 14:39:40 +01:00
|
|
|
, dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2, alsaLib
|
2020-03-23 00:18:53 +01:00
|
|
|
, liblo, libsamplerate, libsndfile, lirc ? null, lrdf, qtbase }:
|
2015-08-23 15:15:59 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation (rec {
|
2021-03-09 13:52:07 +01:00
|
|
|
version = "20.12";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "rosegarden";
|
2017-09-08 15:43:18 +02:00
|
|
|
|
2015-08-23 15:15:59 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/rosegarden/${pname}-${version}.tar.bz2";
|
2021-03-09 13:52:07 +01:00
|
|
|
sha256 = "sha256-iGaEr8WFipV4I00fhFGI2xMBFPf784IIxNXs2hUTHFs=";
|
2015-08-23 15:15:59 +02:00
|
|
|
};
|
|
|
|
|
2017-10-01 04:51:17 +02:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace src/CMakeLists.txt --replace svnheader svnversion
|
|
|
|
'';
|
|
|
|
|
2020-01-02 00:55:30 +01:00
|
|
|
nativeBuildInputs =
|
2021-01-19 07:50:56 +01:00
|
|
|
[ cmake makedepend perl pkg-config qttools wrapQtAppsHook ];
|
2017-09-08 15:43:18 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-10-01 04:51:17 +02:00
|
|
|
dssi
|
|
|
|
fftwSinglePrec
|
|
|
|
ladspaH
|
|
|
|
ladspaPlugins
|
|
|
|
libjack2
|
|
|
|
liblo
|
|
|
|
libsamplerate
|
|
|
|
libsndfile
|
|
|
|
lirc
|
2020-03-23 00:18:53 +01:00
|
|
|
lrdf
|
2017-10-01 04:51:17 +02:00
|
|
|
qtbase
|
2020-01-19 14:39:40 +01:00
|
|
|
alsaLib
|
2017-10-01 04:51:17 +02:00
|
|
|
];
|
2017-09-08 15:43:18 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.rosegardenmusic.com/";
|
2015-08-23 15:15:59 +02:00
|
|
|
description = "Music composition and editing environment";
|
|
|
|
longDescription = ''
|
2017-10-01 04:51:17 +02: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 15:15:59 +02:00
|
|
|
|
2017-10-01 04:51:17 +02: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 15:15:59 +02:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
})
|