2021-02-23 17:14:32 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, python3Packages, Security }:
|
2018-05-22 13:20:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "rust-cbindgen";
|
2022-06-11 21:03:11 +00:00
|
|
|
version = "0.24.3";
|
2018-05-22 13:20:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eqrion";
|
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2022-06-11 21:03:11 +00:00
|
|
|
hash = "sha256-v5g6/ul6mJtzC4O4WlNopPtFUSbx2Jv79mZL72mucws=";
|
2018-05-22 13:20:53 +00:00
|
|
|
};
|
|
|
|
|
2022-06-11 21:03:11 +00:00
|
|
|
cargoSha256 = "sha256-j3/2cFjSDkx0TXCaxYSCLrBbAHrJfJ6hwBcXlDedwh8=";
|
2018-05-22 13:20:53 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2018-10-27 17:21:15 +00:00
|
|
|
|
2021-02-23 17:14:32 +00:00
|
|
|
checkInputs = [
|
|
|
|
python3Packages.cython
|
|
|
|
];
|
|
|
|
|
2019-07-25 10:34:44 +00:00
|
|
|
checkFlags = [
|
2021-02-23 17:14:32 +00:00
|
|
|
# Disable tests that require rust unstable features
|
2019-07-25 10:34:44 +00:00
|
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
|
|
"--skip test_expand"
|
2021-02-23 17:14:32 +00:00
|
|
|
"--skip test_bitfield"
|
|
|
|
"--skip lib_default_uses_debug_build"
|
|
|
|
"--skip lib_explicit_debug_build"
|
|
|
|
"--skip lib_explicit_release_build"
|
2019-07-25 10:34:44 +00:00
|
|
|
];
|
2019-07-14 05:52:00 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-05-29 08:55:04 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2018-05-22 13:20:53 +00:00
|
|
|
description = "A project for generating C bindings from Rust code";
|
2020-04-04 21:05:25 +00:00
|
|
|
homepage = "https://github.com/eqrion/cbindgen";
|
2018-05-22 13:20:53 +00:00
|
|
|
license = licenses.mpl20;
|
2022-04-21 23:03:59 +00:00
|
|
|
maintainers = with maintainers; [ hexa ];
|
2018-05-22 13:20:53 +00:00
|
|
|
};
|
|
|
|
}
|