rust-bindgen: 0.59.2 -> 0.61.0

This commit is contained in:
Alex Martens 2022-10-17 17:14:42 -07:00 committed by Alyssa Ross
parent 6bab4adaae
commit bea58512db

View file

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, rustPlatform, clang, rustfmt
{ lib, fetchCrate, rustPlatform, clang, rustfmt
, runtimeShell
, bash
}:
@ -7,18 +7,15 @@ let
rustfmt-nightly = rustfmt.override { asNightly = true; };
in rustPlatform.buildRustPackage rec {
pname = "rust-bindgen-unwrapped";
version = "0.59.2";
version = "0.61.0";
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=";
src = fetchCrate {
pname = "bindgen-cli";
inherit version;
sha256 = "sha256-sKcKIAkUC2GfAZ4tJBNweXhoFzqO95iCpHgekpOyHzc=";
};
cargoSha256 = "sha256-RKZY5vf6CSFaKweuuNkeFF0ZXlSUibAkcL/YhkE0MoQ=";
cargoSha256 = "sha256-P246tw5Kznpxav0LashIkLlmQGVB+aKbFUQQdmcASPw=";
buildInputs = [ clang.cc.lib ];