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: cc9505aab1db
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1737cd07ca0c
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 16, 2019

  1. cargo-make: 0.22.2 -> 0.23.0

    https://github.com/sagiegurari/cargo-make/releases/tag/0.23.0
    
    Please note that the cargo hash didn't change since no dependencies were
    updated (only the package version in Cargo.lock).
    Ma27 committed Oct 16, 2019
    Copy the full SHA
    1737cd0 View commit details
Showing with 4 additions and 4 deletions.
  1. +1 −1 pkgs/development/tools/rust/cargo-make/Cargo.lock
  2. +3 −3 pkgs/development/tools/rust/cargo-make/default.nix
2 changes: 1 addition & 1 deletion pkgs/development/tools/rust/cargo-make/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pkgs/development/tools/rust/cargo-make/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-make";
version = "0.22.2";
version = "0.23.0";

src =
let
source = fetchFromGitHub {
owner = "sagiegurari";
repo = pname;
rev = version;
sha256 = "17q6lcrn9xwgy20vvv7m3wxnf85k334751iksk89h9l1s2d36bcl";
sha256 = "1g62k0g9b5m8jaxxkbx0d59k8yb3di59l3p9m32hx617rn4k5wjd";
};
in
runCommand "cargo-make-src" {} ''
@@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec {
description = "A Rust task runner and build tool";
homepage = "https://github.com/sagiegurari/cargo-make";
license = licenses.asl20;
maintainers = with maintainers; [ xrelkd ];
maintainers = with maintainers; [ xrelkd ma27 ];
platforms = platforms.all;
};
}