Merge pull request #89908 from zowoq/dnscrypt-proxy

dnscrypt-proxy2: 2.0.42 -> 2.0.43
This commit is contained in:
Mario Rodas 2020-06-10 05:47:23 -05:00 committed by GitHub
commit d2d9ce8ca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,16 @@
{ stdenv, buildGoPackage, fetchFromGitHub }: { stdenv, buildGoModule, fetchFromGitHub }:
buildGoPackage rec { buildGoModule rec {
pname = "dnscrypt-proxy2"; pname = "dnscrypt-proxy2";
version = "2.0.42"; version = "2.0.43";
goPackagePath = "github.com/jedisct1/dnscrypt-proxy"; vendorSha256 = null;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jedisct1"; owner = "DNSCrypt";
repo = "dnscrypt-proxy"; repo = "dnscrypt-proxy";
rev = version; rev = version;
sha256 = "1v4n0pkwcilxm4mnj4fsd4gf8pficjj40jnmfkiwl7ngznjxwkyw"; sha256 = "1c12y8h7dww72a3agb74vr5fzxzy6k8394rdbgz9knk82fdwah1c";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {