mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, buildDunePackage, fetchurl
|
|
, ppx_sexp_conv, ppx_cstruct
|
|
, mirage-crypto, mirage-crypto-ec, mirage-crypto-rng, mirage-crypto-pk
|
|
, x509, cstruct, cstruct-unix, cstruct-sexp, sexplib, eqaf
|
|
, rresult, mtime, logs, fmt, cmdliner, base64
|
|
, zarith
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "awa";
|
|
version = "0.1.0";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz";
|
|
sha256 = "sha256-aPnFDp52oYVHr/56lFw0gtVJ0KvHawyM5FGtpHPOVY8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ ppx_cstruct ];
|
|
|
|
propagatedBuildInputs = [
|
|
mirage-crypto mirage-crypto-ec mirage-crypto-rng mirage-crypto-pk x509
|
|
cstruct cstruct-sexp sexplib mtime
|
|
logs base64 zarith
|
|
ppx_sexp_conv eqaf
|
|
];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ 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;
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|