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

Commits on Jan 29, 2021

  1. cargo-cache: 0.6.0 -> 0.6.1

    r-ryantm committed Jan 29, 2021
    Copy the full SHA
    638791d View commit details
  2. Merge pull request #111149 from r-ryantm/auto-update/cargo-cache

    cargo-cache: 0.6.0 -> 0.6.1
    Br1ght0ne authored Jan 29, 2021

    Verified

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

rustPlatform.buildRustPackage rec {
pname = "cargo-cache";
version = "0.6.0";
version = "0.6.1";

src = fetchFromGitHub {
owner = "matthiaskrgr";
repo = pname;
rev = version;
sha256 = "sha256-SqhGwm2VZW6ZUYyxN940fi/YLJGAZikjJCIq0GbljtY=";
sha256 = "sha256-qRwyNSAYuAnU17o/5zqKuvixQw7xfA6wNVzN6QRbZlY=";
};

cargoSha256 = "sha256-sZxkEQBZ2PJXSvwcA+IL7uW/gcnzuzRcDklNW5vpzWg=";
cargoSha256 = "sha256-OpqVP097GYiARq7gbsMGFFGkFaQz3qeux12aMJj7W3Y=";

buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];