nixpkgs/pkgs/tools/cd-dvd/brasero/wrapper.nix
Florian Klink ea4431750e brasero: fix libdvdcss usage
turns out, prefixing LD_PRELOAD with the path to libdvdcss works just
fine.
2019-02-14 01:20:41 +01:00

19 lines
464 B
Nix

{ lib, symlinkJoin, brasero-original, cdrtools, libdvdcss, makeWrapper }:
let
binPath = lib.makeBinPath [ cdrtools ];
in symlinkJoin {
name = "brasero-${brasero-original.version}";
paths = [ brasero-original ];
buildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/brasero \
--prefix PATH ':' ${binPath} \
--prefix LD_PRELOAD : ${lib.makeLibraryPath [ libdvdcss ]}/libdvdcss.so
'';
inherit (brasero-original) meta;
}