about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/routedns/default.nix
blob: 4cf2c9eeeed8b97150cc97a321917d807ba61d27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
  };
}