2022-04-15 01:41:22 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, clang, rustfmt
|
2022-02-10 20:34:41 +00:00
|
|
|
, runtimeShell
|
|
|
|
, bash
|
|
|
|
}:
|
2022-04-15 01:41:22 +00:00
|
|
|
let
|
|
|
|
# bindgen hardcodes rustfmt outputs that use nightly features
|
|
|
|
rustfmt-nightly = rustfmt.override { asNightly = true; };
|
|
|
|
in rustPlatform.buildRustPackage rec {
|
2022-02-10 20:34:41 +00:00
|
|
|
pname = "rust-bindgen-unwrapped";
|
|
|
|
version = "0.59.2";
|
|
|
|
|
|
|
|
RUSTFLAGS = "--cap-lints warn"; # probably OK to remove after update
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rust-lang";
|
|
|
|
repo = "rust-bindgen";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-bJYdyf5uZgWe7fQ80/3QsRV0qyExYn6P9UET3tzwPFs=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoSha256 = "sha256-RKZY5vf6CSFaKweuuNkeFF0ZXlSUibAkcL/YhkE0MoQ=";
|
|
|
|
|
|
|
|
buildInputs = [ clang.cc.lib ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export LIBCLANG_PATH="${clang.cc.lib}/lib"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
2022-04-15 01:41:22 +00:00
|
|
|
checkInputs = [ clang ];
|
|
|
|
|
|
|
|
RUSTFMT = "${rustfmt-nightly}/bin/rustfmt";
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
preCheck = ''
|
|
|
|
# for the ci folder, notably
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = { inherit clang; };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automatically generates Rust FFI bindings to C (and some C++) libraries";
|
|
|
|
longDescription = ''
|
|
|
|
Bindgen takes a c or c++ header file and turns them into
|
|
|
|
rust ffi declarations.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/rust-lang/rust-bindgen";
|
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ johntitor ralith ];
|
|
|
|
};
|
|
|
|
}
|