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

Commits on Jun 22, 2019

  1. cargo-edit: 0.3.2 -> 0.3.3

    killercup committed Jun 22, 2019
    Copy the full SHA
    ef08f42 View commit details
  2. cargo-edit: 0.3.2 -> 0.3.3 (#63650)

    cargo-edit: 0.3.2 -> 0.3.3
    dywedir authored Jun 22, 2019
    Copy the full SHA
    c1d0f39 View commit details
Showing with 3 additions and 15 deletions.
  1. +3 −5 pkgs/tools/package-management/cargo-edit/default.nix
  2. +0 −10 pkgs/tools/package-management/cargo-edit/disable-network-based-test.patch
8 changes: 3 additions & 5 deletions pkgs/tools/package-management/cargo-edit/default.nix
Original file line number Diff line number Diff line change
@@ -4,23 +4,21 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-edit";
version = "0.3.2";
version = "0.3.3";

src = fetchFromGitHub {
owner = "killercup";
repo = pname;
rev = "v${version}";
sha256 = "1z51zvv3sim5mcmr57akzzlkr5phb5f2a9zawff3s7a6lnz9rjzz";
sha256 = "05b64bm9441crw74xlywjg2y3psljk2kf9xsrixaqwbnnahi0mm5";
};

cargoSha256 = "1xy5xcfzfqrgvk5g97qab4ddd3i76nqn8vr0lsfpbbqfc2sm737a";
cargoSha256 = "1hjjw3i35vqr6nxsv2m3izq4x8c2a6wvl5c2kjlpg6shy9j2mjaa";

nativeBuildInputs = lib.optional (!stdenv.isDarwin) pkgconfig;
buildInputs = lib.optional (!stdenv.isDarwin) openssl;
propagatedBuildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;

patches = [ ./disable-network-based-test.patch ];

meta = with lib; {
description = "A utility for managing cargo dependencies from the command line";
homepage = https://github.com/killercup/cargo-edit;

This file was deleted.