mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
416d7f1bb7
* ocamlPackages.mirage-crypto: 0.10.3 -> 0.10.5 https://github.com/mirage/mirage-crypto/releases/tag/v0.10.4 https://github.com/mirage/mirage-crypto/releases/tag/v0.10.5 Co-authored-by: sternenseemann <sternenseemann@systemli.org> * ocamlPackages.otr: 0.3.8 -> 0.3.10 https://github.com/hannesm/ocaml-otr/releases/tag/v0.3.9 https://github.com/hannesm/ocaml-otr/releases/tag/v0.3.10 * ocamlPackages.awa: propagate ppx_sexp_conv as a normal build input awa depends on ppx_sexp_conv.runtime_lib, so it needs to be propagated. This was previously masked by the dependency being propagated from another package. Co-authored-by: sternenseemann <sternenseemann@systemli.org>
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, buildDunePackage, fetchurl
|
|
, ppx_sexp_conv, ppx_cstruct
|
|
, mirage-crypto, mirage-crypto-rng, mirage-crypto-pk
|
|
, x509, cstruct, cstruct-unix, cstruct-sexp, sexplib
|
|
, rresult, mtime, logs, fmt, cmdliner, base64, hacl_x25519
|
|
, zarith
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "awa";
|
|
version = "0.0.4";
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-v${version}.tbz";
|
|
sha256 = "1l7nsd8jifxjq78xyzcc0z9igc02m2qlvv4cxzsgdim6n1jfzxj2";
|
|
};
|
|
|
|
nativeBuildInputs = [ ppx_cstruct ];
|
|
|
|
propagatedBuildInputs = [
|
|
mirage-crypto mirage-crypto-rng mirage-crypto-pk x509
|
|
cstruct cstruct-sexp sexplib mtime
|
|
logs base64 hacl_x25519 zarith
|
|
ppx_sexp_conv
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ cstruct-unix cmdliner fmt ];
|
|
|
|
meta = with lib; {
|
|
description = "SSH implementation in OCaml";
|
|
license = licenses.isc;
|
|
homepage = "https://github.com/mirage/awa-ssh";
|
|
changelog = "https://github.com/mirage/awa-ssh/raw/v${version}/CHANGES.md";
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|