mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
51 lines
874 B
Nix
51 lines
874 B
Nix
{ lib
|
|
, stdenv
|
|
, vdr
|
|
, alsa-lib
|
|
, fetchFromGitHub
|
|
, xcbutilwm
|
|
, xorgserver
|
|
, ffmpeg
|
|
, libva
|
|
, libvdpau
|
|
, xorg
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "vdr-softhddevice";
|
|
version = "1.9.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ua0lnj";
|
|
repo = "vdr-plugin-softhddevice";
|
|
sha256 = "sha256-0jtA64RVlh57zjrGDJAR/tt8V6sSksAx9kBDRW1m+WM=";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
buildInputs = [
|
|
vdr
|
|
xcbutilwm
|
|
ffmpeg
|
|
alsa-lib
|
|
libva
|
|
libvdpau
|
|
xorg.libxcb
|
|
xorg.libX11
|
|
];
|
|
|
|
makeFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace softhddev.c \
|
|
--replace "LOCALBASE \"/bin/X\"" "\"${xorgserver}/bin/X\""
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "VDR SoftHDDevice Plug-in";
|
|
maintainers = [ maintainers.ck3d ];
|
|
license = licenses.gpl2;
|
|
inherit (vdr.meta) platforms;
|
|
};
|
|
|
|
}
|