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

Commits on Jan 28, 2021

  1. Copy the full SHA
    9e0995e View commit details

Commits on Jan 29, 2021

  1. Merge pull request #111067 from r-ryantm/auto-update/cargo-outdated

    cargo-outdated: 0.9.13 -> 0.9.14
    marsam authored Jan 29, 2021
    Copy the full SHA
    8cfcbef View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/package-management/cargo-outdated/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/package-management/cargo-outdated/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-outdated";
version = "0.9.13";
version = "0.9.14";

src = fetchFromGitHub {
owner = "kbknapp";
repo = pname;
rev = "v${version}";
sha256 = "1dbhaaw1c3ww0s33r7z8kxks00f9gxv1ppcbmk2fbflhp7caf7fy";
sha256 = "sha256-80H0yblEcxP6TTil0dJPZhvMivDLuyvoV0Rmcrykgjs=";
};

cargoSha256 = "0nlfn9g7hrzz72lya2p5qb8wwj66300d33hjhnw2ambpj4347rh4";
cargoSha256 = "sha256-RACdzaCWfm5rrIX0wrvKSmhLQt1a+2MQqrjTx+etpGo=";

nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ]