504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
36 lines
995 B
Nix
36 lines
995 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "blocky";
|
|
version = "0.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "0xERR0R";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-iU7fpTn8sPtglZfqLJ6fVYbHtYp0jqItSpJsvN4iKE8=";
|
|
};
|
|
|
|
# needs network connection and fails at
|
|
# https://github.com/0xERR0R/blocky/blob/development/resolver/upstream_resolver_test.go
|
|
doCheck = false;
|
|
|
|
vendorHash = "sha256-PnqpDAbHCs1wFudYy+nyG+p/E6ig7ZuhbuU4CFFoiyk=";
|
|
|
|
ldflags = [ "-s" "-w" "-X github.com/0xERR0R/blocky/util.Version=${version}" ];
|
|
|
|
passthru.tests = { inherit (nixosTests) blocky; };
|
|
|
|
meta = with lib; {
|
|
description = "Fast and lightweight DNS proxy as ad-blocker for local network with many features.";
|
|
homepage = "https://0xerr0r.github.io/blocky";
|
|
changelog = "https://github.com/0xERR0R/blocky/releases";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ratsclub ];
|
|
mainProgram = "blocky";
|
|
};
|
|
}
|