nixpkgs/pkgs/applications/misc/k3b/default.nix
Lluís Batlle i Rossell 3677d79b63 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
2011-03-17 19:02:20 +00:00

25 lines
868 B
Nix

{ stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
, ffmpeg, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
, kdelibs, kdemultimedia, automoc4, phonon, makeWrapper
}:
stdenv.mkDerivation rec {
name = "k3b-2.0.2";
src = fetchurl {
url = "mirror://sourceforge/k3b/${name}.tar.bz2";
sha256 = "1kdpylz3w9bg02jg4mjhqz8bq1yb4xi4fqfl9139qcyjq4lny5xg";
};
buildInputs = [ cmake qt4 perl shared_mime_info libvorbis taglib
ffmpeg flac libsamplerate libdvdread lame libsndfile
libmad gettext stdenv.gcc.libc
kdelibs kdemultimedia automoc4 phonon
makeWrapper ];
meta = with stdenv.lib; {
description = "CD/DVD Burning Application for KDE";
license = licenses.gpl2Plus;
maintainers = [ maintainers.sander maintainers.urkud ];
};
}