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 { stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
, ffmpeg, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext , ffmpeg, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
, kdelibs, kdemultimedia, cdrdao, cdrtools, dvdplusrwtools , kdelibs, kdemultimedia, automoc4, phonon, makeWrapper
, automoc4, phonon, makeWrapper
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -13,14 +12,10 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake qt4 perl shared_mime_info libvorbis taglib buildInputs = [ cmake qt4 perl shared_mime_info libvorbis taglib
ffmpeg flac libsamplerate libdvdread lame libsndfile ffmpeg flac libsamplerate libdvdread lame libsndfile
libmad gettext stdenv.gcc.libc cdrdao cdrtools libmad gettext stdenv.gcc.libc
kdelibs kdemultimedia automoc4 phonon dvdplusrwtools kdelibs kdemultimedia automoc4 phonon
makeWrapper ]; makeWrapper ];
postInstall = ''
wrapProgram $out/bin/k3b --suffix PATH : "${cdrdao}/bin:${dvdplusrwtools}/bin:${cdrtools}/bin"
'';
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;