kdsingleapplication: init at 1.0.0

- new library required by owncloud-client 5.0.0
This commit is contained in:
Miao, ZhiCheng 2023-10-26 23:45:54 +03:00
parent d0b83ae0fa
commit 0c1b3cb64a
No known key found for this signature in database
GPG key ID: 1080B4863AD0F5D1

View file

@ -0,0 +1,33 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qt6
}:
stdenv.mkDerivation rec {
pname = "KDSingleApplication";
version = "1.0.0";
src = fetchFromGitHub {
owner = "KDAB";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-5YprRbfiFI2UGMJqDf+3VDwXV904USEpMEpoNm0g7KY=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qt6.qtbase ];
cmakeFlags = [ "-DKDSingleApplication_QT6=true" ];
dontWrapQtApps = true;
meta = with lib; {
description = "KDAB's helper class for single-instance policy applications";
homepage = "https://www.kdab.com/";
maintainers = with maintainers; [ hellwolf ];
platforms = platforms.unix;
license = licenses.mit;
changelog = "https://github.com/KDAB/KDSingleApplication/releases/tag/v${version}";
};
}