nixpkgs/pkgs/tools/networking/routedns/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
640 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "routedns";
2023-11-04 19:10:41 +00:00
version = "0.1.51";
src = fetchFromGitHub {
owner = "folbricht";
repo = "routedns";
2023-05-01 04:20:00 +00:00
rev = "v${version}";
2023-11-04 19:10:41 +00:00
hash = "sha256-9H/l6EAbrNwD2DnweBqjmcoaJEnTH9BdGn2x/ZC3us4=";
};
2023-11-04 19:10:41 +00:00
vendorHash = "sha256-yOYeMYAXa1jok8QwGtYsvuUGgIXEjZGo6+FiDQkZwUU=";
subPackages = [ "./cmd/routedns" ];
2023-05-01 04:20:00 +00:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/folbricht/routedns";
description = "DNS stub resolver, proxy and router";
license = licenses.bsd3;
maintainers = with maintainers; [ jsimonetti ];
};
}