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

Commits on Jun 4, 2019

  1. cargo-edit: 0.3.1 -> 0.3.2

    dywedir committed Jun 4, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    ed2be59 View commit details

Commits on Jun 6, 2019

  1. cargo-edit: 0.3.1 -> 0.3.2 (#62672)

    cargo-edit: 0.3.1 -> 0.3.2
    dywedir authored Jun 6, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    93725dd View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/package-management/cargo-edit/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/package-management/cargo-edit/default.nix
Original file line number Diff line number Diff line change
@@ -3,17 +3,17 @@
, openssl, pkgconfig }:

rustPlatform.buildRustPackage rec {
name = "cargo-edit-${version}";
version = "0.3.1";
pname = "cargo-edit";
version = "0.3.2";

src = fetchFromGitHub {
owner = "killercup";
repo = "cargo-edit";
repo = pname;
rev = "v${version}";
sha256 = "0g3dikwk6n48dmhx9qchmzyrhcr40242lhvlcyk1nqbpvs3b51fm";
sha256 = "1z51zvv3sim5mcmr57akzzlkr5phb5f2a9zawff3s7a6lnz9rjzz";
};

cargoSha256 = "1i7l21j8x2sm7m1mcyvqnggg6csf893h0gfrgyd8xyfiphl30jvj";
cargoSha256 = "1xy5xcfzfqrgvk5g97qab4ddd3i76nqn8vr0lsfpbbqfc2sm737a";

nativeBuildInputs = lib.optional (!stdenv.isDarwin) pkgconfig;
buildInputs = lib.optional (!stdenv.isDarwin) openssl;