mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
27 lines
636 B
Nix
27 lines
636 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 = "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;
|
|
mainProgram = "w_scan2";
|
|
};
|
|
}
|