63d91b75a1
It turns out this doesn't work due to setuid issues. I had been under the impression that it was partially broken, but it is in fact totally broken. This reverts commit718466074f
, reversing changes made toea9c8d6a13
.
31 lines
940 B
Nix
31 lines
940 B
Nix
{ stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
|
|
, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
|
|
, kdelibs, kdemultimedia, automoc4, phonon, libkcddb ? null
|
|
}:
|
|
|
|
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
|
|
flac libsamplerate libdvdread lame libsndfile
|
|
libmad gettext stdenv.gcc.libc
|
|
kdelibs kdemultimedia automoc4 phonon
|
|
libkcddb
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "CD/DVD Burning Application for KDE";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.sander maintainers.urkud maintainers.phreedom ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|