Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
93 lines
2.3 KiB
Nix
93 lines
2.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
pkg-config,
|
|
openssl,
|
|
# darwin dependencies
|
|
libiconv,
|
|
curl,
|
|
# testing
|
|
testers,
|
|
cargo-geiger,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-geiger";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "geiger-rs";
|
|
repo = "cargo-geiger";
|
|
tag = "cargo-geiger-${version}";
|
|
hash = "sha256-dZ71WbTKsR6g5UhWuJNfNAAqNNxbTgwL5fsgkm50BaM=";
|
|
};
|
|
|
|
cargoHash = "sha256-GgCmUNOwvyTB82Y/ddgJIAb1SpO4mRPjECqCagJ8GmE=";
|
|
|
|
buildInputs = [
|
|
openssl
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
curl
|
|
];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
]
|
|
# curl-sys wants to run curl-config on darwin
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ curl.dev ];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
# skip tests with networking or other failures
|
|
checkFlags = [
|
|
# panics
|
|
"--skip serialize_test2_quick_report"
|
|
"--skip serialize_test3_quick_report"
|
|
"--skip serialize_test6_quick_report"
|
|
"--skip serialize_test2_report"
|
|
"--skip serialize_test3_report"
|
|
"--skip serialize_test6_report"
|
|
# requires networking
|
|
"--skip test_package::case_2"
|
|
"--skip test_package::case_3"
|
|
"--skip test_package::case_6"
|
|
"--skip test_package::case_9"
|
|
# panics, snapshot assertions fails
|
|
"--skip test_package_update_readme::case_2"
|
|
"--skip test_package_update_readme::case_3"
|
|
"--skip test_package_update_readme::case_5"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = cargo-geiger;
|
|
};
|
|
|
|
meta = {
|
|
description = "Detects usage of unsafe Rust in a Rust crate and its dependencies";
|
|
longDescription = ''
|
|
A cargo plugin that detects the usage of unsafe Rust in a Rust crate and
|
|
its dependencies. It provides information to aid auditing and guide
|
|
dependency selection but it can not help you decide when and why unsafe
|
|
code is appropriate.
|
|
'';
|
|
homepage = "https://github.com/geiger-rs/cargo-geiger";
|
|
changelog = "https://github.com/geiger-rs/cargo-geiger/blob/cargo-geiger-${version}/CHANGELOG.md";
|
|
mainProgram = "cargo-geiger";
|
|
license = with lib.licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
evanjs
|
|
gepbird
|
|
jk
|
|
matthiasbeyer
|
|
];
|
|
};
|
|
}
|