nixpkgs/pkgs/development/libraries/libressl/default.nix
Austin Seipp 0aa8cdcef9 nixpkgs: libressl 2.0.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-08-20 00:51:15 -05:00

21 lines
522 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.0.5";
src = fetchurl {
url = "http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${name}.tar.gz";
sha256 = "16pwgmj90k10pf03il39lnck5kqw59hj0fp2qhmgsgmrvssn6m1z";
};
enableParallelBuilding = true;
meta = {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}