Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
633 B
Nix
27 lines
633 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "w_scan2";
|
|
version = "1.0.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stefantalpalaru";
|
|
repo = "w_scan2";
|
|
rev = version;
|
|
hash = "sha256-2wtH7mb6XfgLHr0vDVTZwoYxpSTM5N8Y/vi0YWN6MUE=";
|
|
};
|
|
|
|
meta = {
|
|
description = "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;
|
|
mainProgram = "w_scan2";
|
|
};
|
|
}
|