3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/misc/dtv-scan-tables/default.nix
Martin Weinelt b948496d97
dtv-scan-tables: 2020-05-18 -> 2022-10-27
Extracted from tvheadend and exposed as top-level attribute.
2022-12-21 16:58:17 +01:00

33 lines
656 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, v4l-utils
}:
stdenv.mkDerivation rec {
pname = "dtv-scan-tables";
version = "20221027";
src = fetchFromGitHub {
owner = "tvheadend";
repo = "dtv-scan-tables";
rev = "2a3dbfbab129c00d3f131c9c2f06b2be4c06fec6";
hash = "sha256-bJ+naUs3TDFul4PmpnWYld3j1Se+1X6U9jnECe3sno0=";
};
nativeBuildInputs = [
v4l-utils
];
installFlags = [
"DATADIR=$(out)"
];
meta = with lib; {
description = "Digital TV scan tables";
homepage = "https://github.com/tvheadend/dtv-scan-tables";
license = with licenses; [ gpl2Only lgpl21Only ];
maintainers = with maintainers; [ ];
};
}