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