stubby: init at 0.2.2

+37
+35
pkgs/tools/networking/stubby/default.nix
··· 1 + { stdenv, fetchFromGitHub, getdns, libtool, m4, file , doxygen 2 + , autoreconfHook, automake, check, libbsd, libyaml, darwin }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "stubby"; 6 + name = "${pname}-${version}"; 7 + version = "0.2.2"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "getdnsapi"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + sha256 = "1zq7h3jx6v821phcbjp348ncdicx9s4gqkj7mcz8kd6ps902iag8"; 14 + }; 15 + 16 + nativeBuildInputs = [ libtool m4 libbsd libyaml autoreconfHook ]; 17 + 18 + buildInputs = [ doxygen getdns automake file check ] 19 + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.Security ]; 20 + 21 + meta = with stdenv.lib; { 22 + description = "A local DNS Privacy stub resolver (using DNS-over-TLS)"; 23 + longDescription = '' 24 + Stubby is an application that acts as a local DNS Privacy stub 25 + resolver (using RFC 7858, aka DNS-over-TLS). Stubby encrypts DNS 26 + queries sent from a client machine (desktop or laptop) to a DNS 27 + Privacy resolver increasing end user privacy. Stubby is developed by 28 + the getdns team. 29 + ''; 30 + homepage = https://dnsprivacy.org/wiki/x/JYAT; 31 + downloadPage = "https://github.com/getdnsapi/stubby"; 32 + maintainers = with maintainers; [ leenaars ]; 33 + license = licenses.bsd3; platforms = platforms.all; 34 + }; 35 + }
+2
pkgs/top-level/all-packages.nix
··· 4781 4781 4782 4782 storebrowse = callPackage ../tools/system/storebrowse { }; 4783 4783 4784 + stubby = callPackage ../tools/networking/stubby { }; 4785 + 4784 4786 syntex = callPackage ../tools/graphics/syntex {}; 4785 4787 4786 4788 fusesmb = callPackage ../tools/filesystems/fusesmb { samba = samba3; };