2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl
|
2023-10-09 19:29:22 +00:00
|
|
|
, ppx_sexp_conv
|
2022-07-14 12:49:19 +00:00
|
|
|
, mirage-crypto, mirage-crypto-ec, mirage-crypto-rng, mirage-crypto-pk
|
2021-12-30 13:39:12 +00:00
|
|
|
, x509, cstruct, cstruct-unix, cstruct-sexp, sexplib, eqaf
|
2022-07-14 12:49:19 +00:00
|
|
|
, rresult, mtime, logs, fmt, cmdliner, base64
|
2021-02-05 17:12:51 +00:00
|
|
|
, zarith
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "awa";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.3.0";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
minimalOCamlVersion = "4.10";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-12-30 13:39:12 +00:00
|
|
|
url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz";
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-BtbReSnnAN+u1Vy63afO1yheoDqsIRU2rig0y1QDtuw=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2022-07-14 12:49:19 +00:00
|
|
|
mirage-crypto mirage-crypto-ec mirage-crypto-rng mirage-crypto-pk x509
|
2021-12-06 16:07:01 +00:00
|
|
|
cstruct cstruct-sexp sexplib mtime
|
2022-07-14 12:49:19 +00:00
|
|
|
logs base64 zarith
|
2021-12-30 13:39:12 +00:00
|
|
|
ppx_sexp_conv eqaf
|
2021-02-05 17:12:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [ cstruct-unix cmdliner fmt ];
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "SSH implementation in OCaml";
|
|
|
|
homepage = "https://github.com/mirage/awa-ssh";
|
2021-12-06 16:07:01 +00:00
|
|
|
changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md";
|
2022-05-18 14:49:53 +00:00
|
|
|
license = licenses.isc;
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|