base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / cd-dvd / brasero / wrapper.nix
blobdc5c6fc4ad30b9a82635145617a46bf5f3289c61
1 { lib, symlinkJoin, brasero-unwrapped, cdrtools, libdvdcss, makeWrapper }:
3 let
4   binPath = lib.makeBinPath [ cdrtools ];
5 in symlinkJoin {
6   name = "brasero-${brasero-unwrapped.version}";
8   paths = [ brasero-unwrapped ];
9   nativeBuildInputs = [ makeWrapper ];
11   postBuild = ''
12     wrapProgram $out/bin/brasero \
13       --prefix PATH ':' ${binPath} \
14       --prefix LD_PRELOAD : ${lib.makeLibraryPath [ libdvdcss ]}/libdvdcss.so
15   '';
17   inherit (brasero-unwrapped) meta;