libressl: 2.1.3 -> 2.1.4

This commit is contained in:
William A. Kennington III 2015-03-12 11:37:27 -07:00
parent 42d985df99
commit c32437b16e

View file

@ -2,19 +2,19 @@
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.1.3";
version = "2.1.4";
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
sha256 = "0z2g609526pc8zmz2frkmhlfgvn8cmj5agj5yq5b33s0f44kfbzb";
sha256 = "0km0m4y442gf0sn4g31cljhvfi3l627fw4lljyd12x47j8sqbq78";
};
enableParallelBuilding = true;
meta = {
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington ];
};
}