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