90 lines
1.6 KiB
Nix
90 lines
1.6 KiB
Nix
{
|
|
stdenv,
|
|
fetchgit,
|
|
fontconfig,
|
|
libjpeg,
|
|
libcap,
|
|
freetype,
|
|
fribidi,
|
|
pkg-config,
|
|
gettext,
|
|
systemd,
|
|
perl,
|
|
lib,
|
|
enableSystemd ? true,
|
|
enableBidi ? true,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vdr";
|
|
version = "2.8.2";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.tvdr.de/vdr.git";
|
|
rev = version;
|
|
hash = "sha256-m+aSW4b9GEhJa2Tax5nkm4q5DBZVWwBMa3abRM8vw08=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = "substituteInPlace Makefile --replace libsystemd-daemon libsystemd";
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
libjpeg
|
|
libcap
|
|
freetype
|
|
perl
|
|
]
|
|
++ lib.optional enableSystemd systemd
|
|
++ lib.optional enableBidi fribidi;
|
|
|
|
buildFlags = [
|
|
"vdr"
|
|
"i18n"
|
|
]
|
|
++ lib.optional enableSystemd "SDNOTIFY=1"
|
|
++ lib.optional enableBidi "BIDI=1";
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
# plugins uses the same build environment as vdr
|
|
propagatedNativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
];
|
|
|
|
installFlags = [
|
|
"DESTDIR=$(out)"
|
|
"PREFIX=" # needs to be empty, otherwise plugins try to install at same prefix
|
|
];
|
|
|
|
installTargets = [
|
|
"install-pc"
|
|
"install-bin"
|
|
"install-doc"
|
|
"install-i18n"
|
|
"install-includes"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib/vdr # only needed if vdr is started without any plugin
|
|
mkdir -p $out/share/vdr/conf
|
|
cp *.conf $out/share/vdr/conf
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"man"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://www.tvdr.de/";
|
|
description = "Video Disc Recorder";
|
|
maintainers = [ lib.maintainers.ck3d ];
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|