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: 26803925aa41
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6c2a614fa7e0
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 20, 2020

  1. topgrade: 5.9.1 -> 6.0.0

    ipetkov committed Nov 20, 2020
    Copy the full SHA
    97698cb View commit details
  2. Merge pull request #104347 from ipetkov/topgrade-6.0.0

    topgrade: 5.9.1 -> 6.0.0
    Br1ght0ne authored Nov 20, 2020
    Copy the full SHA
    6c2a614 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/topgrade/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/topgrade/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "topgrade";
version = "5.9.1";
version = "6.0.0";

src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
sha256 = "17vrnwx8qv2s2m9sj7h4gxxrnppqs9yzjzp8jsyfnpqd66h60wcg";
sha256 = "15ad30svvr775dxp5gwlq73xydsqwfpw650c3c3ma4jshw36w0x4";
};

cargoSha256 = "1k5lslin5qpmgz1zkz6xazjnapbr0i5r2ifzcz7bdbxwkaaliksd";
cargoSha256 = "0bwy2y44czhvckipvjn28j6ds1pnbj38i29hvlv4f782imfn92hz";

buildInputs = lib.optional stdenv.isDarwin Foundation;