2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2018-05-22 06:20:53 -07:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 04:41:23 -07:00
|
|
|
pname = "rust-cbindgen";
|
2020-10-21 21:38:10 -07:00
|
|
|
version = "0.15.0";
|
2018-05-22 06:20:53 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eqrion";
|
|
|
|
repo = "cbindgen";
|
|
|
|
rev = "v${version}";
|
2020-10-21 21:38:10 -07:00
|
|
|
sha256 = "19bwllrajks286wl4zc5axgh4m9qqxdnc5024c30hyk0xnjffd0c";
|
2018-05-22 06:20:53 -07:00
|
|
|
};
|
|
|
|
|
2020-10-21 21:38:10 -07:00
|
|
|
cargoSha256 = "1lzzckzcgj496chbfd6lhwxcangv0krx8m5k2jwffnb9mfgac7hx";
|
2018-05-22 06:20:53 -07:00
|
|
|
|
2018-10-27 10:21:15 -07:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
2019-07-25 03:34:44 -07:00
|
|
|
checkFlags = [
|
|
|
|
# https://github.com/eqrion/cbindgen/issues/338
|
|
|
|
"--skip test_expand"
|
|
|
|
];
|
2019-07-13 22:52:00 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-05-22 06:20:53 -07:00
|
|
|
description = "A project for generating C bindings from Rust code";
|
2020-04-04 14:05:25 -07:00
|
|
|
homepage = "https://github.com/eqrion/cbindgen";
|
2018-05-22 06:20:53 -07:00
|
|
|
license = licenses.mpl20;
|
2020-12-06 12:23:25 -08:00
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
2018-05-22 06:20:53 -07:00
|
|
|
};
|
|
|
|
}
|