2018-10-27 17:21:15 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2018-05-22 13:20:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "rust-cbindgen";
|
2020-06-30 13:36:45 +00:00
|
|
|
version = "0.14.3";
|
2018-05-22 13:20:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eqrion";
|
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2020-06-30 13:36:45 +00:00
|
|
|
sha256 = "0pw55334i10k75qkig8bgcnlsy613zw2p5j4xyz8v71s4vh1a58j";
|
2018-05-22 13:20:53 +00:00
|
|
|
};
|
|
|
|
|
2020-06-30 13:36:45 +00:00
|
|
|
cargoSha256 = "0088ijnjhqfvdb1wxy9jc7hq8c0yxgj5brlg68n9vws1mz9rilpy";
|
2018-05-22 13:20:53 +00:00
|
|
|
|
2018-10-27 17:21:15 +00:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
2019-07-25 10:34:44 +00:00
|
|
|
checkFlags = [
|
|
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
|
|
"--skip test_expand"
|
|
|
|
];
|
2019-07-14 05:52:00 +00:00
|
|
|
|
2018-05-22 13:20:53 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
2019-02-28 19:42:44 +00:00
|
|
|
maintainers = with maintainers; [ jtojnar andir ];
|
2018-05-22 13:20:53 +00:00
|
|
|
};
|
|
|
|
}
|