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

Commits on Sep 22, 2019

  1. Copy the full SHA
    08e1ce7 View commit details
  2. cargo-release: 0.10.5 -> 0.12.4 (#69245)

    cargo-release: 0.10.5 -> 0.12.4
    Mic92 authored Sep 22, 2019
    Copy the full SHA
    61e579b View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/package-management/cargo-release/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/package-management/cargo-release/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-release";
version = "0.10.5";
version = "0.12.4";

src = fetchFromGitHub {
owner = "sunng87";
repo = "cargo-release";
rev = version;
sha256 = "14l5znr1nl69v2v3mdrlas85krq9jn280ssflmd0dz7i4fxiaflc";
rev = "v${version}";
sha256 = "02rx25dd3klprwr1qmn5vn4vz4244amk2ky4nqfmi4vq3ygrhd1c";
};

cargoSha256 = "1l1rvd3i3d7jn3crwc194i5qm3f0jaw7ksb4bvqn3v8rf44chmrs";
cargoSha256 = "18nbmq8j58jlka1lsrx2y0bhb9l5f3wyvcr1zmmda3hvc3vm7kla";

buildInputs = stdenv.lib.optional stdenv.isDarwin Security;