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

Commits on Apr 20, 2019

  1. cargo-expand: 0.4.10 -> 0.4.11

    xrelkd committed Apr 20, 2019
    Copy the full SHA
    b6daf2d View commit details
  2. Merge pull request #59917 from xrelkd/update/cargo-expand

    cargo-expand: 0.4.10 -> 0.4.11
    dywedir authored Apr 20, 2019
    Copy the full SHA
    b8243d1 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/rust/cargo-expand/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/rust/cargo-expand/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,19 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-expand";
version = "0.4.10";
version = "0.4.11";

src = fetchFromGitHub {
owner = "dtolnay";
repo = pname;
rev = version;
sha256 = "1f90v67clmql2bb32sgs7c48q8nhyw2pfk4hpkiy8qll8fypjgik";
sha256 = "051hy2320mqdxvafhafwnk1n8q2sq2d7jyhx5bbxvqmjjm55lg8h";
};

cargoSha256 = "042s28p68jz3my2q1crmq7xzcajwxmcprgg9z7r9ffhrybk4jvwz";
cargoSha256 = "0d1j01nrq5j0yrgd85lnvg1mzalcd8xadkza3yvwnqzf554idrcy";

meta = with stdenv.lib; {
description = ''A utility and Cargo subcommand designed to let people expand macros in their Rust source code'';
description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
homepage = https://github.com/dtolnay/cargo-expand;
license = with licenses; [ mit asl20 ];
platforms = platforms.all;