Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
713 B
Nix
33 lines
713 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule {
|
|
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;
|
|
};
|
|
}
|