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

25 lines
706 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libsodium, libevent }:
2015-09-10 20:55:54 +01:00
stdenv.mkDerivation rec {
name = "dnscrypt-wrapper-${version}";
version = "0.2";
src = fetchFromGitHub {
owner = "Cofyc";
repo = "dnscrypt-wrapper";
rev = "v${version}";
sha256 = "06m6p79y0p6f1knk40fbi7dnc5hnq066kafvrq74fxrl51nywjbg";
2015-09-10 20:55:54 +01:00
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ libsodium libevent ];
2015-09-10 20:55:54 +01:00
meta = with stdenv.lib; {
2015-09-10 20:55:54 +01:00
description = "A tool for adding dnscrypt support to any name resolver";
homepage = https://dnscrypt.org/;
license = licenses.gpl2;
maintainers = with maintainers; [ tstrobel joachifm ];
platforms = platforms.linux;
2015-09-10 20:55:54 +01:00
};
}