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

Commits on Jan 29, 2021

  1. dua: 2.10.9 -> 2.10.10

    r-ryantm committed Jan 29, 2021
    Copy the full SHA
    830eb54 View commit details
  2. Merge pull request #111082 from r-ryantm/auto-update/dua

    dua: 2.10.9 -> 2.10.10
    danieldk authored Jan 29, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2e474e8 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.10.9";
version = "2.10.10";

src = fetchFromGitHub {
owner = "Byron";
repo = "dua-cli";
rev = "v${version}";
sha256 = "sha256-Dx6yVgmi0CTKpBKQ5US+UpiI0d1S4vPZSbRWmmnHIMk=";
sha256 = "sha256-Rt+60j1+uwL6g4HGc+xdUzGK6nanGfRYbekO54iKsPE=";
# 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 = "sha256-OFmDllEQKeByzra/XttQzdlBlahHvKsZM1ShsmV1OcM=";
cargoSha256 = "sha256-6L1J5RHI657Z03rMmhwEzgpQ0//dykqGi8bI2Enc3N8=";

doCheck = false;