summary refs log tree commit diff
path: root/pkgs/development/tools/rust/bindgen
diff options
context:
space:
mode:
authordywedir <dywedir@protonmail.ch>2017-07-28 13:33:03 +0300
committerdywedir <dywedir@protonmail.ch>2017-07-28 13:33:03 +0300
commit6c1849147087171d9ec6060023f2b268857f2416 (patch)
treefce60b8e1d452f9877034b891c076d30ee41dd93 /pkgs/development/tools/rust/bindgen
parent805467bb5a03db607145dd7aae2ef08e1c1ee746 (diff)
downloadnixlib-6c1849147087171d9ec6060023f2b268857f2416.tar
nixlib-6c1849147087171d9ec6060023f2b268857f2416.tar.gz
nixlib-6c1849147087171d9ec6060023f2b268857f2416.tar.bz2
nixlib-6c1849147087171d9ec6060023f2b268857f2416.tar.lz
nixlib-6c1849147087171d9ec6060023f2b268857f2416.tar.xz
nixlib-6c1849147087171d9ec6060023f2b268857f2416.tar.zst
nixlib-6c1849147087171d9ec6060023f2b268857f2416.zip
rust-bindgen: 0.26.1 -> 0.29.0
Diffstat (limited to 'pkgs/development/tools/rust/bindgen')
-rw-r--r--pkgs/development/tools/rust/bindgen/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index 8fb668df5b92..9be048257ced 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.26.1";
+  version = "0.29.0";
 
   src = fetchFromGitHub {
-    owner = "servo";
+    owner = "rust-lang-nursery";
     repo = "rust-bindgen";
     rev = "v${version}";
-    sha256 = "1w1vbfhmcrcl0vacxkivmavjp51cvpyq5lk75n9zs80q5x38ypna";
+    sha256 = "190nilbqch8w2hcdmzgkk2npgsn49a4y9c5r0mxa9d7nz7h0imxk";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -24,13 +24,13 @@ rustPlatform.buildRustPackage rec {
     wrapProgram $out/bin/bindgen --set LIBCLANG_PATH "${llvmPackages.clang-unwrapped}/lib"
   '';
 
-  depsSha256 = "0s1x4ygjwc14fbl2amz5g6n7lq07zy8b00mvwfw6vi6k4bq1g59i";
+  depsSha256 = "1y55xdqsk200hj5dhbigsgsx11w5cfxms84hhyl9y7w6jszbzxzw";
 
   doCheck = false; # A test fails because it can't find standard headers in NixOS
 
   meta = with stdenv.lib; {
-    description = "C binding generator";
-    homepage = https://github.com/servo/rust-bindgen;
+    description = "C and C++ binding generator";
+    homepage = https://github.com/rust-lang-nursery/rust-bindgen;
     license = with licenses; [ bsd3 ];
     maintainers = [ maintainers.ralith ];
   };