Merge pull request #29975 from yegortimoshenko/rosegarden/qt5
rosegarden: Qt4 -> Qt5
This commit is contained in:
commit
02cea73825
@ -1,23 +1,35 @@
|
|||||||
{ stdenv, fetchurl, cmake, qt4, pkgconfig, ladspaPlugins, ladspaH,
|
{ stdenv, fetchurl, cmake, makedepend, perl, pkgconfig, qttools
|
||||||
dssi, liblo, liblrdf, fftwSinglePrec, libsndfile,
|
, dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2
|
||||||
libsamplerate, perl, makedepend, libjack2,
|
, liblo, liblrdf, libsamplerate, libsndfile, lirc ? null, qtbase }:
|
||||||
withLirc ? false, lirc ? null } :
|
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
version = "17.04";
|
version = "17.04";
|
||||||
name = "rosegarden-${version}";
|
name = "rosegarden-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/rosegarden/${name}.tar.bz2";
|
url = "mirror://sourceforge/rosegarden/${name}.tar.bz2";
|
||||||
sha256 = "1khfcj22asdhjh0jvhkqsz200wgmigkhsrcz09ffia5hqm0n32lq";
|
sha256 = "1khfcj22asdhjh0jvhkqsz200wgmigkhsrcz09ffia5hqm0n32lq";
|
||||||
};
|
};
|
||||||
|
|
||||||
QTDIR = qt4;
|
patchPhase = ''
|
||||||
|
substituteInPlace src/CMakeLists.txt --replace svnheader svnversion
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake makedepend perl pkgconfig qttools ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cmake qt4 pkgconfig ladspaPlugins ladspaH dssi liblo liblrdf fftwSinglePrec
|
dssi
|
||||||
libsndfile libsamplerate perl makedepend libjack2
|
fftwSinglePrec
|
||||||
] ++ stdenv.lib.optional withLirc [ lirc ];
|
ladspaH
|
||||||
|
ladspaPlugins
|
||||||
|
libjack2
|
||||||
|
liblo
|
||||||
|
liblrdf
|
||||||
|
libsamplerate
|
||||||
|
libsndfile
|
||||||
|
lirc
|
||||||
|
qtbase
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -25,11 +37,15 @@ stdenv.mkDerivation (rec {
|
|||||||
homepage = http://www.rosegardenmusic.com/;
|
homepage = http://www.rosegardenmusic.com/;
|
||||||
description = "Music composition and editing environment";
|
description = "Music composition and editing environment";
|
||||||
longDescription = ''
|
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 a music composition and editing environment based around
|
||||||
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.
|
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;
|
license = licenses.lgpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -4200,7 +4200,7 @@ with pkgs;
|
|||||||
|
|
||||||
rockbox_utility = libsForQt5.callPackage ../tools/misc/rockbox-utility { };
|
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 { };
|
rowhammer-test = callPackage ../tools/system/rowhammer-test { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user