Merge pull request #156655 from ratsclub/blocky
This commit is contained in:
commit
1106e43829
2 changed files with 34 additions and 0 deletions
30
pkgs/applications/networking/blocky/default.nix
Normal file
30
pkgs/applications/networking/blocky/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "blocky";
|
||||||
|
version = "0.17";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "0xERR0R";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-vG6QAI8gBI2nLRQ0nOFWQHihyzgmJu69rgkWlg3iW3E=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# needs network connection and fails at
|
||||||
|
# https://github.com/0xERR0R/blocky/blob/development/resolver/upstream_resolver_test.go
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-+mpNPDejK9Trhw41SUXJPL/OX5wQR0QfA2+BXSlE0Jk=";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -24447,6 +24447,10 @@ with pkgs;
|
||||||
|
|
||||||
bambootracker = libsForQt5.callPackage ../applications/audio/bambootracker { };
|
bambootracker = libsForQt5.callPackage ../applications/audio/bambootracker { };
|
||||||
|
|
||||||
|
blocky = callPackage ../applications/networking/blocky {
|
||||||
|
buildGoModule = buildGo117Module;
|
||||||
|
};
|
||||||
|
|
||||||
cadence = libsForQt5.callPackage ../applications/audio/cadence { };
|
cadence = libsForQt5.callPackage ../applications/audio/cadence { };
|
||||||
|
|
||||||
cheesecutter = callPackage ../applications/audio/cheesecutter { };
|
cheesecutter = callPackage ../applications/audio/cheesecutter { };
|
||||||
|
|
Loading…
Reference in a new issue