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

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

42 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-16 12:24:58 +00:00
{ lib, buildDunePackage, fetchurl
, ppx_sexp_conv
2022-06-25 16:41:04 +00:00
, mirage-crypto, mirage-crypto-ec, mirage-crypto-rng, mirage-crypto-pk
, x509, cstruct, cstruct-unix, cstruct-sexp, sexplib, eqaf-cstruct
, 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 {
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
};
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
cstruct cstruct-sexp sexplib mtime
2022-06-25 16:41:04 +00:00
logs base64 zarith
ppx_sexp_conv eqaf-cstruct
2021-01-16 12:24:58 +00:00
];
doCheck = true;
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";
changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md";
license = licenses.isc;
2021-01-16 12:24:58 +00:00
maintainers = [ maintainers.sternenseemann ];
};
}