qdiskinfo: 0.3 -> 0.3-unstable-2025-05-08 (#407327)

This commit is contained in:
Aleksana
2025-05-16 16:21:49 +08:00
committed by GitHub
+11 -6
View File
@@ -8,6 +8,7 @@
qt6,
qdiskinfo,
themeBundle ? null,
unstableGitUpdater,
}:
let
@@ -33,15 +34,15 @@ assert
&& themeBundle' ? rightCharacter
);
stdenv.mkDerivation (finalAttrs: {
stdenv.mkDerivation {
pname = "qdiskinfo";
version = "0.3";
version = "0.3-unstable-2025-05-08";
src = fetchFromGitHub {
owner = "edisionnano";
repo = "QDiskInfo";
tag = finalAttrs.version;
hash = "sha256-0zF3Nc5K8+K68HOSy30ieYvYP9/oSkTe0+cp0hVo9Gs=";
rev = "3416cc7ac19b25bb78eab135cf5e0b281e506de0";
hash = "sha256-loL6fzOSoZyCmrs7joHQCsCStLGgKxmMuqFmtADWTW0=";
};
nativeBuildInputs = [
@@ -103,14 +104,18 @@ stdenv.mkDerivation (finalAttrs: {
themeName: themeBundle:
(qdiskinfo.override { inherit themeBundle; }).overrideAttrs { pname = "qdiskinfo-${themeName}"; }
);
updateScript = unstableGitUpdater { };
};
meta = {
description = "CrystalDiskInfo alternative for Linux";
homepage = "https://github.com/edisionnano/QDiskInfo";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ roydubnium ];
maintainers = with lib.maintainers; [
roydubnium
ryand56
];
platforms = lib.platforms.linux;
mainProgram = "QDiskInfo";
};
})
}