From acd025cc44b6cb081ef30938a5c1cd38b75a2e3d Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Sun, 6 Jul 2025 22:08:01 +0200 Subject: [PATCH] dust: 1.2.1 -> 1.2.2 Changelog: https://github.com/bootandy/dust/releases/tag/v1.2.2 Diff: https://github.com/bootandy/dust/compare/v1.2.1...v1.2.2 --- pkgs/by-name/du/dust/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/du/dust/package.nix b/pkgs/by-name/du/dust/package.nix index 8a27503204b5..9ec638ec6c1f 100644 --- a/pkgs/by-name/du/dust/package.nix +++ b/pkgs/by-name/du/dust/package.nix @@ -12,13 +12,13 @@ rustPlatform.buildRustPackage (finalAttrs: { # Since then, `dust` has been freed up, allowing this package to take that attribute. # However in order for tools like `nix-env` to detect package updates, keep `du-dust` for pname. pname = "du-dust"; - version = "1.2.1"; + version = "1.2.2"; src = fetchFromGitHub { owner = "bootandy"; repo = "dust"; tag = "v${finalAttrs.version}"; - hash = "sha256-3Mk2gPlnm2kTRbn74T1YDH/DnjAyhFZQFK83OQaDNeo="; + hash = "sha256-tj+prO7KZrw0lrZahbw0c8TcfNrIc1Z08Tm1MHpOFLM="; # Remove unicode file names which leads to different checksums on HFS+ # vs. other filesystems because of unicode normalisation. postFetch = '' @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: { }; useFetchCargoVendor = true; - cargoHash = "sha256-IZv4XQmBvxUp5k5bn5B4qTJAVBrRO0OZaUlqCni6NpI="; + cargoHash = "sha256-1pKk41dQlcrPzJ01uvo87G9iTDiBq9XHGOoZ0OH4Mls="; nativeBuildInputs = [ installShellFiles ];