mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
48 lines
1.5 KiB
Nix
48 lines
1.5 KiB
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules, kdoctools, makeWrapper, shared-mime-info
|
|
, libkcddb, karchive, kcmutils, kfilemetadata, knewstuff, knotifyconfig, solid, kxmlgui
|
|
, flac, lame, libmad, libmpcdec, libvorbis
|
|
, libsamplerate, libsndfile, taglib
|
|
, cdparanoia, cdrdao, cdrtools, dvdplusrwtools, libburn, libdvdcss, libdvdread, vcdimager
|
|
, ffmpeg, libmusicbrainz3, normalize, sox, transcode, kinit
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "k3b";
|
|
meta = with lib; {
|
|
homepage = "https://apps.kde.org/k3b/";
|
|
description = "Disk burning application";
|
|
mainProgram = "k3b";
|
|
license = with licenses; [ gpl2Plus ];
|
|
maintainers = with maintainers; [ sander ];
|
|
platforms = platforms.linux;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
|
|
buildInputs = [
|
|
# kde
|
|
libkcddb karchive kcmutils kfilemetadata knewstuff knotifyconfig solid kxmlgui
|
|
# formats
|
|
flac lame libmad libmpcdec libvorbis
|
|
# sound utilities
|
|
libsamplerate libsndfile taglib
|
|
# cd/dvd
|
|
cdparanoia libdvdcss libdvdread
|
|
# others
|
|
ffmpeg libmusicbrainz3 shared-mime-info
|
|
];
|
|
propagatedUserEnvPkgs = [ (lib.getBin kinit) ];
|
|
postFixup =
|
|
let
|
|
binPath = lib.makeBinPath [
|
|
cdrdao cdrtools dvdplusrwtools libburn normalize sox transcode
|
|
vcdimager flac
|
|
];
|
|
libraryPath = lib.makeLibraryPath [
|
|
cdparanoia
|
|
];
|
|
in ''
|
|
wrapProgram "$out/bin/k3b" \
|
|
--prefix PATH : "${binPath}" \
|
|
--prefix LD_LIBRARY_PATH : ${libraryPath}
|
|
'';
|
|
}
|