about summary refs log tree commit diff
path: root/pkgs/applications/networking/blocky
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-04-02 03:05:17 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-04-02 03:06:37 +0200
commitfea33a101ee59d5a42db51646719e46b56c19aa7 (patch)
treee6ee5c5c10e2ed0e41bdaad963d9b11a27e4301c /pkgs/applications/networking/blocky
parentff40c8086733f2104d416b6ffd4770068a1fd43f (diff)
blocky: 0.20 -> 0.21
Diff: https://github.com/0xERR0R/blocky/compare/v0.20...v0.21

Changelog: https://github.com/0xERR0R/blocky/releases
Diffstat (limited to 'pkgs/applications/networking/blocky')
-rw-r--r--pkgs/applications/networking/blocky/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/blocky/default.nix b/pkgs/applications/networking/blocky/default.nix
index 5b2effb2ca9e2..b18fa340b8dc1 100644
--- a/pkgs/applications/networking/blocky/default.nix
+++ b/pkgs/applications/networking/blocky/default.nix
@@ -6,23 +6,25 @@
 
 buildGoModule rec {
   pname = "blocky";
-  version = "0.20";
+  version = "0.21";
 
   src = fetchFromGitHub {
     owner = "0xERR0R";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-l2GhqJit/+WpNDICD/NUzCAGrKrTNHzEzgpF9k3+DLk=";
+    sha256 = "sha256-+88QMASMEY1pJuejFUqqW1Ky7TpoSwCzUy1oueL7FKU=";
   };
 
   # needs network connection and fails at
   # https://github.com/0xERR0R/blocky/blob/development/resolver/upstream_resolver_test.go
   doCheck = false;
 
-  vendorSha256 = "sha256-CS8+tsE5dptG9gF46OFoJGzn1FnfjekXLTLrpwIQdFQ=";
+  vendorSha256 = "sha256-EsANifwaEi5PdY0Y2QZjD55sZqsqYWrC5Vh4uxpTs5A=";
 
   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";
@@ -30,6 +32,4 @@ buildGoModule rec {
     license = licenses.asl20;
     maintainers = with maintainers; [ ratsclub ];
   };
-
-  passthru.tests = { inherit (nixosTests) blocky; };
 }