summary refs log tree commit diff
path: root/pkgs/development/tools/rust/bindgen
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-11 00:17:23 -0700
committerobadz <obadz-git@obadz.com>2018-05-12 14:02:36 +0200
commit366b16d8e10f9a700d45d5f2d95fc906f6257292 (patch)
tree4a81ee38443d78a16f47212624f5558f68eda640 /pkgs/development/tools/rust/bindgen
parentbb950e22e1cfbca677e09deb56342aed6294b752 (diff)
downloadnixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.tar
nixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.tar.gz
nixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.tar.bz2
nixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.tar.lz
nixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.tar.xz
nixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.tar.zst
nixlib-366b16d8e10f9a700d45d5f2d95fc906f6257292.zip
rust-bindgen: 0.36.0 -> 0.36.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/rust-bindgen/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/vpn165c8nv09k30dsl7gx0crzbdzw4im-rust-bindgen-0.36.1/bin/bindgen -h’ got 0 exit code
- ran ‘/nix/store/vpn165c8nv09k30dsl7gx0crzbdzw4im-rust-bindgen-0.36.1/bin/bindgen --help’ got 0 exit code
- ran ‘/nix/store/vpn165c8nv09k30dsl7gx0crzbdzw4im-rust-bindgen-0.36.1/bin/bindgen -V’ and found version 0.36.1
- ran ‘/nix/store/vpn165c8nv09k30dsl7gx0crzbdzw4im-rust-bindgen-0.36.1/bin/bindgen --version’ and found version 0.36.1
- found 0.36.1 with grep in /nix/store/vpn165c8nv09k30dsl7gx0crzbdzw4im-rust-bindgen-0.36.1
- directory tree listing: https://gist.github.com/6731d17415819fe988768028fda0e150
Diffstat (limited to 'pkgs/development/tools/rust/bindgen')
-rw-r--r--pkgs/development/tools/rust/bindgen/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index 2f4c89ab43be..36fa1019705f 100644
--- a/pkgs/development/tools/rust/bindgen/default.nix
+++ b/pkgs/development/tools/rust/bindgen/default.nix
@@ -4,13 +4,13 @@
 
 rustPlatform.buildRustPackage rec {
   name = "rust-bindgen-${version}";
-  version = "0.36.0";
+  version = "0.36.1";
 
   src = fetchFromGitHub {
     owner = "rust-lang-nursery";
     repo = "rust-bindgen";
     rev = "v${version}";
-    sha256 = "1bpya490qh2jvq99mdlcifj6mgn3yxr0sqas6y5xw842b46g6hi6";
+    sha256 = "0y99dvkbkd4vhac26dmc3bwf6z2m85p2il7mndvv8liam012pkbz";
   };
 
   nativeBuildInputs = [ makeWrapper ];