about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/cd-dvd/brasero/wrapper.nix
blob: 5371e8d526b8d3078172006fb79325d7d77ce57f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
}