From d32a640a489b4b4f25ec00d4589f7f216ddcaae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6gler?= Date: Sat, 6 Sep 2025 22:49:52 +0200 Subject: [PATCH] vdrPlugins: fix Nix expression for vdr plugins --- pkgs/applications/video/vdr/plugins.nix | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/video/vdr/plugins.nix b/pkgs/applications/video/vdr/plugins.nix index 05f1b637f101..c86fead10a56 100644 --- a/pkgs/applications/video/vdr/plugins.nix +++ b/pkgs/applications/video/vdr/plugins.nix @@ -38,18 +38,6 @@ in buildInputs = oldAttr.buildInputs ++ [ ncurses ]; }); - inherit - (lib.genAttrs [ - "epgtableid0" - "hello" - "osddemo" - "pictures" - "servicedemo" - "status" - "svdrpdemo" - ] mkPlugin) - ; - femon = stdenv.mkDerivation rec { pname = "vdr-femon"; version = "2.4.0"; @@ -170,3 +158,12 @@ in }; }; } +// (lib.genAttrs [ + "epgtableid0" + "hello" + "osddemo" + "pictures" + "servicedemo" + "status" + "svdrpdemo" +] mkPlugin)