about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-10-20 03:04:23 +0200
committerAndreas Rammhold <andreas@rammhold.de>2019-10-20 03:04:23 +0200
commite07c2974e67449bbe2f130c04f2cf350affb2ff2 (patch)
tree0687912a5dec8bd61fe428b0db05f57c1834d534 /pkgs/development/tools/rust
parent06744bb2d40b1196b7e7ddb80a7be32e218e8463 (diff)
downloadnixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.tar
nixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.tar.gz
nixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.tar.bz2
nixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.tar.lz
nixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.tar.xz
nixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.tar.zst
nixlib-e07c2974e67449bbe2f130c04f2cf350affb2ff2.zip
rust-cbdindgen: 0.9.0 -> 0.9.1
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 64b40bdecf34..8e08e5e50eb8 100644
--- a/pkgs/development/tools/rust/cbindgen/default.nix
+++ b/pkgs/development/tools/rust/cbindgen/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rust-cbindgen";
-  version = "0.9.0";
+  version = "0.9.1";
 
   src = fetchFromGitHub {
     owner = "eqrion";
     repo = "cbindgen";
     rev = "v${version}";
-    sha256 = "1sh9kll3ky0d6chp7l7z8j91ckibxkfhi0v7imz2fgzzy2lbqy88";
+    sha256 = "1g0vrkwkc8wsyiz04qchw07chg0mg451if02sr17s65chwmbrc19";
   };
 
-  cargoSha256 = "1cn84xai1n0f8xwwwwig93dawk73g1w6n6zm4axg5zl4vrmq4j6w";
+  cargoSha256 = "1y96m2my0h8fxglxz20y68fr8mnw031pxvzjsq801gwz2p858d75";
 
   buildInputs = stdenv.lib.optional stdenv.isDarwin Security;