mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #38437 from jluttine/fix-k3b-libpath
k3b: fix build inputs and library/binary paths
This commit is contained in:
commit
d6ce4855b3
1 changed files with 12 additions and 6 deletions
|
@ -16,7 +16,7 @@ mkDerivation {
|
|||
platforms = platforms.linux;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
|
||||
propagatedBuildInputs = [
|
||||
buildInputs = [
|
||||
# qt
|
||||
qtwebkit
|
||||
# kde
|
||||
|
@ -32,11 +32,17 @@ mkDerivation {
|
|||
];
|
||||
propagatedUserEnvPkgs = [ (lib.getBin kinit) ];
|
||||
postFixup =
|
||||
let k3bPath = lib.makeBinPath [
|
||||
let
|
||||
binPath = lib.makeBinPath [
|
||||
cdrdao cdrtools dvdplusrwtools libburn normalize sox transcode
|
||||
vcdimager
|
||||
vcdimager flac
|
||||
];
|
||||
libraryPath = lib.makeLibraryPath [
|
||||
cdparanoia
|
||||
];
|
||||
in ''
|
||||
wrapProgram "$out/bin/k3b" --prefix PATH : "${k3bPath}"
|
||||
wrapProgram "$out/bin/k3b" \
|
||||
--prefix PATH : "${binPath}" \
|
||||
--prefix LD_LIBRARY_PATH : ${libraryPath}
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue