mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
Merge pull request #143650 from figsoda/dnsproxy-version
dnsproxy: fix version output
This commit is contained in:
commit
a9fb0ef146
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dnsproxy";
|
||||
|
@ -13,12 +13,14 @@ buildGoModule rec {
|
|||
|
||||
vendorSha256 = null;
|
||||
|
||||
ldflags = [ "-s" "-w" "-X" "main.VersionString=${version}" ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
|
||||
homepage = "https://github.com/AdguardTeam/dnsproxy";
|
||||
license = licenses.gpl3;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ contrun ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue