Unverified Commit a7dbc525 authored by Christian Kögler's avatar Christian Kögler Committed by GitHub
Browse files

vdrPlugins: Updates 2026-03 (#505452)

parents c5f3553c 5e579e1b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10,12 +10,12 @@
}:
stdenv.mkDerivation rec {
  pname = "vdr-epgsearch";
  version = "2.4.5";
  version = "2.4.6";

  src = fetchFromGitHub {
    repo = "vdr-plugin-epgsearch";
    owner = "vdr-projects";
    sha256 = "sha256-ERHy6ks5evYmOUoTXNd63ETIA2PyR67VZ7CXR6kn7x4=";
    sha256 = "sha256-+csxlLBSIKiYIjgEPj0IUP8wZX9zuOM26cgA99uZ3EA=";
    rev = "v${version}";
  };

+2 −2
Original line number Diff line number Diff line
@@ -7,12 +7,12 @@
}:
stdenv.mkDerivation rec {
  pname = "vdr-markad";
  version = "4.2.17";
  version = "4.2.19";

  src = fetchFromGitHub {
    repo = "vdr-plugin-markad";
    owner = "kfb77";
    hash = "sha256-27Axgh8brG0Apq06gry7uN95GtJ74FC1RNYVcqTUbE0=";
    hash = "sha256-ecCWf/BKUe/L5Wrj9xKMRt+zVcmdCdYQw3s4Jwi4510=";
    tag = "V${version}";
  };

+4 −31
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  vdr,
  fetchFromGitHub,
  graphicsmagick,
  boost186,
  boost,
  libgcrypt,
  ncurses,
  callPackage,
@@ -39,33 +39,6 @@ in
    buildInputs = oldAttr.buildInputs ++ [ ncurses ];
  });

  femon = stdenv.mkDerivation rec {
    pname = "vdr-femon";
    version = "2.4.0";

    buildInputs = [ vdr ];

    src = fetchFromGitHub {
      repo = "vdr-plugin-femon";
      owner = "rofafor";
      sha256 = "sha256-0qBMYgNKk7N9Bj8fAoOokUo+G9gfj16N5e7dhoKRBqs=";
      rev = "v${version}";
    };

    postPatch = "substituteInPlace Makefile --replace /bin/true true";

    makeFlags = [ "DESTDIR=$(out)" ];

    meta = {
      inherit (src.meta) homepage;
      description = "DVB Frontend Status Monitor plugin for VDR";
      maintainers = [ lib.maintainers.ck3d ];
      license = lib.licenses.gpl2;
      inherit (vdr.meta) platforms;
    };

  };

  vnsiserver = stdenv.mkDerivation rec {
    pname = "vdr-vnsiserver";
    version = "1.8.3";
@@ -132,19 +105,19 @@ in

  fritzbox = stdenv.mkDerivation rec {
    pname = "vdr-fritzbox";
    version = "1.5.4";
    version = "1.5.8";

    src = fetchFromGitHub {
      owner = "jowi24";
      repo = "vdr-fritz";
      rev = version;
      hash = "sha256-DGD73i+ZHFgtCo+pMj5JaMovvb5vS1x20hmc5t29//o=";
      hash = "sha256-o+wJJCAOTg6pPScZ0iIiEWZyT2/++pLtuOppNeaXzmQ=";
      fetchSubmodules = true;
    };

    buildInputs = [
      vdr
      boost186
      boost
      libgcrypt
    ];