nixpkgs/pkgs/tools/networking/dnscrypt-wrapper/default.nix

27 lines
734 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libsodium, libevent }:
2015-09-10 19:55:54 +00:00
stdenv.mkDerivation rec {
pname = "dnscrypt-wrapper";
version = "0.4.2";
2015-09-10 19:55:54 +00:00
src = fetchFromGitHub {
owner = "Cofyc";
repo = "dnscrypt-wrapper";
rev = "v${version}";
sha256 = "055vxpcfg80b1456p6p0p236pwykknph9x3c9psg8ya3i8qqywkl";
2015-09-10 19:55:54 +00:00
};
2017-08-29 19:30:55 +00:00
enableParallelBuilding = true;
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ libsodium libevent ];
2015-09-10 19:55:54 +00:00
meta = with lib; {
2015-09-10 19:55:54 +00:00
description = "A tool for adding dnscrypt support to any name resolver";
homepage = "https://dnscrypt.info/";
license = licenses.isc;
maintainers = with maintainers; [ tstrobel joachifm ];
platforms = platforms.linux;
2015-09-10 19:55:54 +00:00
};
}