2016-03-12 17:59:17 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libsodium, libevent }:
|
2015-09-10 19:55:54 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "dnscrypt-wrapper-${version}";
|
2016-06-14 12:22:18 +00:00
|
|
|
version = "0.2.1";
|
2015-09-10 19:55:54 +00:00
|
|
|
|
2016-03-12 17:59:17 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Cofyc";
|
|
|
|
repo = "dnscrypt-wrapper";
|
|
|
|
rev = "v${version}";
|
2016-06-14 12:22:18 +00:00
|
|
|
sha256 = "0gysylchvmxvqd4ims2cf2610vmxl80wlk62jhsv13p94yvrl53b";
|
2015-09-10 19:55:54 +00:00
|
|
|
};
|
|
|
|
|
2016-03-12 17:59:17 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
buildInputs = [ libsodium libevent ];
|
2015-09-10 19:55:54 +00:00
|
|
|
|
2016-03-12 17:59:17 +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";
|
2016-03-12 17:59:17 +00:00
|
|
|
homepage = https://dnscrypt.org/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tstrobel joachifm ];
|
|
|
|
platforms = platforms.linux;
|
2015-09-10 19:55:54 +00:00
|
|
|
};
|
|
|
|
}
|