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

Commits on Nov 10, 2020

  1. cargo-make: 0.32.8 -> 0.32.9

    r-ryantm committed Nov 10, 2020
    Copy the full SHA
    b48a9f0 View commit details

Commits on Nov 11, 2020

  1. Merge pull request #103364 from r-ryantm/auto-update/cargo-make

    cargo-make: 0.32.8 -> 0.32.9
    marsam authored Nov 11, 2020
    Copy the full SHA
    a0a82dd View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/rust/cargo-make/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/rust/cargo-make/default.nix
Original file line number Diff line number Diff line change
@@ -4,19 +4,19 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-make";
version = "0.32.8";
version = "0.32.9";

src = fetchCrate {
inherit pname version;
sha256 = "sha256-TwutU4RjiYtxc2vT67Bgqe/WRHi5aXwgzvZu7Wk4Cao=";
sha256 = "0f6avprq0d65v5fk3kn2kvw3w024f21yq6v8y7d9rbwqxxf87jlf";
};

nativeBuildInputs = [ pkg-config ];

buildInputs = [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];

cargoSha256 = "sha256-HzRriPVaMn6qDu6h/NQjILglO4/0//8J1orV4Uz+XEI=";
cargoSha256 = "0v0657hh8ivqaq4sn0saaiz06shxavhrh9mksjlzj7c2ym6cxkih";

# Some tests fail because they need network access.
# However, Travis ensures a proper build.