nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 540955fc5876c64dd5b896ddef120327b7778a3a
parent 663cc4dcdc4afe2b13b366fcd8ac96b7e078e146
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Sat,  5 Sep 2026 15:05:40 +0400

Drop dns-filter

Diffstat:
Dpkgs/by-name/dn/dns-filter/package.nix | 42------------------------------------------
1 file changed, 0 insertions(+), 42 deletions(-)

diff --git a/pkgs/by-name/dn/dns-filter/package.nix b/pkgs/by-name/dn/dns-filter/package.nix @@ -1,42 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, -}: - -stdenv.mkDerivation { - pname = "dns-filter"; - version = "0-unstable-2021-04-14"; - - __structuredAttrs = true; - - src = fetchFromGitHub { - owner = "depler"; - repo = "dns-filter"; - rev = "f2e9c9b451cc4caa52e61b464f73c166313fc8b6"; - hash = "sha256-WK3xlJFlYc6u03+6HSoyBaoC9VtD/i7cP1+oqpH/sfE="; - }; - - postPatch = '' - substituteInPlace build.sh --replace-fail "gcc" "cc" - ''; - - buildPhase = '' - sh ./build.sh - ''; - - env.NIX_CFLAGS_COMPILE = "-Wno-error=int-conversion -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types"; - - installPhase = '' - install -Dm755 dns-filter -t $out/bin - install -Dm644 *.txt -t $out/share/dns-filter - ''; - - meta = { - description = "Tiny DNS server with filtering requests"; - homepage = "https://github.com/depler/dns-filter"; - license = lib.licenses.free; - maintainers = [ lib.maintainers.sikmir ]; - platforms = lib.platforms.unix; - }; -}