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

Commits on Apr 9, 2020

  1. Copy the full SHA
    456c52c View commit details
  2. Merge pull request #84761 from r-ryantm/auto-update/cargo-outdated

    cargo-outdated: 0.9.8 -> 0.9.9
    dywedir authored Apr 9, 2020
    Copy the full SHA
    9ffacc0 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.8";
version = "0.9.9";

src = fetchFromGitHub {
owner = "kbknapp";
repo = pname;
rev = "v${version}";
sha256 = "112yk46yq484zvr8mbj678qsirmyn2ij2h0z359qrhhl7r19icab";
sha256 = "01yvkfclrynv7gpvdckzbcv03xr28yb4v6333a6nv6gy05p26g3a";
};

cargoSha256 = "1bjs7lkbamy9za619z31ycqqgrfhvxbgfgpc79ykh4mfwphxzg3n";
cargoSha256 = "152f2f16d5vlww51aldvh1r2r4kx8ad5d48dc30xsfj669zzw24h";

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