picom: add version check hook

This commit is contained in:
Gutyina Gergő 2024-11-13 09:17:39 +01:00
parent 3b5b0af7c6
commit cd518d05b1
No known key found for this signature in database

View File

@ -30,6 +30,7 @@
xorgproto,
xwininfo,
withDebug ? false,
versionCheckHook,
nix-update-script,
}:
@ -101,6 +102,12 @@ stdenv.mkDerivation (finalAttrs: {
cp -r ../src $out/
'';
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
passthru = {
updateScript = nix-update-script { };
};