3
0
Fork 0
forked from mirrors/nixpkgs

tinc: update to 1.0.21 (fixes CVE-2013-1428) (merge #545)

This commit is contained in:
Ricardo M. Correia 2013-05-20 17:01:28 +02:00 committed by Vladimír Čunát
parent 541f2ad531
commit 84e69bf619

View file

@ -1,12 +1,12 @@
{stdenv, fetchurl, lzo, openssl, zlib}:
stdenv.mkDerivation rec {
version = "1.0.19";
version = "1.0.21";
name = "tinc-${version}";
src = fetchurl {
url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
sha256 = "183nxj23d05vc3pxwbb692lr048wr81wnv0avzlkdm4r6c3bp7jh";
sha256 = "12v1x9p4f8y9967ypwxhkr10q6pk4cdallr0k4lic0kcfsmmxhba";
};
buildInputs = [ lzo openssl zlib ];