Removing the dependencies in k3b on cdrkit, cdrdao, dvdrwplustools and

growisofs, because at the end it needs all setuid for it to record anything.

svn path=/nixpkgs/trunk/; revision=26403
This commit is contained in:
Lluís Batlle i Rossell 2011-03-17 19:02:20 +00:00
parent 1d99933141
commit 3677d79b63

View File

@ -1,7 +1,6 @@
{ stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
, ffmpeg, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
, kdelibs, kdemultimedia, cdrdao, cdrtools, dvdplusrwtools
, automoc4, phonon, makeWrapper
, kdelibs, kdemultimedia, automoc4, phonon, makeWrapper
}:
stdenv.mkDerivation rec {
@ -13,14 +12,10 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake qt4 perl shared_mime_info libvorbis taglib
ffmpeg flac libsamplerate libdvdread lame libsndfile
libmad gettext stdenv.gcc.libc cdrdao cdrtools
kdelibs kdemultimedia automoc4 phonon dvdplusrwtools
libmad gettext stdenv.gcc.libc
kdelibs kdemultimedia automoc4 phonon
makeWrapper ];
postInstall = ''
wrapProgram $out/bin/k3b --suffix PATH : "${cdrdao}/bin:${dvdplusrwtools}/bin:${cdrtools}/bin"
'';
meta = with stdenv.lib; {
description = "CD/DVD Burning Application for KDE";
license = licenses.gpl2Plus;