disktui: init at 1.2.0 (#467941)

This commit is contained in:
Aleksana
2025-12-14 09:52:02 +00:00
committed by GitHub
2 changed files with 30 additions and 0 deletions
+5
View File
@@ -11190,6 +11190,11 @@
githubId = 3698237;
name = "ImUrX";
};
Inarizxc = {
name = "Inarizxc";
github = "Inarizxc";
githubId = 128096405;
};
inclyc = {
email = "i@lyc.dev";
github = "inclyc";
+25
View File
@@ -0,0 +1,25 @@
{
fetchFromGitHub,
rustPlatform,
lib,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "disktui";
version = "1.2.0";
src = fetchFromGitHub {
owner = "Maciejonos";
repo = "disktui";
tag = "v${finalAttrs.version}";
hash = "sha256-FDpdOpyvdU2Uw22am/Vkdls+s6ZdmodNt3WAQd8L53I=";
};
cargoHash = "sha256-CBSd/zeThyhmsaKx8Pg+u14QEQVq5nPLcRKet9n8WC8=";
meta = {
description = "TUI for disk management on Linux";
homepage = "https://github.com/Maciejonos/disktui";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Inarizxc ];
platforms = lib.platforms.linux;
mainProgram = "disktui";
};
})