nixpkgs/pkgs/by-name/w_/w_scan2/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
634 B
Nix
Raw Normal View History

2023-01-30 18:31:58 +00:00
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
pname = "w_scan2";
2024-01-02 21:14:31 +00:00
version = "1.0.15";
2023-01-30 18:31:58 +00:00
src = fetchFromGitHub {
owner = "stefantalpalaru";
repo = "w_scan2";
rev = version;
2024-01-02 21:14:31 +00:00
hash = "sha256-ToD02W9H9HqddhpZsQm2Uzy/cVtv4KnfYmpCl2KEGSY=";
2023-01-30 18:31:58 +00:00
};
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;
2023-11-27 01:17:53 +00:00
mainProgram = "w_scan2";
2023-01-30 18:31:58 +00:00
};
}