lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

rustup: 2017-10-29 -> 1.11.0

+8 -8
+8 -8
pkgs/development/tools/rust/rustup/default.nix
··· 4 4 5 5 rustPlatform.buildRustPackage rec { 6 6 name = "rustup-${version}"; 7 - version = "2017-10-29"; 7 + version = "1.11.0"; 8 8 9 - cargoSha256 = "1xwxv8y9xjgdmm92ldrn9m9fml2zb5h7qqm7dhw63j6psb3ajqrw"; 9 + cargoSha256 = "1r9mnj3x9sn16hi1r09gl5q0cnsa2g6kbjw2g115858i2a9k6hkr"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rust-lang-nursery"; 13 13 repo = "rustup.rs"; 14 - rev = "13c8092507bf646f3ef6a621fe2c5a68212e800f"; 15 - sha256 = "1qd01rjk9qpfzgqs35f5nxrcf00kmf76zwmgj3yzdig9zymjwndg"; 14 + rev = version; 15 + sha256 = "05rbgkz4fk6c1x6bpmpx108bg2qcrf6vv3yfz378s7bmr3l319iz"; 16 16 }; 17 17 18 18 nativeBuildInputs = [ pkgconfig ]; ··· 35 35 postInstall = '' 36 36 pushd $out/bin 37 37 mv rustup-init rustup 38 - for link in cargo rustc rustdoc rust-gdb rust-lldb; do 38 + for link in cargo rustc rustdoc rust-gdb rust-lldb rls rustfmt cargo-fmt; do 39 39 ln -s rustup $link 40 40 done 41 41 popd 42 42 43 43 # tries to create .rustup 44 44 export HOME=$(mktemp -d) 45 - mkdir -p "$out/share/"{bash-completion/completions,fish/completions,zsh/site-functions} 45 + mkdir -p "$out/share/"{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions} 46 46 $out/bin/rustup completions bash > "$out/share/bash-completion/completions/rustup" 47 - $out/bin/rustup completions fish > "$out/share/fish/completions/rustup.fish" 47 + $out/bin/rustup completions fish > "$out/share/fish/vendor_completions.d/rustup.fish" 48 48 $out/bin/rustup completions zsh > "$out/share/zsh/site-functions/_rustup" 49 49 ''; 50 50 51 51 meta = with stdenv.lib; { 52 52 description = "The Rust toolchain installer"; 53 53 homepage = https://www.rustup.rs/; 54 - license = licenses.mit; 54 + license = with licenses; [ asl20 /* or */ mit ]; 55 55 maintainers = [ maintainers.mic92 ]; 56 56 }; 57 57 }