about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-08-31 11:45:36 +0200
committerGitHub <noreply@github.com>2019-08-31 11:45:36 +0200
commit5fd022d65c9c41db3799293676d13be3f19592a1 (patch)
tree746e6026d1ac28ff78ae655b4afd1e882fa1a016 /pkgs/development/tools/rust
parent560ce2a4a7e212eb884a16f27380295849d4005d (diff)
parent3c85b7155a47a588d6cb2f388d241a1a25682411 (diff)
downloadnixlib-5fd022d65c9c41db3799293676d13be3f19592a1.tar
nixlib-5fd022d65c9c41db3799293676d13be3f19592a1.tar.gz
nixlib-5fd022d65c9c41db3799293676d13be3f19592a1.tar.bz2
nixlib-5fd022d65c9c41db3799293676d13be3f19592a1.tar.lz
nixlib-5fd022d65c9c41db3799293676d13be3f19592a1.tar.xz
nixlib-5fd022d65c9c41db3799293676d13be3f19592a1.tar.zst
nixlib-5fd022d65c9c41db3799293676d13be3f19592a1.zip
Merge pull request #65856 from jonringer/bump-cbindgen
rust-cbindgen: 0.8.7 -> 0.9.0
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cbindgen/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cbindgen/default.nix b/pkgs/development/tools/rust/cbindgen/default.nix
index ca4b6825a38f..945b78caccc7 100644
--- a/pkgs/development/tools/rust/cbindgen/default.nix
+++ b/pkgs/development/tools/rust/cbindgen/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   name = "rust-cbindgen-${version}";
-  version = "0.8.7";
+  version = "0.9.0";
 
   src = fetchFromGitHub {
     owner = "eqrion";
     repo = "cbindgen";
     rev = "v${version}";
-    sha256 = "040rivayr0dgmrhlly5827c850xbr0j5ngiy6rvwyba5j9iv2x0y";
+    sha256 = "1sh9kll3ky0d6chp7l7z8j91ckibxkfhi0v7imz2fgzzy2lbqy88";
   };
 
-  cargoSha256 = "1nig4891p7ii4z4f4j4d4pxx39f501g7yrsygqbpkr1nrgjip547";
+  cargoSha256 = "1cn84xai1n0f8xwwwwig93dawk73g1w6n6zm4axg5zl4vrmq4j6w";
 
   buildInputs = stdenv.lib.optional stdenv.isDarwin Security;