nixpkgs/pkgs/applications/video/vdr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, fontconfig, libjpeg, libcap, freetype, fribidi, pkg-config
2020-07-15 05:14:02 +00:00
, gettext, systemd, perl, lib
, enableSystemd ? true
, enableBidi ? true
}: stdenv.mkDerivation rec {
2019-06-21 18:50:45 +00:00
pname = "vdr";
2024-01-28 06:29:23 +00:00
version = "2.6.6";
2020-07-15 05:14:02 +00:00
src = fetchgit {
url = "git://git.tvdr.de/vdr.git";
2021-05-15 22:07:50 +00:00
rev = version;
2024-01-28 06:29:23 +00:00
hash = "sha256-3om/Q67PHtX/aIG4zMCaJTyD9bZNEcyE5LQTeb+zB+M=";
};
enableParallelBuilding = true;
postPatch = "substituteInPlace Makefile --replace libsystemd-daemon libsystemd";
2019-07-27 08:35:43 +00:00
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 = with lib; {
homepage = "http://www.tvdr.de/";
description = "Video Disc Recorder";
maintainers = [ maintainers.ck3d ];
2022-10-03 07:46:19 +00:00
platforms = platforms.linux;
2021-05-16 06:17:25 +00:00
license = licenses.gpl2Plus;
};
}