diskonaut-ng: init at 0.13.2 (#465532)

This commit is contained in:
Pol Dellaiera
2026-07-13 05:44:28 +00:00
committed by GitHub
2 changed files with 46 additions and 0 deletions

View File

@@ -10391,6 +10391,12 @@
githubId = 273582;
name = "greg";
};
gregshuflin = {
email = "greg@everdayimshuflin.com";
github = "neunenak";
githubId = 311545;
name = "Greg Shuflin";
};
greizgh = {
email = "greizgh@ephax.org";
github = "greizgh";

View File

@@ -0,0 +1,40 @@
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
__structuredAttrs = true;
pname = "diskonaut-ng";
version = "0.13.2";
src = fetchFromGitHub {
owner = "neunenak";
repo = "diskonaut";
tag = finalAttrs.version;
hash = "sha256-4gfJnqACJP1lV62Bkuarp85Idoh/H8zQ5W085yNZR5Q=";
};
cargoHash = "sha256-+NwZbR3fRj8Wi95GtsUQFWOyaZ0ekC4chsoJ5rsH3Zg=";
# 1 passed; 44 failed https://hydra.nixos.org/build/148943783/nixlog/1
doCheck = !stdenv.hostPlatform.isDarwin;
passthru.updateScript = nix-update-script { };
meta = {
description = "Terminal disk space navigator";
homepage = "https://github.com/neunenak/diskonaut";
changelog = "https://github.com/neunenak/diskonaut/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
gregshuflin
];
mainProgram = "diskonaut";
};
})