2023-07-15 17:15:38 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, cmake
|
|
|
|
, python3Packages
|
|
|
|
, Security
|
2024-09-19 14:19:46 +00:00
|
|
|
|
|
|
|
# tests
|
|
|
|
, firefox-unwrapped
|
|
|
|
, firefox-esr-unwrapped
|
|
|
|
, mesa
|
2023-07-15 17:15:38 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rust-cbindgen";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "0.27.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-07-15 17:15:38 +00:00
|
|
|
owner = "mozilla";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-XTGHHD5Qw3mr+lkPKOXyqb0K3sEENW8Sf0n9mtrFFXI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
cargoHash = "sha256-l4FgwXdibek4BAnqjWd1rLxpEwuMNjYgvo6X3SS3fRo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2023-07-15 17:15:38 +00:00
|
|
|
cmake
|
2021-03-15 08:37:03 +00:00
|
|
|
python3Packages.cython
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
checkFlags = [
|
2021-03-15 08:37:03 +00:00
|
|
|
# Disable tests that require rust unstable features
|
2020-04-24 23:36:52 +00:00
|
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
|
|
"--skip test_expand"
|
2021-03-15 08:37:03 +00:00
|
|
|
"--skip test_bitfield"
|
|
|
|
"--skip lib_default_uses_debug_build"
|
|
|
|
"--skip lib_explicit_debug_build"
|
|
|
|
"--skip lib_explicit_release_build"
|
2024-09-26 11:04:55 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
2022-09-11 15:47:08 +00:00
|
|
|
# WORKAROUND: test_body fails when using clang
|
|
|
|
# https://github.com/eqrion/cbindgen/issues/628
|
|
|
|
"--skip test_body"
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit
|
|
|
|
firefox-unwrapped
|
|
|
|
firefox-esr-unwrapped
|
|
|
|
mesa
|
|
|
|
;
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/mozilla/cbindgen/blob/v${version}/CHANGES";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Project for generating C bindings from Rust code";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "cbindgen";
|
2023-07-15 17:15:38 +00:00
|
|
|
homepage = "https://github.com/mozilla/cbindgen";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mpl20;
|
2022-04-27 09:35:20 +00:00
|
|
|
maintainers = with maintainers; [ hexa ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|