dnscrypt-proxy: new expression
This commit is contained in:
parent
db4053fb59
commit
216ed76821
3 changed files with 22 additions and 0 deletions
|
@ -80,6 +80,7 @@
|
|||
jcumming = "Jack Cummings <jack@mudshark.org>";
|
||||
jgeerds = "Jascha Geerds <jg@ekby.de>";
|
||||
jirkamarsik = "Jirka Marsik <jiri.marsik89@gmail.com>";
|
||||
joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
|
||||
joamaki = "Jussi Maki <joamaki@gmail.com>";
|
||||
joelteon = "Joel Taylor <me@joelt.io>";
|
||||
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
||||
|
|
19
pkgs/tools/networking/dnscrypt-proxy/default.nix
Normal file
19
pkgs/tools/networking/dnscrypt-proxy/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl, libsodium }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dnscrypt-proxy-1.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
|
||||
sha256 = "00cf5c520c8a5a71ad4916b33aa0c8f9f55434039304f4ba10d7fffc620563f8";
|
||||
};
|
||||
|
||||
buildInputs = [ libsodium ];
|
||||
|
||||
meta = {
|
||||
description = "A DNS proxy which encrypts and authenticates requests using the DNSCrypt protocol.";
|
||||
homepage = http://dnscrypt.org/;
|
||||
license = with stdenv.lib.licenses; [ isc ];
|
||||
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
||||
};
|
||||
}
|
|
@ -977,6 +977,8 @@ let
|
|||
|
||||
dev86 = callPackage ../development/compilers/dev86 { };
|
||||
|
||||
dnscrypt-proxy = callPackage ../tools/networking/dnscrypt-proxy { };
|
||||
|
||||
dnsmasq = callPackage ../tools/networking/dnsmasq { };
|
||||
|
||||
dnstop = callPackage ../tools/networking/dnstop { };
|
||||
|
|
Loading…
Reference in a new issue