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

27 lines
742 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libsodium, libevent }:
2015-09-10 19:55:54 +00:00
stdenv.mkDerivation rec {
name = "dnscrypt-wrapper-${version}";
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;
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ libsodium libevent ];
2015-09-10 19:55:54 +00:00
meta = with stdenv.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
};
}