2023-05-22 00:15:06 +02:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, rustPlatform
|
|
|
|
|
, git
|
|
|
|
|
, nix-update-script
|
|
|
|
|
, pkg-config
|
|
|
|
|
, openssl
|
|
|
|
|
, dbus
|
|
|
|
|
, Security
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
pname = "ockam";
|
2024-02-22 04:03:33 +01:00
|
|
|
|
version = "0.117.0";
|
2023-05-22 00:15:06 +02:00
|
|
|
|
in
|
|
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
|
inherit pname version;
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "build-trust";
|
|
|
|
|
repo = pname;
|
|
|
|
|
rev = "ockam_v${version}";
|
2024-02-22 04:03:33 +01:00
|
|
|
|
sha256 = "sha256-iQ/bhrYJvvSevZGx4n1gTyfG/NvvWoQAHs6fcTT+vUc=";
|
2023-05-22 00:15:06 +02:00
|
|
|
|
};
|
|
|
|
|
|
2024-02-22 04:03:33 +01:00
|
|
|
|
cargoHash = "sha256-WXRRZWQqgfw7priZrt+avMs2FHs4EcKwlkg5XK8hjoY=";
|
2023-05-22 00:15:06 +02:00
|
|
|
|
nativeBuildInputs = [ git pkg-config ];
|
|
|
|
|
buildInputs = [ openssl dbus ]
|
|
|
|
|
++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
|
|
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
|
|
|
|
|
|
# too many tests fail for now
|
|
|
|
|
doCheck = false;
|
|
|
|
|
# checkFlags = [
|
|
|
|
|
# # tries to make a network access
|
|
|
|
|
# "--skip=tests::curl_http_ockam"
|
|
|
|
|
# "--skip=medium_file_transfer"
|
|
|
|
|
# "--skip=medium_file_transfer_large_chunks"
|
|
|
|
|
# "--skip=medium_file_transfer_small_chunks"
|
|
|
|
|
# "--skip=tiny_file_transfer"
|
|
|
|
|
# "--skip=tiny_file_transfer_small_chunks"
|
|
|
|
|
# # tries to do IO
|
|
|
|
|
# "--skip=cli_state::tests::integration"
|
|
|
|
|
# "--skip=cli_state::tests::test_create_default_identity_state"
|
|
|
|
|
# "--skip=cli_state::tests::test_create_named_identity_state"
|
|
|
|
|
# "--skip=kafka::integration_test::test::producer__flow_with_mock_kafka__content_encryption_and_decryption"
|
|
|
|
|
# "--skip=kafka::portal_worker::test::kafka_portal_worker__metadata_exchange__response_changed"
|
|
|
|
|
# "--skip=full_flow"
|
|
|
|
|
# "--skip=run::parser::tests::detect_circular_dependency"
|
|
|
|
|
# "--skip=run::parser::tests::test_parse_config_with_depends_on"
|
|
|
|
|
# "--skip=util::tests::test_process_multi_addr"
|
|
|
|
|
# ];
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-01-08 06:29:45 +01:00
|
|
|
|
description = "Orchestrate end-to-end encryption, cryptographic identities, mutual authentication, and authorization policies between distributed applications – at massive scale";
|
2023-05-22 00:15:06 +02:00
|
|
|
|
homepage = "https://github.com/build-trust/ockam";
|
|
|
|
|
license = licenses.mpl20;
|
|
|
|
|
maintainers = with maintainers; [ happysalada ];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|