nix-du: 1.2.1 -> 1.2.2

Lix support

Co-Authored-By: ethancedwards8
This commit is contained in:
Guillaume Girol
2025-03-09 12:00:00 +00:00
co-authored by ethancedwards8
parent 73cf49b8ad
commit 5fd9608ed4
@@ -13,17 +13,17 @@
rustPlatform.buildRustPackage rec {
pname = "nix-du";
version = "1.2.1";
version = "1.2.2";
src = fetchFromGitHub {
owner = "symphorien";
repo = "nix-du";
rev = "v${version}";
sha256 = "sha256-WImnfkBU17SFQG1DzVUdsNq3hkiISNjAVZr2xGbgwHg=";
tag = "v${version}";
hash = "sha256-RkGPXjog2XR3ISlWMQZ1rzy3SwE5IPAKP09FIZ6LwkM=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-HUyqkO9uPrfqTCljJzKfQ5sRCh4uj8XL4wSkwmc/Z8A=";
cargoHash = "sha256-rrBFgE3Tz68gBQbz006RSdsqacSZqON78NM4FNi+wrk=";
doCheck = true;
nativeCheckInputs = [
@@ -49,5 +49,6 @@ rustPlatform.buildRustPackage rec {
maintainers = [ maintainers.symphorien ];
platforms = platforms.unix;
mainProgram = "nix-du";
changelog = "https://github.com/symphorien/nix-du/blob/v${version}/CHANGELOG.md";
};
}