Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
121 lines
2.9 KiB
Nix
121 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
smartmontools,
|
|
fetchFromGitHub,
|
|
fetchzip,
|
|
cmake,
|
|
qt6,
|
|
qdiskinfo,
|
|
themeBundle ? null,
|
|
nix-update-script,
|
|
}:
|
|
|
|
let
|
|
isThemed = themeBundle != null && themeBundle != { };
|
|
themeBundle' =
|
|
if isThemed then
|
|
{
|
|
rightCharacter = false;
|
|
}
|
|
// themeBundle
|
|
else
|
|
{ rightCharacter = false; };
|
|
in
|
|
|
|
# check theme bundle
|
|
assert
|
|
isThemed
|
|
-> (
|
|
themeBundle' ? src
|
|
&& themeBundle' ? paths.bgDark
|
|
&& themeBundle' ? paths.bgLight
|
|
&& themeBundle' ? paths.status
|
|
&& themeBundle' ? rightCharacter
|
|
);
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qdiskinfo";
|
|
version = "0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "edisionnano";
|
|
repo = "QDiskInfo";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-FufbF0oEqpYgXnfzUZJ3tTN2jJoIQX4UB3yURRV7y00=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qt6.qtbase
|
|
qt6.qtwayland
|
|
smartmontools
|
|
];
|
|
|
|
cmakeBuildType = "MinSizeRel";
|
|
|
|
cmakeFlags = [
|
|
"-DQT_VERSION_MAJOR=6"
|
|
]
|
|
++ lib.optionals isThemed [ "-DINCLUDE_OPTIONAL_RESOURCES=ON" ]
|
|
++ (
|
|
if themeBundle'.rightCharacter then
|
|
[ "-DCHARACTER_IS_RIGHT=ON" ]
|
|
else
|
|
[ "-DCHARACTER_IS_RIGHT=OFF" ]
|
|
);
|
|
|
|
postUnpack = ''
|
|
cp -r $sourceRoot $TMPDIR/src
|
|
sourceRoot=$TMPDIR/src
|
|
'';
|
|
patchPhase = lib.optionalString isThemed ''
|
|
export SRCPATH=${themeBundle'.src}/CdiResource/themes/
|
|
export DESTPATH=$sourceRoot/dist/theme/
|
|
mkdir -p $DESTPATH
|
|
if [ -n "${themeBundle'.paths.bgDark}" ]; then
|
|
cp $SRCPATH/${themeBundle'.paths.bgDark} $DESTPATH/bg_dark.png
|
|
fi
|
|
if [ -n "${themeBundle'.paths.bgLight}" ]; then
|
|
cp $SRCPATH/${themeBundle'.paths.bgLight} $DESTPATH/bg_light.png
|
|
fi
|
|
cp $SRCPATH/${themeBundle'.paths.status}/SDdiskStatusBad-300.png $DESTPATH/bad.png
|
|
cp $SRCPATH/${themeBundle'.paths.status}/SDdiskStatusCaution-300.png $DESTPATH/caution.png
|
|
cp $SRCPATH/${themeBundle'.paths.status}/SDdiskStatusGood-300.png $DESTPATH/good.png
|
|
cp $SRCPATH/${themeBundle'.paths.status}/SDdiskStatusUnknown-300.png $DESTPATH/unknown.png
|
|
'';
|
|
postInstall = ''
|
|
wrapProgram $out/bin/QDiskInfo \
|
|
--suffix PATH : ${smartmontools}/bin
|
|
'';
|
|
|
|
passthru =
|
|
let
|
|
themeSources = import ./sources.nix { inherit fetchzip; };
|
|
in
|
|
rec {
|
|
themeBundles = import ./themes.nix { inherit themeSources; };
|
|
tests = lib.flip lib.mapAttrs themeBundles (
|
|
themeName: themeBundle:
|
|
(qdiskinfo.override { inherit themeBundle; }).overrideAttrs { pname = "qdiskinfo-${themeName}"; }
|
|
);
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "CrystalDiskInfo alternative for Linux";
|
|
homepage = "https://github.com/edisionnano/QDiskInfo";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
roydubnium
|
|
ryand56
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "QDiskInfo";
|
|
};
|
|
})
|