mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, magic-enum
|
|
, range-v3
|
|
, spdlog
|
|
, qtbase
|
|
, qtconnectivity
|
|
, qttools
|
|
, qtlanguageserver
|
|
, qtwayland
|
|
, wrapQtAppsHook
|
|
, libXScrnSaver
|
|
, nix-update-script
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kemai";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AlexandrePTJ";
|
|
repo = "kemai";
|
|
rev = version;
|
|
hash = "sha256-wclBAgeDyAIw/nGF6lzIwbwdoZMBTu+tjxsnIxIkODM=";
|
|
};
|
|
|
|
patches = [
|
|
# Backport the fix for an issue where LICENSE.txt ends up in /bin
|
|
# Remove in next release
|
|
(fetchpatch {
|
|
url = "https://github.com/AlexandrePTJ/kemai/commit/e279679dd7308efebe004252d168d7308f3b99ce.patch";
|
|
hash = "sha256-5cmRRMVATf4ul4HhaQKiE0yTN2qd+MfNFQzGTLLpOyg=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtconnectivity
|
|
qttools
|
|
qtlanguageserver
|
|
libXScrnSaver
|
|
magic-enum
|
|
range-v3
|
|
spdlog
|
|
] ++ lib.optional stdenv.hostPlatform.isLinux qtwayland;
|
|
cmakeFlags = [
|
|
"-DFETCHCONTENT_FULLY_DISCONNECTED=ON"
|
|
"-DFETCHCONTENT_QUIET=OFF"
|
|
"-DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Kimai desktop client written in QT6";
|
|
homepage = "https://github.com/AlexandrePTJ/kemai";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ poelzi ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin;
|
|
mainProgram = "Kemai";
|
|
};
|
|
}
|