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.

37 lines
985 B
Nix
Raw Normal View History

2021-01-16 12:24:58 +00:00
{ lib, buildDunePackage, fetchurl
2022-06-25 16:41:04 +00:00
, mirage-crypto, mirage-crypto-ec, mirage-crypto-rng, mirage-crypto-pk
, x509, cstruct, cstruct-unix, eqaf
, mtime, logs, fmt, cmdliner, base64
2021-01-16 12:24:58 +00:00
, zarith
}:
buildDunePackage rec {
pname = "awa";
version = "0.4.0";
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";
hash = "sha256-uATKGr+J18jBx5vErB93Q9+BCR7ezi1Q+ueQGolpybQ=";
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 mtime
2022-06-25 16:41:04 +00:00
logs base64 zarith
eqaf
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 ];
};
}