2021-01-16 12:24:58 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl
|
2023-09-08 09:49:38 +00:00
|
|
|
, ppx_sexp_conv
|
2022-06-25 16:41:04 +00:00
|
|
|
, mirage-crypto, mirage-crypto-ec, mirage-crypto-rng, mirage-crypto-pk
|
2024-06-24 06:36:06 +00:00
|
|
|
, x509, cstruct, cstruct-unix, cstruct-sexp, sexplib, eqaf-cstruct
|
2024-07-16 01:40:28 +00:00
|
|
|
, mtime, logs, fmt, cmdliner, base64
|
2021-01-16 12:24:58 +00:00
|
|
|
, zarith
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "awa";
|
2024-04-22 06:14:06 +00:00
|
|
|
version = "0.3.1";
|
2021-01-16 12:24:58 +00:00
|
|
|
|
2023-06-23 06:43:47 +00:00
|
|
|
minimalOCamlVersion = "4.10";
|
2021-01-16 12:24:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-12-30 10:05:06 +00:00
|
|
|
url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz";
|
2024-04-22 06:14:06 +00:00
|
|
|
hash = "sha256-VejHFn07B/zoEG4LjLaen24ig9kAXtERl/pRo6UZCQk=";
|
2021-01-16 12:24:58 +00:00
|
|
|
};
|
|
|
|
|
2024-06-24 06:36:06 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace lib/dune --replace-warn eqaf.cstruct eqaf-cstruct
|
|
|
|
'';
|
|
|
|
|
2021-01-16 12:24:58 +00:00
|
|
|
propagatedBuildInputs = [
|
2022-06-25 16:41:04 +00:00
|
|
|
mirage-crypto mirage-crypto-ec mirage-crypto-rng mirage-crypto-pk x509
|
2021-10-30 04:20:00 +00:00
|
|
|
cstruct cstruct-sexp sexplib mtime
|
2022-06-25 16:41:04 +00:00
|
|
|
logs base64 zarith
|
2024-06-24 06:36:06 +00:00
|
|
|
ppx_sexp_conv eqaf-cstruct
|
2021-01-16 12:24:58 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2022-03-01 15:42:22 +00:00
|
|
|
checkInputs = [ cstruct-unix cmdliner fmt ];
|
2021-01-16 12:24:58 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "SSH implementation in OCaml";
|
|
|
|
homepage = "https://github.com/mirage/awa-ssh";
|
2021-10-30 04:20:00 +00:00
|
|
|
changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md";
|
2022-05-13 23:48:49 +00:00
|
|
|
license = licenses.isc;
|
2021-01-16 12:24:58 +00:00
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|