ad5271a331
* ocamlPackages.x509: 0.14.1 -> 0.15.2 https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.0 https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.1 https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.2 * ocamlPackages.awa*: 0.0.4 -> 0.0.5 https://github.com/mirage/awa-ssh/releases/tag/v0.0.5 * ocamlPackages.tls*: 0.14.1 -> 0.15.2 https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.0 https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.1 https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.2 * jackline: unstable-2021-08-10 -> unstable-2021-12-28 * ocamlPackages.ca-certs-nss: 3.66 -> 3.71.0.1 https://github.com/mirage/ca-certs-nss/releases/tag/v3.71 https://github.com/mirage/ca-certs-nss/releases/tag/v3.71.0.1 * ocamlPackages.conduit*: 4.0.1 -> 4.0.2 https://github.com/mirage/ocaml-conduit/releases/tag/v4.0.2 * ocamlPackages.letsencrypt*: 0.3.0 -> 0.4.1 https://github.com/mmaker/ocaml-letsencrypt/releases/tag/v0.4.0 https://github.com/mmaker/ocaml-letsencrypt/releases/tag/v0.4.1 * ocamlPackages.paf: 0.0.5 -> 0.0.6 https://github.com/dinosaure/paf-le-chien/releases/tag/0.0.6
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, buildDunePackage, fetchurl
|
|
, ppx_sexp_conv, ppx_cstruct
|
|
, mirage-crypto, mirage-crypto-rng, mirage-crypto-pk
|
|
, x509, cstruct, cstruct-unix, cstruct-sexp, sexplib, eqaf
|
|
, rresult, mtime, logs, fmt, cmdliner, base64, hacl_x25519
|
|
, zarith
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "awa";
|
|
version = "0.0.5";
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz";
|
|
sha256 = "14hqzmikp3hlynhs0wnwj2491106if183swsl7ldk4215a0b7ms4";
|
|
};
|
|
|
|
nativeBuildInputs = [ ppx_cstruct ];
|
|
|
|
propagatedBuildInputs = [
|
|
mirage-crypto mirage-crypto-rng mirage-crypto-pk x509
|
|
cstruct cstruct-sexp sexplib mtime
|
|
logs base64 hacl_x25519 zarith
|
|
ppx_sexp_conv eqaf
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ cstruct-unix cmdliner fmt ];
|
|
|
|
meta = with lib; {
|
|
description = "SSH implementation in OCaml";
|
|
license = licenses.isc;
|
|
homepage = "https://github.com/mirage/awa-ssh";
|
|
changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md";
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|