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.

40 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-16 12:24:58 +00:00
{ lib, buildDunePackage, fetchurl
, ppx_sexp_conv, ppx_cstruct
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
2022-06-25 16:41:04 +00:00
, rresult, mtime, logs, fmt, cmdliner, base64
2021-01-16 12:24:58 +00:00
, zarith
}:
buildDunePackage rec {
pname = "awa";
2022-06-25 16:41:04 +00:00
version = "0.1.0";
2021-01-16 12:24:58 +00:00
2022-06-25 16:41:04 +00:00
minimalOCamlVersion = "4.08";
2021-01-16 12:24:58 +00:00
src = fetchurl {
url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz";
2022-06-25 16:41:04 +00:00
sha256 = "sha256-aPnFDp52oYVHr/56lFw0gtVJ0KvHawyM5FGtpHPOVY8=";
2021-01-16 12:24:58 +00:00
};
nativeBuildInputs = [ ppx_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
2021-01-16 12:24:58 +00:00
];
doCheck = true;
checkInputs = [ cstruct-unix cmdliner fmt ];
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 ];
};
}