Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 095544187a8e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a296b6eda746
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 29, 2018

  1. rustup: 1.13.0 -> 1.15.0

    dywedir committed Nov 29, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    dywedir Vlad M.
    Copy the full SHA
    7e8cc55 View commit details

Commits on Nov 30, 2018

  1. Merge pull request #51136 from dywedir/rustup

    rustup: 1.13.0 -> 1.15.0
    Mic92 authored Nov 30, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a296b6e View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/rust/rustup/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/rust/rustup/default.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@

rustPlatform.buildRustPackage rec {
name = "rustup-${version}";
version = "1.13.0";
version = "1.15.0";

src = fetchFromGitHub {
owner = "rust-lang-nursery";
owner = "rust-lang";
repo = "rustup.rs";
rev = version;
sha256 = "1h0786jx64nc9q8x6fv7a5sf1xijxhn02m2pq5v2grl9ks0vxidn";
sha256 = "12d8z53vixrrbhvadw8fgifik0xi3hyfj1s75my8lcqwmij91gkn";
};

cargoSha256 = "09lbm2k189sri3vwcwzv7j07ah39c8ajbpkg0kzvjsjwr7ypli8a";
cargoSha256 = "0syp53s285ixshp6yswly0mwkcl0y2ddj5hc110irqsrvwgss32r";

nativeBuildInputs = [ pkgconfig ];