1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "w_scan2";
9 version = "1.0.17";
10
11 src = fetchFromGitHub {
12 owner = "stefantalpalaru";
13 repo = "w_scan2";
14 rev = version;
15 hash = "sha256-2wtH7mb6XfgLHr0vDVTZwoYxpSTM5N8Y/vi0YWN6MUE=";
16 };
17
18 meta = {
19 description = "Small channel scan tool which generates ATSC, DVB-C, DVB-S/S2 and DVB-T/T2 channels.conf files";
20 homepage = "https://github.com/stefantalpalaru/w_scan2";
21 platforms = lib.platforms.linux;
22 maintainers = with lib.maintainers; [ _0x4A6F ];
23 license = lib.licenses.gpl2Only;
24 mainProgram = "w_scan2";
25 };
26}