about summary refs log tree commit diff
path: root/pkgs/applications/video/vdr
diff options
context:
space:
mode:
authorChristian Kögler <ck3d@gmx.de>2022-10-03 09:46:19 +0200
committerChristian Kögler <ck3d@gmx.de>2022-10-03 09:46:19 +0200
commit62c7443beb8221418eba1d987e5d78be85de8a16 (patch)
treee78a1f8b50d9632200418ef188fd548ba734b49f /pkgs/applications/video/vdr
parentfd54651f5ffb4a36e8463e0c327a78442b26cbe7 (diff)
downloadnixlib-62c7443beb8221418eba1d987e5d78be85de8a16.tar
nixlib-62c7443beb8221418eba1d987e5d78be85de8a16.tar.gz
nixlib-62c7443beb8221418eba1d987e5d78be85de8a16.tar.bz2
nixlib-62c7443beb8221418eba1d987e5d78be85de8a16.tar.lz
nixlib-62c7443beb8221418eba1d987e5d78be85de8a16.tar.xz
nixlib-62c7443beb8221418eba1d987e5d78be85de8a16.tar.zst
nixlib-62c7443beb8221418eba1d987e5d78be85de8a16.zip
vdr: Set platform to linux
Diffstat (limited to 'pkgs/applications/video/vdr')
-rw-r--r--pkgs/applications/video/vdr/default.nix2
-rw-r--r--pkgs/applications/video/vdr/plugins.nix12
-rw-r--r--pkgs/applications/video/vdr/softhddevice/default.nix2
3 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/video/vdr/default.nix b/pkgs/applications/video/vdr/default.nix
index 5584e63ab446..68750ac918cb 100644
--- a/pkgs/applications/video/vdr/default.nix
+++ b/pkgs/applications/video/vdr/default.nix
@@ -50,7 +50,7 @@
     homepage = "http://www.tvdr.de/";
     description = "Video Disc Recorder";
     maintainers = [ maintainers.ck3d ];
-    platforms = [ "i686-linux" "x86_64-linux" ];
+    platforms = platforms.linux;
     license = licenses.gpl2Plus;
   };
 }
diff --git a/pkgs/applications/video/vdr/plugins.nix b/pkgs/applications/video/vdr/plugins.nix
index 6719b0412b82..9d25e03710e7 100644
--- a/pkgs/applications/video/vdr/plugins.nix
+++ b/pkgs/applications/video/vdr/plugins.nix
@@ -46,7 +46,7 @@ in {
       description = "DVB Frontend Status Monitor plugin for VDR";
       maintainers = [ maintainers.ck3d ];
       license = licenses.gpl2;
-      platforms = [ "i686-linux" "x86_64-linux" ];
+      inherit (vdr.meta) platforms;
     };
 
   };
@@ -92,7 +92,7 @@ in {
       description = "MarkAd marks advertisements in VDR recordings.";
       maintainers = [ maintainers.ck3d ];
       license = licenses.gpl2;
-      platforms = [ "i686-linux" "x86_64-linux" ];
+      inherit (vdr.meta) platforms;
     };
 
   };
@@ -140,7 +140,7 @@ in {
       description = "Searchtimer and replacement of the VDR program menu";
       maintainers = [ maintainers.ck3d ];
       license = licenses.gpl2;
-      platforms = [ "i686-linux" "x86_64-linux" ];
+      inherit (vdr.meta) platforms;
     };
 
   };
@@ -165,7 +165,7 @@ in {
       description = "VDR plugin to handle KODI clients.";
       maintainers = [ maintainers.ck3d ];
       license = licenses.gpl2;
-      platforms = [ "i686-linux" "x86_64-linux" ];
+      inherit (vdr.meta) platforms;
     };
 
   };
@@ -201,7 +201,7 @@ in {
       description = "VDR Text2Skin Plugin";
       maintainers = [ maintainers.ck3d ];
       license = licenses.gpl2;
-      platforms = [ "i686-linux" "x86_64-linux" ];
+      inherit (vdr.meta) platforms;
     };
   };
 
@@ -226,7 +226,7 @@ in {
       description = "A plugin for VDR to access AVMs Fritz Box routers";
       maintainers = [ maintainers.ck3d ];
       license = licenses.gpl2;
-      platforms = [ "i686-linux" "x86_64-linux" ];
+      inherit (vdr.meta) platforms;
     };
   };
 }
diff --git a/pkgs/applications/video/vdr/softhddevice/default.nix b/pkgs/applications/video/vdr/softhddevice/default.nix
index 1b7f4128ca61..e09e01d1ea7c 100644
--- a/pkgs/applications/video/vdr/softhddevice/default.nix
+++ b/pkgs/applications/video/vdr/softhddevice/default.nix
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
     description = "VDR SoftHDDevice Plug-in";
     maintainers = [ maintainers.ck3d ];
     license = licenses.gpl2;
-    platforms = [ "i686-linux" "x86_64-linux" ];
+    inherit (vdr.meta) platforms;
   };
 
 }