1 { lib, symlinkJoin, brasero-unwrapped, cdrtools, libdvdcss, makeWrapper }:
4 binPath = lib.makeBinPath [ cdrtools ];
6 name = "brasero-${brasero-unwrapped.version}";
8 paths = [ brasero-unwrapped ];
9 nativeBuildInputs = [ makeWrapper ];
12 wrapProgram $out/bin/brasero \
13 --prefix PATH ':' ${binPath} \
14 --prefix LD_PRELOAD : ${lib.makeLibraryPath [ libdvdcss ]}/libdvdcss.so
17 inherit (brasero-unwrapped) meta;