2021-03-15 08:37:03 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, python3Packages, Security }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rust-cbindgen";
|
2021-06-01 10:57:12 +00:00
|
|
|
version = "0.19.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eqrion";
|
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2021-06-01 10:57:12 +00:00
|
|
|
sha256 = "0753dklr5lm1dmk6hy5khh8k3xyr5srfsq11l07685h71j7z0r00";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-06-01 10:57:12 +00:00
|
|
|
cargoSha256 = "0qyw0iqin7i31kk23ddsmywk7z0xxpd5n4q6dr6mf44y35a8krm8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-03-15 08:37:03 +00:00
|
|
|
checkInputs = [
|
|
|
|
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"
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A project for generating C bindings from Rust code";
|
|
|
|
homepage = "https://github.com/eqrion/cbindgen";
|
|
|
|
license = licenses.mpl20;
|
2020-12-07 07:45:13 +00:00
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|