summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-08-03 09:38:27 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-08-03 09:38:27 -0700
commit3c85b7155a47a588d6cb2f388d241a1a25682411 (patch)
treea3efec31cec5c4091eb2baba3fe4819f00df2655 /pkgs/development/tools/rust
parent4e8a8a13ef6f730b7f785483a1ef79512a20a6fe (diff)
downloadnixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.tar
nixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.tar.gz
nixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.tar.bz2
nixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.tar.lz
nixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.tar.xz
nixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.tar.zst
nixpkgs-3c85b7155a47a588d6cb2f388d241a1a25682411.zip
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 ca4b6825a38..945b78caccc 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;