mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
0c1b3cb64a
- new library required by owncloud-client 5.0.0
34 lines
795 B
Nix
34 lines
795 B
Nix
{ 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}";
|
|
};
|
|
}
|