a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
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;
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|