depot/third_party/nixpkgs/pkgs/applications/video/w_scan2/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
634 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
pname = "w_scan2";
version = "1.0.15";
src = fetchFromGitHub {
owner = "stefantalpalaru";
repo = "w_scan2";
rev = version;
hash = "sha256-ToD02W9H9HqddhpZsQm2Uzy/cVtv4KnfYmpCl2KEGSY=";
};
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";
};
}