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

Commits on Jun 6, 2020

  1. dua: 2.6.0 -> 2.6.1

    r-ryantm committed Jun 6, 2020
    Copy the full SHA
    ec9b715 View commit details
  2. Merge pull request #89602 from r-ryantm/auto-update/dua

    dua: 2.6.0 -> 2.6.1
    dywedir authored Jun 6, 2020
    Copy the full SHA
    6cfeaa6 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/dua/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/dua/default.nix
Original file line number Diff line number Diff line change
@@ -2,21 +2,21 @@

rustPlatform.buildRustPackage rec {
pname = "dua";
version = "2.6.0";
version = "2.6.1";

src = fetchFromGitHub {
owner = "Byron";
repo = "dua-cli";
rev = "v${version}";
sha256 = "1697z9j0xd4il01bcvz1xwzkcg5mbkpp207mshb9csdhwi9a50wg";
sha256 = "0wq6cqznbpkiy9vz3slpcnxlsxff6gx5x7fsbd67q6jv5zhkn881";
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
extraPostFetch = ''
rm -r $out/tests/fixtures
'';
};

cargoSha256 = "1rczq41jpds7kfyf31nxj4v8rk9rccijjixpznhlriam6xhgm90b";
cargoSha256 = "096c6i1hqyygaifnm2kg53x22a8hhfxfz22qlssh1rw79bj82q0x";

doCheck = false;