routedns: 0.1.5 -> 0.1.20
This commit is contained in:
parent
103897b4fc
commit
34b609f367
2 changed files with 7 additions and 7 deletions
|
@ -5,25 +5,25 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "routedns";
|
pname = "routedns";
|
||||||
version = "0.1.5";
|
version = "0.1.20";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "folbricht";
|
owner = "folbricht";
|
||||||
repo = "routedns";
|
repo = "routedns";
|
||||||
# https://github.com/folbricht/routedns/issues/237
|
rev = "v${version}";
|
||||||
rev = "02f14a567fee2a289810979446f5260b8a31bf73";
|
hash = "sha256-whMSqGsZTr6tj9jbUzkNanR69xfmvXC257DsHooqlkE=";
|
||||||
sha256 = "sha256-oImimNBz1qizUPD6qHi73fGKNCu5cii99GIUo21e+bs=";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-T6adpxJgOPGy+UOOlGAAf1gjk1wJxwOc9enfv9X3LBE=";
|
vendorHash = "sha256-XqrV/eBpKzFgNSG9yoP8iqzIEifXEMOCCfPbHo3YKZw=";
|
||||||
|
|
||||||
subPackages = [ "./cmd/routedns" ];
|
subPackages = [ "./cmd/routedns" ];
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/folbricht/routedns";
|
homepage = "https://github.com/folbricht/routedns";
|
||||||
description = "DNS stub resolver, proxy and router";
|
description = "DNS stub resolver, proxy and router";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ jsimonetti ];
|
maintainers = with maintainers; [ jsimonetti ];
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33907,7 +33907,7 @@ with pkgs;
|
||||||
robustirc-bridge = callPackage ../servers/irc/robustirc-bridge { };
|
robustirc-bridge = callPackage ../servers/irc/robustirc-bridge { };
|
||||||
|
|
||||||
routedns = callPackage ../tools/networking/routedns {
|
routedns = callPackage ../tools/networking/routedns {
|
||||||
buildGoModule = buildGo118Module; # build fails with 1.19
|
buildGoModule = buildGo119Module; # build fails with 1.20
|
||||||
};
|
};
|
||||||
|
|
||||||
skrooge = libsForQt5.callPackage ../applications/office/skrooge { };
|
skrooge = libsForQt5.callPackage ../applications/office/skrooge { };
|
||||||
|
|
Loading…
Reference in a new issue