biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / w_scan2 / default.nix
blobe20330d0ea3b8d4fb706241218006c79ced403a5
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "w_scan2";
9   version = "1.0.15";
11   src = fetchFromGitHub {
12     owner = "stefantalpalaru";
13     repo = "w_scan2";
14     rev = version;
15     hash = "sha256-ToD02W9H9HqddhpZsQm2Uzy/cVtv4KnfYmpCl2KEGSY=";
16   };
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   };