From b07e04882e325001f23d8c9fa671079ae0e11d5f Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Thu, 11 May 2017 17:29:58 +0800 Subject: k3b: 2.0.3a -> 17.04.0 --- pkgs/applications/kde/k3b.nix | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pkgs/applications/kde/k3b.nix (limited to 'pkgs/applications/kde/k3b.nix') diff --git a/pkgs/applications/kde/k3b.nix b/pkgs/applications/kde/k3b.nix new file mode 100644 index 0000000000000..d1cd33a520891 --- /dev/null +++ b/pkgs/applications/kde/k3b.nix @@ -0,0 +1,41 @@ +{ kdeApp, lib, kdeWrapper, extra-cmake-modules +, qtwebkit +, libkcddb, kcmutils, kdoctools, kfilemetadata, knewstuff, knotifyconfig, solid, kxmlgui +, flac, lame, libmad, libmpcdec, libvorbis +, libsamplerate, libsndfile, taglib +, cdparanoia, cdrdao, cdrtools, dvdplusrwtools, libburn, libdvdcss, libdvdread, vcdimager +, ffmpeg, libmusicbrainz2, normalize, sox, transcode +}: + +let + unwrapped = + kdeApp { + name = "k3b"; + meta = with lib; { + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ sander phreedom ]; + platforms = platforms.linux; + }; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + propagatedBuildInputs = [ + # qt + qtwebkit + # kde + libkcddb kcmutils kfilemetadata knewstuff knotifyconfig solid kxmlgui + # formats + flac lame libmad libmpcdec libvorbis + # sound utilities + libsamplerate libsndfile taglib + # cd/dvd + cdparanoia libdvdcss libdvdread + # others + ffmpeg libmusicbrainz2 + ]; + enableParallelBuilding = true; + }; + +in kdeWrapper { + inherit unwrapped; + targets = [ "bin/k3b" ]; + paths = [ cdrdao cdrtools dvdplusrwtools libburn normalize sox transcode vcdimager ]; +} -- cgit 1.4.1