nixpkgs/pkgs/development/libraries/libressl/default.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, lib }:
let
generic = { version, sha256 }: stdenv.mkDerivation rec {
name = "libressl-${version}";
inherit version;
src = fetchurl {
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
inherit sha256;
};
2018-04-28 01:33:05 +01:00
configureFlags = [ "--enable-nc" ];
enableParallelBuilding = true;
outputs = [ "bin" "dev" "out" "man" "nc" ];
postFixup = ''
moveToOutput "bin/nc" "$nc"
2018-04-29 21:14:34 +01:00
moveToOutput "share/man/man1/nc.1${lib.optionalString (dontGzipMan==null) ".gz"}" "$nc"
'';
dontGzipMan = if stdenv.isDarwin then true else null; # not sure what's wrong
meta = with lib; {
description = "Free TLS/SSL implementation";
2018-05-13 14:26:34 +01:00
homepage = "https://www.libressl.org";
2018-08-17 21:15:45 +01:00
license = with licenses; [ publicDomain bsdOriginal bsd0 bsd3 gpl3 isc ];
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
};
in {
2018-05-13 14:25:24 +01:00
libressl_2_7 = generic {
2018-12-17 22:56:08 +00:00
version = "2.7.5";
sha256 = "0h60bcx7k72171dwpx4vsbsrxxz9c18v75lh5fj600gghn6h7rdy";
2018-05-13 14:25:24 +01:00
};
libressl_2_8 = generic {
2018-12-17 22:57:13 +00:00
version = "2.8.3";
sha256 = "0xw4z4z6m7lyf1r4m2w2w1k7as791c04ygnfk4d7d0ki0h9hnr4v";
};
2018-12-17 22:59:24 +00:00
libressl_2_9 = generic {
version = "2.9.0";
sha256 = "1x1wl6b449m6hfhyxxzxbf2v8yfb5q92q6d01hdg28xp1222jpzb";
};
}