mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 23:52:33 +00:00
ae67c0026c
https://github.com/jedisct1/dnscrypt-proxy/releases/tag/2.0.25 https://github.com/jedisct1/dnscrypt-proxy/releases/tag/2.0.24 https://github.com/jedisct1/dnscrypt-proxy/releases/tag/2.0.23
25 lines
601 B
Nix
25 lines
601 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "dnscrypt-proxy2";
|
|
version = "2.0.25";
|
|
|
|
goPackagePath = "github.com/jedisct1/dnscrypt-proxy";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jedisct1";
|
|
repo = "dnscrypt-proxy";
|
|
rev = version;
|
|
sha256 = "1ix76nihzjbiib7n2pjx2ynziz8hrrx3idwdjnkwckxfq11g96y3";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool that provides secure DNS resolution";
|
|
|
|
license = licenses.isc;
|
|
homepage = https://dnscrypt.info/;
|
|
maintainers = with maintainers; [ waynr ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|