Unverified Commit 7ec6a70e authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

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

parents 5d00105b 87e7461c
Loading
Loading
Loading
Loading
+11 −6
Original line number Diff line number Diff line
@@ -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";
  };
})
}