about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-08-17 08:30:07 +0900
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:53:07 +0000
commit5daaad420333b173db3ff570bbf47a8eb768e481 (patch)
tree86a5deb358d2be5b3060e5cd25dbef22a7837cba /nixpkgs
parentbdbefded596918c08d4949a1db444d038ade0d99 (diff)
downloadnixlib-5daaad420333b173db3ff570bbf47a8eb768e481.tar
nixlib-5daaad420333b173db3ff570bbf47a8eb768e481.tar.gz
nixlib-5daaad420333b173db3ff570bbf47a8eb768e481.tar.bz2
nixlib-5daaad420333b173db3ff570bbf47a8eb768e481.tar.lz
nixlib-5daaad420333b173db3ff570bbf47a8eb768e481.tar.xz
nixlib-5daaad420333b173db3ff570bbf47a8eb768e481.tar.zst
nixlib-5daaad420333b173db3ff570bbf47a8eb768e481.zip
rust-bindgen: 0.53.2 -> 0.54.1
(cherry picked from commit 81e215e691152c5cdbc5f91c9a33c507ff54fe47)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/development/tools/rust/bindgen/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixpkgs/pkgs/development/tools/rust/bindgen/default.nix b/nixpkgs/pkgs/development/tools/rust/bindgen/default.nix
index 2ca4b8070aaa..cc1bf1c74767 100644
--- a/nixpkgs/pkgs/development/tools/rust/bindgen/default.nix
+++ b/nixpkgs/pkgs/development/tools/rust/bindgen/default.nix
@@ -3,7 +3,7 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rust-bindgen";
-  version = "0.53.2";
+  version = "0.54.1";
 
   RUSTFLAGS = "--cap-lints warn"; # probably OK to remove after update
 
@@ -11,10 +11,10 @@ rustPlatform.buildRustPackage rec {
     owner = "rust-lang";
     repo = pname;
     rev = "v${version}";
-    sha256 = "01dkaa2akqrhpxxf0g2zyfdb3nx16y14qsg0a9d5n92c4yyvmwjg";
+    sha256 = "116np72w6agsi94xa1bdn6h7sa9gd522h358zlixk9xrhrx7yfn3";
   };
 
-  cargoSha256 = "0pm9kh3qrcv5jsbrr476982lg1j31fbvxpzs4gphxl0mv1qmp4zm";
+  cargoSha256 = "12a7bd2579jcnkss073v5w5w68fxwvhq6c6ndjy8vp78wg83qich";
 
   libclang = llvmPackages.libclang.lib; #for substituteAll
 
@@ -51,7 +51,7 @@ rustPlatform.buildRustPackage rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "C and C++ binding generator";
+    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.
@@ -61,6 +61,6 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/rust-lang/rust-bindgen";
     license = with licenses; [ bsd3 ];
     platforms = platforms.unix;
-    maintainers = [ maintainers.ralith ];
+    maintainers = with maintainers; [ johntitor ralith ];
   };
 }