nixpkgs/pkgs/development/ocaml-modules/tls/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1019 B
Nix
Raw Normal View History

2021-06-07 16:47:03 +00:00
{ lib, fetchurl, buildDunePackage
, cstruct, domain-name, fmt, logs, hkdf, mirage-crypto, mirage-crypto-ec, mirage-crypto-pk, mirage-crypto-rng, lwt, ptime, x509
, ipaddr
2021-06-07 18:04:47 +00:00
, alcotest, cstruct-unix, ounit2, randomconv
2021-06-07 16:47:03 +00:00
}:
2016-11-03 00:23:53 +00:00
buildDunePackage rec {
pname = "tls";
version = "0.17.1";
2016-11-03 00:23:53 +00:00
src = fetchurl {
url = "https://github.com/mirleft/ocaml-tls/releases/download/v${version}/tls-${version}.tbz";
hash = "sha256-gBDStt4UjaIoaSgYHSM71yD6YPoVez1CULyg3QCMXT8=";
2016-11-03 00:23:53 +00:00
};
2023-01-13 13:40:29 +00:00
minimalOCamlVersion = "4.08";
2016-11-03 00:23:53 +00:00
2021-06-07 16:47:03 +00:00
propagatedBuildInputs = [
cstruct
domain-name
fmt
logs
hkdf
mirage-crypto
mirage-crypto-ec
mirage-crypto-pk
mirage-crypto-rng
lwt
2021-06-07 16:47:03 +00:00
ptime
x509
ipaddr
2021-06-07 16:47:03 +00:00
];
2021-06-07 16:47:03 +00:00
doCheck = true;
checkInputs = [
2021-06-07 16:47:03 +00:00
alcotest
cstruct-unix
ounit2
2021-06-07 18:04:47 +00:00
randomconv
2021-06-07 16:47:03 +00:00
];
2016-11-03 00:23:53 +00:00
2020-05-12 16:38:19 +00:00
meta = with lib; {
homepage = "https://github.com/mirleft/ocaml-tls";
2016-11-03 00:23:53 +00:00
description = "TLS in pure OCaml";
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
};
}