about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/vdr/wrapper.nix
blob: 04984212b249ce0e393463dfbe116a743bfee264 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ symlinkJoin, lib, makeWrapper, vdr
, plugins ? []
}: let

  makeXinePluginPath = l: lib.concatStringsSep ":" (map (p: "${p}/lib/xine/plugins") l);

  requiredXinePlugins = lib.flatten (map (p: p.passthru.requiredXinePlugins or []) plugins);

in symlinkJoin {

  name = "vdr-with-plugins-${lib.getVersion vdr}";

  paths = [ vdr ] ++ plugins;

  nativeBuildInputs = [ makeWrapper ];

  postBuild = ''
    wrapProgram $out/bin/vdr \
      --add-flags "-L $out/lib/vdr --localedir=$out/share/locale" \
      --prefix XINE_PLUGIN_PATH ":" ${makeXinePluginPath requiredXinePlugins}
  '';

  meta = with vdr.meta; {
    inherit license homepage;
    description = description
    + " (with plugins: "
    + lib.concatStringsSep ", " (map (x: ""+x.name) plugins)
    + ")";
  };
}