1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libressl/default.nix

21 lines
504 B
Nix
Raw Normal View History

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