7bc014aa9c
GitOrigin-RevId: c97e777ff06fcb8d37dcdf5e21e9eff1f34f0e90
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, python3Packages, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rust-cbindgen";
|
|
version = "0.24.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eqrion";
|
|
repo = "cbindgen";
|
|
rev = "v${version}";
|
|
hash = "sha256-v5g6/ul6mJtzC4O4WlNopPtFUSbx2Jv79mZL72mucws=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-j3/2cFjSDkx0TXCaxYSCLrBbAHrJfJ6hwBcXlDedwh8=";
|
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
|
|
|
checkInputs = [
|
|
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.isDarwin [
|
|
# WORKAROUND: test_body fails when using clang
|
|
# https://github.com/eqrion/cbindgen/issues/628
|
|
"--skip test_body"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A project for generating C bindings from Rust code";
|
|
homepage = "https://github.com/eqrion/cbindgen";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|