about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-04-25 00:28:40 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2019-04-26 17:51:49 +0800
commit6361e701174cc995bfbb06bee117c295a96087c9 (patch)
treedb711d52a202a917fe89001398fa56c3053dbf73 /pkgs/development/tools/rust
parentd16a5a5916852d54ba60ca1c408d52786f38aa67 (diff)
downloadnixlib-6361e701174cc995bfbb06bee117c295a96087c9.tar
nixlib-6361e701174cc995bfbb06bee117c295a96087c9.tar.gz
nixlib-6361e701174cc995bfbb06bee117c295a96087c9.tar.bz2
nixlib-6361e701174cc995bfbb06bee117c295a96087c9.tar.lz
nixlib-6361e701174cc995bfbb06bee117c295a96087c9.tar.xz
nixlib-6361e701174cc995bfbb06bee117c295a96087c9.tar.zst
nixlib-6361e701174cc995bfbb06bee117c295a96087c9.zip
rust-bindgen: 0.42.2 -> 0.49.0
Update homepage URL (rust-bindgen has been moved to
https://github.com/rust-lang/rust-bindgen from
https://github.com/rust-lang-nursery/rust-bindgen)
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/bindgen/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index a1f5e5769ae8..d0cd28379d6c 100644
--- a/pkgs/development/tools/rust/bindgen/default.nix
+++ b/pkgs/development/tools/rust/bindgen/default.nix
@@ -2,17 +2,17 @@
   runtimeShell }:
 
 rustPlatform.buildRustPackage rec {
-  name = "rust-bindgen-${version}";
-  version = "0.42.2";
+  pname = "rust-bindgen";
+  version = "0.49.0";
 
   src = fetchFromGitHub {
-    owner = "rust-lang-nursery";
-    repo = "rust-bindgen";
+    owner = "rust-lang";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "10h0h7x8yf4dsyw2p2nas2jg5p3i29np0y3rfzrdq898d70gvq4j";
+    sha256 = "0i1lh8z0jpf8gcfqxig8kl6wzjrkwb3jkad5ghb6ppkdkpr94jq4";
   };
 
-  cargoSha256 = "01jvi86xgz0r7ia9agnfpms6b6x68lzwj6f085m0w659i94acgpi";
+  cargoSha256 = "0v3slbah0s1w75s38x1akvshcxsi1s810yybd9faday7biwmdbmj";
 
   libclang = llvmPackages.libclang.lib; #for substituteAll
 
@@ -56,7 +56,7 @@ rustPlatform.buildRustPackage rec {
       As with most compiler related software, this will only work
       inside a nix-shell with the required libraries as buildInputs.
     '';
-    homepage = https://github.com/rust-lang-nursery/rust-bindgen;
+    homepage = https://github.com/rust-lang/rust-bindgen;
     license = with licenses; [ bsd3 ];
     maintainers = [ maintainers.ralith ];
   };