about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/misc/dtv-scan-tables/default.nix
blob: fdd18cec8df41124ab4ae31d7a211a4d15cbf54d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ 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 ];
  };
}