mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 02:57:36 +00:00
routedns: init at 0.1.5
Signed-off-by: Jeroen Simonetti <jeroen@simonetti.nl>
This commit is contained in:
parent
88e182b3bf
commit
766a719557
29
pkgs/tools/networking/routedns/default.nix
Normal file
29
pkgs/tools/networking/routedns/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "routedns";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "folbricht";
|
||||
repo = "routedns";
|
||||
# https://github.com/folbricht/routedns/issues/237
|
||||
rev = "02f14a567fee2a289810979446f5260b8a31bf73";
|
||||
sha256 = "sha256-oImimNBz1qizUPD6qHi73fGKNCu5cii99GIUo21e+bs=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-T6adpxJgOPGy+UOOlGAAf1gjk1wJxwOc9enfv9X3LBE=";
|
||||
|
||||
subPackages = [ "./cmd/routedns" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/folbricht/routedns";
|
||||
description = "DNS stub resolver, proxy and router";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jsimonetti ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -29621,6 +29621,10 @@ with pkgs;
|
||||
|
||||
robustirc-bridge = callPackage ../servers/irc/robustirc-bridge { };
|
||||
|
||||
routedns = callPackage ../tools/networking/routedns {
|
||||
buildGoModule = buildGo118Module;
|
||||
};
|
||||
|
||||
skrooge = libsForQt5.callPackage ../applications/office/skrooge {};
|
||||
|
||||
smartgithg = callPackage ../applications/version-management/smartgithg {
|
||||
|
Loading…
Reference in New Issue
Block a user