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

Commits on Jan 26, 2020

  1. cargo-tree: 0.27.0 -> 0.28.0

    Ma27 committed Jan 26, 2020
    Copy the full SHA
    f71cc3e View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/package-management/cargo-tree/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/package-management/cargo-tree/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, pkgconfig, cmake, curl, libiconv, darwin }:
rustPlatform.buildRustPackage rec {
pname = "cargo-tree";
version = "0.27.0";
version = "0.28.0";

src = fetchFromGitHub {
owner = "sfackler";
repo = "cargo-tree";
rev = "37030742fbf83106707525913ab6c4c3c701cd0e";
sha256 = "1mi52n02j9dmi19af6js0vmmqnl8rf4zxind3cxh401530cd8ml4";
rev = "v${version}";
sha256 = "0wv5zgyx18fypdb4pmgzxvr2gb9w8vgv6aqir3dxhcvcgf2j5c3n";
};

cargoSha256 = "12p9dqlxa1b1sx8572w7hj0rlkkpv3k440pffdyjgyx4s1r9m0s0";
cargoSha256 = "16r7zzkf87v67spahaprc25agwh6d3i0kg73vx8a6w7hgqlk0zwa";

nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ curl ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];