mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
45ec5898cb
was ts468 on github afaict and was actually a committer, but that account hasn't been active since early 2018
27 lines
725 B
Nix
27 lines
725 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libsodium, libevent }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dnscrypt-wrapper";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Cofyc";
|
|
repo = "dnscrypt-wrapper";
|
|
rev = "v${version}";
|
|
sha256 = "055vxpcfg80b1456p6p0p236pwykknph9x3c9psg8ya3i8qqywkl";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
buildInputs = [ libsodium libevent ];
|
|
|
|
meta = with lib; {
|
|
description = "A tool for adding dnscrypt support to any name resolver";
|
|
homepage = "https://dnscrypt.info/";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ joachifm ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|