about summary refs log tree commit diff
path: root/pkgs/data/misc
diff options
context:
space:
mode:
authorYarny0 <41838844+Yarny0@users.noreply.github.com>2024-05-04 08:35:57 +0200
committerYarny0 <41838844+Yarny0@users.noreply.github.com>2024-06-02 16:56:53 +0200
commitf683106052bdd3f4c0d9e630ab8253027a6374ac (patch)
treea2baf1c7846b26ecbc258eac190c3d06b9d39ba1 /pkgs/data/misc
parentad57eef4ef0659193044870c731987a6df5cf56b (diff)
dtv-scan-tables: migrate to `pkgs/by-name` overlay
Diffstat (limited to 'pkgs/data/misc')
-rw-r--r--pkgs/data/misc/dtv-scan-tables/default.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/data/misc/dtv-scan-tables/default.nix b/pkgs/data/misc/dtv-scan-tables/default.nix
deleted file mode 100644
index fdd18cec8df41..0000000000000
--- a/pkgs/data/misc/dtv-scan-tables/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-, v4l-utils
-}:
-
-stdenv.mkDerivation rec {
-  pname = "dtv-scan-tables";
-  version = "2022-04-30-57ed29822750";
-
-  src = fetchurl {
-    url = "https://linuxtv.org/downloads/${pname}/${pname}-${version}.tar.bz2";
-    hash = "sha256-amJoqjkkWTePo6E5IvwBWj+mP/gi9LDWTTPXE1Cm7J4=";
-  };
-
-  nativeBuildInputs = [
-    v4l-utils
-  ];
-
-  sourceRoot = "usr/share/dvb";
-
-  makeFlags = [
-    "PREFIX=$(out)"
-  ];
-
-  allowedReferences = [ ];
-
-  meta = with lib; {
-    # git repo with current revision is here:
-    #downloadPage = "https://git.linuxtv.org/dtv-scan-tables.git";
-    # Weekly releases are supposed to be here
-    downloadPage = "https://linuxtv.org/downloads/dtv-scan-tables/";
-    # but sometimes they lag behind several weeks or even months.
-    description = "Digital TV (DVB) channel/transponder scan tables";
-    homepage = "https://www.linuxtv.org/wiki/index.php/Dtv-scan-tables";
-    license = with licenses; [ gpl2Only lgpl21Only ];
-    longDescription = ''
-      When scanning for dvb channels,
-      most applications require an initial set of
-      transponder coordinates (frequencies etc.).
-      These coordinates differ, depending of the
-      receiver's location or on the satellite.
-      The package delivers a collection of transponder
-      tables ready to be used by software like "dvbv5-scan".
-    '';
-    maintainers = with maintainers; [ yarny ];
-  };
-}