2023-02-02 18:25:31 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "w_scan2";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "1.0.15";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stefantalpalaru";
|
|
|
|
repo = "w_scan2";
|
|
|
|
rev = version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-ToD02W9H9HqddhpZsQm2Uzy/cVtv4KnfYmpCl2KEGSY=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A small channel scan tool which generates ATSC, DVB-C, DVB-S/S2 and DVB-T/T2 channels.conf files";
|
|
|
|
homepage = "https://github.com/stefantalpalaru/w_scan2";
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ _0x4A6F ] ;
|
|
|
|
license = lib.licenses.gpl2Only;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "w_scan2";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
}
|