From bd7a4f185b68e956215e90d952929d6d6a6ce276 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Thu, 27 Jul 2023 10:05:43 +1000 Subject: [PATCH] hosts-bl: init at 0-unstable-2024-11-17 --- pkgs/by-name/ho/hosts-bl/package.nix | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/by-name/ho/hosts-bl/package.nix diff --git a/pkgs/by-name/ho/hosts-bl/package.nix b/pkgs/by-name/ho/hosts-bl/package.nix new file mode 100644 index 000000000000..c7b06afecd17 --- /dev/null +++ b/pkgs/by-name/ho/hosts-bl/package.nix @@ -0,0 +1,32 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, +}: + +buildGoModule rec { + pname = "hosts-bl"; + version = "0-unstable-2024-11-17"; + + src = fetchFromGitHub { + owner = "ScriptTiger"; + repo = "Hosts-BL"; + rev = "b3ac0a50fce8e714e754a17e6a11f8709386782c"; + sha256 = "sha256-w+4dEWwFMjBbeJPOqMrzLBBzPYh/V5SfV2BMrI0p3nw="; + }; + + postPatch = '' + go mod init github.com/ScriptTiger/Hosts-BL + ''; + + vendorHash = null; + + meta = { + homepage = "https://github.com/ScriptTiger/Hosts-BL"; + description = "Simple tool to handle hosts file black lists"; + mainProgram = "Hosts-BL"; + maintainers = [ lib.maintainers.puffnfresh ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + }; +}