about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorarcnmx <arcnmx@users.noreply.github.com>2019-06-24 13:05:28 -0700
committerarcnmx <arcnmx@users.noreply.github.com>2019-06-24 13:48:33 -0700
commit250b31dbfc1f3ae499e61a8a24b04f421e060729 (patch)
tree1499cc5f1a28e9cae6cc0d79fa331cb8c796810f /pkgs/development/tools/rust
parentbaa75f0c25a26ba7423d46ae2b9e89b62dc149e3 (diff)
downloadnixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.tar
nixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.tar.gz
nixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.tar.bz2
nixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.tar.lz
nixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.tar.xz
nixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.tar.zst
nixlib-250b31dbfc1f3ae499e61a8a24b04f421e060729.zip
rust-bindgen: 0.49.0 -> 0.49.2
Update fixes a checkPhase test on darwin.
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/bindgen/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index d0cd28379d6c..cad237b9cbc9 100644
--- a/pkgs/development/tools/rust/bindgen/default.nix
+++ b/pkgs/development/tools/rust/bindgen/default.nix
@@ -3,16 +3,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rust-bindgen";
-  version = "0.49.0";
+  version = "0.49.2";
 
   src = fetchFromGitHub {
     owner = "rust-lang";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0i1lh8z0jpf8gcfqxig8kl6wzjrkwb3jkad5ghb6ppkdkpr94jq4";
+    sha256 = "0m9c7zswp87yj7y972ghbx5z7lwbhdxb9qyws5cwiazkl582q0qj";
   };
 
-  cargoSha256 = "0v3slbah0s1w75s38x1akvshcxsi1s810yybd9faday7biwmdbmj";
+  cargoSha256 = "1311d0wjjj99m59zd2n6r4aq6lwbbpyj54ha2z9g4yd1hn344r91";
 
   libclang = llvmPackages.libclang.lib; #for substituteAll
 
@@ -58,6 +58,7 @@ rustPlatform.buildRustPackage rec {
     '';
     homepage = https://github.com/rust-lang/rust-bindgen;
     license = with licenses; [ bsd3 ];
+    platforms = platforms.unix;
     maintainers = [ maintainers.ralith ];
   };
 }