summary refs log blame commit diff
path: root/pkgs/tools/networking/dnscrypt-proxy2/default.nix
blob: b82f1e7bb4bb670beffc5662b2f75072b67ae3e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                            
                            
                     





                                                       
                  
                                                                    


                           
                                                               


                                      
                                                    


                                     
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "dnscrypt-proxy2";
  version = "2.0.42";

  goPackagePath = "github.com/jedisct1/dnscrypt-proxy";

  src = fetchFromGitHub {
    owner = "jedisct1";
    repo = "dnscrypt-proxy";
    rev = version;
    sha256 = "1v4n0pkwcilxm4mnj4fsd4gf8pficjj40jnmfkiwl7ngznjxwkyw";
  };

  meta = with stdenv.lib; {
    description = "A tool that provides secure DNS resolution";

    license = licenses.isc;
    homepage = https://dnscrypt.info/;
    maintainers = with maintainers; [ atemu waynr ];
    platforms = with platforms; unix;
  };
}