about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-03-12 10:33:18 -0700
committerGitHub <noreply@github.com>2020-03-12 10:33:18 -0700
commit96b48af4ab54f63372c34f14717a852720ce96b1 (patch)
tree805583072f9c3a93ce12965706b6c597166a9332 /pkgs/development/tools
parent1e8ddbb8b9d02510ff3134d3b715efd1e47d01c0 (diff)
parent19fdac26c491d66525fd36d581aab48b3f7c1639 (diff)
downloadnixlib-96b48af4ab54f63372c34f14717a852720ce96b1.tar
nixlib-96b48af4ab54f63372c34f14717a852720ce96b1.tar.gz
nixlib-96b48af4ab54f63372c34f14717a852720ce96b1.tar.bz2
nixlib-96b48af4ab54f63372c34f14717a852720ce96b1.tar.lz
nixlib-96b48af4ab54f63372c34f14717a852720ce96b1.tar.xz
nixlib-96b48af4ab54f63372c34f14717a852720ce96b1.tar.zst
nixlib-96b48af4ab54f63372c34f14717a852720ce96b1.zip
Merge pull request #82384 from r-ryantm/auto-update/rust-bindgen
rust-bindgen: 0.53.1 -> 0.53.2
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/rust/bindgen/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index c064ebc4e7e1..2ca4b8070aaa 100644
--- a/pkgs/development/tools/rust/bindgen/default.nix
+++ b/pkgs/development/tools/rust/bindgen/default.nix
@@ -3,7 +3,7 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rust-bindgen";
-  version = "0.53.1";
+  version = "0.53.2";
 
   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 = "0zxqryqks9in9q7az0lrw8fq9wnc5p4yf6b1fxnzy2j6qhlw2c5c";
+    sha256 = "01dkaa2akqrhpxxf0g2zyfdb3nx16y14qsg0a9d5n92c4yyvmwjg";
   };
 
-  cargoSha256 = "1fdgm83l9d469garfbgny6jk1fvwnwh32sybz9g7s2qzrvzzrx1d";
+  cargoSha256 = "0pm9kh3qrcv5jsbrr476982lg1j31fbvxpzs4gphxl0mv1qmp4zm";
 
   libclang = llvmPackages.libclang.lib; #for substituteAll
 
@@ -58,7 +58,7 @@ rustPlatform.buildRustPackage rec {
       As with most compiler related software, this will only work
       inside a nix-shell with the required libraries as buildInputs.
     '';
-    homepage = https://github.com/rust-lang/rust-bindgen;
+    homepage = "https://github.com/rust-lang/rust-bindgen";
     license = with licenses; [ bsd3 ];
     platforms = platforms.unix;
     maintainers = [ maintainers.ralith ];