8 stdenv.mkDerivation rec {
9 pname = "KDSingleApplication";
12 src = fetchFromGitHub {
15 rev = "refs/tags/v${version}";
16 hash = "sha256-Ymm+qOZMWULg7u5xEpGzcAfIrbWBQ3jsndnFSnh6/PA=";
19 nativeBuildInputs = [ cmake ];
20 buildInputs = [ qt6.qtbase ];
22 cmakeFlags = [ "-DKDSingleApplication_QT6=true" ];
23 dontWrapQtApps = true;
26 description = "KDAB's helper class for single-instance policy applications";
27 homepage = "https://www.kdab.com/";
28 maintainers = with maintainers; [ hellwolf ];
29 platforms = platforms.unix;
30 license = licenses.mit;
31 changelog = "https://github.com/KDAB/KDSingleApplication/releases/tag/v${version}";