summary refs log tree commit diff
path: root/pkgs/development/libraries/libressl/default.nix
blob: f77e9a313775460bccd7a31bdf01a4ce1e64a9da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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 ];
  };
}