mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
stubby: 0.2.6 -> 0.3.0
This commit is contained in:
parent
920165076b
commit
ea15605aaa
@ -1,20 +1,19 @@
|
||||
{ stdenv, fetchFromGitHub, getdns, libtool, m4, file , doxygen
|
||||
, autoreconfHook, automake, check, libbsd, libyaml, darwin }:
|
||||
{ stdenv, fetchFromGitHub, getdns, doxygen, libyaml, darwin, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stubby";
|
||||
version = "0.2.6";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "getdnsapi";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "164gm5cbnq785s78bqmbsgxrxkq8hw930xwkxxzi1f6jgz928dnf";
|
||||
sha256 = "04izd1v4fv9l7r75aafkrp6svczbx4cvv1vnfyx5n9105pin11mx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ libtool m4 libbsd libyaml autoreconfHook ];
|
||||
nativeBuildInputs = [ cmake libyaml ];
|
||||
|
||||
buildInputs = [ doxygen getdns automake file check ]
|
||||
buildInputs = [ doxygen getdns ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
@ -25,10 +24,10 @@ stdenv.mkDerivation rec {
|
||||
queries sent from a client machine (desktop or laptop) to a DNS
|
||||
Privacy resolver increasing end user privacy. Stubby is developed by
|
||||
the getdns team.
|
||||
'';
|
||||
homepage = https://dnsprivacy.org/wiki/x/JYAT;
|
||||
'';
|
||||
homepage = "https://dnsprivacy.org/wiki/x/JYAT";
|
||||
downloadPage = "https://github.com/getdnsapi/stubby";
|
||||
maintainers = with maintainers; [ leenaars ];
|
||||
maintainers = with maintainers; [ leenaars ehmry ];
|
||||
license = licenses.bsd3; platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user