Files
2025-08-14 13:44:34 +02:00

41 lines
850 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
cmake,
qtbase,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qhotkey";
version = "1.5.0-unstable-2025-07-06";
src = fetchFromGitHub {
owner = "Skycoder42";
repo = "qhotkey";
rev = "6c0e98492c59206139f8490706aadeb8ed033057";
hash = "sha256-F+NTVYIB55GlB+p9mgDvJD86n0xOOKMGCRDM8TtnMpo=";
};
dontWrapQtApps = true;
cmakeFlags = [
"-DQT_DEFAULT_MAJOR_VERSION=${lib.versions.major qtbase.version}"
];
nativeBuildInputs = [
cmake
];
buildInputs = [
qtbase
];
meta = {
homepage = "https://github.com/Skycoder42/QHotkey";
description = "Global shortcut/hotkey for Desktop Qt-Applications";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ dmkhitaryan ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
})