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
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
cmake,
|
|
python3Packages,
|
|
|
|
# tests
|
|
firefox-unwrapped,
|
|
firefox-esr-unwrapped,
|
|
mesa,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rust-cbindgen";
|
|
version = "0.29.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = "cbindgen";
|
|
rev = "v${version}";
|
|
hash = "sha256-wCl2GpHqF7wKIE8UFyZRY0M1hxonZek2FN6+5x/jGWI=";
|
|
};
|
|
|
|
cargoHash = "sha256-BErgOnmatxpfF5Ip44WOqnEWOzOJaVP6vfhXPsF9wuc=";
|
|
|
|
nativeCheckInputs = [
|
|
cmake
|
|
python3Packages.cython
|
|
];
|
|
|
|
checkFlags = [
|
|
# Disable tests that require rust unstable features
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
"--skip test_expand"
|
|
"--skip test_bitfield"
|
|
"--skip lib_default_uses_debug_build"
|
|
"--skip lib_explicit_debug_build"
|
|
"--skip lib_explicit_release_build"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# WORKAROUND: test_body fails when using clang
|
|
# https://github.com/eqrion/cbindgen/issues/628
|
|
"--skip test_body"
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit
|
|
firefox-unwrapped
|
|
firefox-esr-unwrapped
|
|
mesa
|
|
;
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/mozilla/cbindgen/blob/v${version}/CHANGES";
|
|
description = "Project for generating C bindings from Rust code";
|
|
mainProgram = "cbindgen";
|
|
homepage = "https://github.com/mozilla/cbindgen";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ hexa ];
|
|
};
|
|
}
|