forked from mirrors/nixpkgs
K3b: fix to make it build for KDE4.10.
This commit is contained in:
parent
083637896d
commit
b0ad529987
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
|
{ stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
|
||||||
, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
|
, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
|
||||||
, kdelibs, kdemultimedia, automoc4, phonon
|
, kdelibs, kdemultimedia, automoc4, phonon, libkcddb ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
|
||||||
flac libsamplerate libdvdread lame libsndfile
|
flac libsamplerate libdvdread lame libsndfile
|
||||||
libmad gettext stdenv.gcc.libc
|
libmad gettext stdenv.gcc.libc
|
||||||
kdelibs kdemultimedia automoc4 phonon
|
kdelibs kdemultimedia automoc4 phonon
|
||||||
|
libkcddb
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
@ -23,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "CD/DVD Burning Application for KDE";
|
description = "CD/DVD Burning Application for KDE";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.sander maintainers.urkud ];
|
maintainers = [ maintainers.sander maintainers.urkud maintainers.phreedom ];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue