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

Commits on Oct 30, 2019

  1. cargo-watch: 7.2.1 -> 7.2.2

    xrelkd committed Oct 30, 2019
    Copy the full SHA
    f85d359 View commit details

Commits on Oct 31, 2019

  1. Merge pull request #72288 from xrelkd/update/cargo-watch

    cargo-watch: 7.2.1 -> 7.2.2
    marsam authored Oct 31, 2019
    Copy the full SHA
    86b7e33 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/rust/cargo-watch/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/rust/cargo-watch/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-watch";
version = "7.2.1";
version = "7.2.2";

src = fetchFromGitHub {
owner = "passcod";
repo = pname;
rev = "v${version}";
sha256 = "13zjsypj0ay9xb5j5fhl3yfn57kp2yngl138vmnyfk1h7gjdxpk3";
sha256 = "1ld45xqmmi13x1wgwm9fa7sck2jiw34pr9xzdwrx5ygl81hf3plv";
};

cargoSha256 = "1c3h9il3y0swvcdrrqgh5r7di522i1cc8zk1kfmx97chy8bhsqvg";
cargoSha256 = "1g8qg7nicdan0w39rfzin573lgx3sbfr3b9hn8k3vgyq0jg6ywh7";

buildInputs = lib.optional stdenv.isDarwin CoreServices;