summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.4/extragear/k3b/default.nix
blob: 835dbe69593b7465aaa4dd0f156165d1faf32ff4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, cmake, qt4, perl, shared_mime_info, libvorbis, taglib
, ffmpeg, flac, libsamplerate, libdvdread, lame, libsndfile, libmad, gettext
, kdelibs, kdemultimedia
, automoc4, phonon
}:

stdenv.mkDerivation {
  name = "k3b-2.0.0";
  src = fetchurl {
    url = mirror://sourceforge/k3b/k3b-2.0.0.tar.bz2;
    sha256 = "0jrl4z9k5ml82xd903n4dm68fvmrkyp3k7c17b2494y2gawzqwfz";
  };
  buildInputs = [ cmake qt4 perl shared_mime_info libvorbis taglib 
                  ffmpeg flac libsamplerate libdvdread lame libsndfile
		  libmad gettext stdenv.gcc.libc
                  kdelibs kdemultimedia automoc4 phonon ];
  meta = {
    description = "CD/DVD Burning Application for KDE";
    license = "GPLv2+";
    maintainers = [ stdenv.lib.maintainers.sander ];
  };
}