rosegarden: Qt4 -> Qt5
This commit is contained in:
parent
5de2cffda0
commit
c1716cd4c6
@ -1,23 +1,35 @@
|
||||
{ stdenv, fetchurl, cmake, qt4, pkgconfig, ladspaPlugins, ladspaH,
|
||||
dssi, liblo, liblrdf, fftwSinglePrec, libsndfile,
|
||||
libsamplerate, perl, makedepend, libjack2,
|
||||
withLirc ? false, lirc ? null } :
|
||||
{ stdenv, fetchurl, cmake, makedepend, perl, pkgconfig, qttools
|
||||
, dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2
|
||||
, liblo, liblrdf, libsamplerate, libsndfile, lirc ? null, qtbase }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
version = "17.04";
|
||||
name = "rosegarden-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/rosegarden/${name}.tar.bz2";
|
||||
url = "mirror://sourceforge/rosegarden/${name}.tar.bz2";
|
||||
sha256 = "1khfcj22asdhjh0jvhkqsz200wgmigkhsrcz09ffia5hqm0n32lq";
|
||||
};
|
||||
|
||||
QTDIR = qt4;
|
||||
patchPhase = ''
|
||||
substituteInPlace src/CMakeLists.txt --replace svnheader svnversion
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake makedepend perl pkgconfig qttools ];
|
||||
|
||||
buildInputs = [
|
||||
cmake qt4 pkgconfig ladspaPlugins ladspaH dssi liblo liblrdf fftwSinglePrec
|
||||
libsndfile libsamplerate perl makedepend libjack2
|
||||
] ++ stdenv.lib.optional withLirc [ lirc ];
|
||||
dssi
|
||||
fftwSinglePrec
|
||||
ladspaH
|
||||
ladspaPlugins
|
||||
libjack2
|
||||
liblo
|
||||
liblrdf
|
||||
libsamplerate
|
||||
libsndfile
|
||||
lirc
|
||||
qtbase
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
@ -25,11 +37,15 @@ stdenv.mkDerivation (rec {
|
||||
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.
|
||||
'';
|
||||
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.
|
||||
|
||||
maintainers = [ maintainers.lebastr ];
|
||||
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 ];
|
||||
license = licenses.lgpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -4200,7 +4200,7 @@ with pkgs;
|
||||
|
||||
rockbox_utility = libsForQt5.callPackage ../tools/misc/rockbox-utility { };
|
||||
|
||||
rosegarden = callPackage ../applications/audio/rosegarden { };
|
||||
rosegarden = libsForQt5.callPackage ../applications/audio/rosegarden { };
|
||||
|
||||
rowhammer-test = callPackage ../tools/system/rowhammer-test { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user