mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
19 lines
470 B
Nix
19 lines
470 B
Nix
{ lib, symlinkJoin, brasero-original, cdrtools, libdvdcss, makeWrapper }:
|
|
|
|
let
|
|
binPath = lib.makeBinPath [ cdrtools ];
|
|
in symlinkJoin {
|
|
name = "brasero-${brasero-original.version}";
|
|
|
|
paths = [ brasero-original ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram $out/bin/brasero \
|
|
--prefix PATH ':' ${binPath} \
|
|
--prefix LD_PRELOAD : ${lib.makeLibraryPath [ libdvdcss ]}/libdvdcss.so
|
|
'';
|
|
|
|
inherit (brasero-original) meta;
|
|
}
|