ocamlPackages.tls-mirage: init at 0.12.8
This commit is contained in:
parent
25ab7218c8
commit
6aef21c314
pkgs
29
pkgs/development/ocaml-modules/tls/mirage.nix
Normal file
29
pkgs/development/ocaml-modules/tls/mirage.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ buildDunePackage, tls
|
||||||
|
, x509, lwt, fmt, mirage-flow, mirage-kv, mirage-clock, ptime
|
||||||
|
, mirage-crypto, mirage-crypto-pk, hacl_x25519, fiat-p256
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage {
|
||||||
|
pname = "tls-mirage";
|
||||||
|
|
||||||
|
inherit (tls) version src useDune2 minimumOCamlVersion;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
tls
|
||||||
|
x509
|
||||||
|
lwt
|
||||||
|
fmt
|
||||||
|
mirage-flow
|
||||||
|
mirage-kv
|
||||||
|
mirage-clock
|
||||||
|
ptime
|
||||||
|
mirage-crypto
|
||||||
|
mirage-crypto-pk
|
||||||
|
hacl_x25519
|
||||||
|
fiat-p256
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = tls.meta // {
|
||||||
|
description = "Transport Layer Security purely in OCaml, MirageOS layer";
|
||||||
|
};
|
||||||
|
}
|
@ -903,6 +903,8 @@ let
|
|||||||
|
|
||||||
tls = callPackage ../development/ocaml-modules/tls { };
|
tls = callPackage ../development/ocaml-modules/tls { };
|
||||||
|
|
||||||
|
tls-mirage = callPackage ../development/ocaml-modules/tls/mirage.nix { };
|
||||||
|
|
||||||
torch = callPackage ../development/ocaml-modules/torch {
|
torch = callPackage ../development/ocaml-modules/torch {
|
||||||
inherit (pkgs.python3Packages) pytorch;
|
inherit (pkgs.python3Packages) pytorch;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user