rosegarden: init at 14.12

authored by Alexander and committed by Alexander Lebedev ee6140be 3b1c772d

+37
+1
lib/maintainers.nix
··· 141 141 kragniz = "Louis Taylor <kragniz@gmail.com>"; 142 142 ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>"; 143 143 lassulus = "Lassulus <lassulus@gmail.com>"; 144 + lebastr = "Alexander Lebedev <lebastr@gmail.com>"; 144 145 leonardoce = "Leonardo Cecchi <leonardo.cecchi@gmail.com>"; 145 146 lethalman = "Luca Bruno <lucabru@src.gnome.org>"; 146 147 lhvwb = "Nathaniel Baxter <nathaniel.baxter@gmail.com>";
+34
pkgs/applications/audio/rosegarden/default.nix
··· 1 + { stdenv, fetchurl, qt4, pkgconfig, ladspaPlugins, ladspaH, 2 + dssi, liblo, liblrdf, fftwSinglePrec, libsndfile, 3 + libsamplerate, perl, makedepend, libjack2, 4 + withLirc ? false, lirc ? null } : 5 + 6 + stdenv.mkDerivation (rec { 7 + version = "14.12"; 8 + name = "rosegarden-${version}"; 9 + src = fetchurl { 10 + url = "mirror://sourceforge/rosegarden/${name}.tar.bz2"; 11 + sha256 = "0zhlxr1njyy6837f09l6p75js0j5mxmls6m02bqafv9j32wgnxpq"; 12 + }; 13 + 14 + QTDIR=qt4; 15 + 16 + buildInputs = [ qt4 pkgconfig ladspaPlugins ladspaH dssi liblo liblrdf fftwSinglePrec 17 + libsndfile libsamplerate perl makedepend libjack2 ] 18 + ++ stdenv.lib.optional withLirc [ lirc ]; 19 + 20 + enableParallelBuilding = true; 21 + 22 + meta = with stdenv.lib; { 23 + homepage = http://www.rosegardenmusic.com/; 24 + description = "Music composition and editing environment"; 25 + longDescription = '' 26 + 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. 27 + 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. 28 + ''; 29 + 30 + maintainers = [ maintainers.lebastr ]; 31 + license = licenses.lgpl2Plus; 32 + platforms = platforms.linux; 33 + }; 34 + })
+2
pkgs/top-level/all-packages.nix
··· 2883 2883 2884 2884 rockbox_utility = callPackage ../tools/misc/rockbox-utility { }; 2885 2885 2886 + rosegarden = callPackage ../applications/audio/rosegarden { }; 2887 + 2886 2888 rpPPPoE = builderDefsPackage (import ../tools/networking/rp-pppoe) { 2887 2889 inherit ppp; 2888 2890 };