Pantheon updates 2024-12-13 (#364951)
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / coretime / default.nix
blobb210b0ca766c21688deb83d994b5b34eaca5201e
2   mkDerivation,
3   lib,
4   fetchFromGitLab,
5   qtbase,
6   qtmultimedia,
7   cmake,
8   ninja,
9   libcprime,
10   libcsys,
13 mkDerivation rec {
14   pname = "coretime";
15   version = "4.5.0";
17   src = fetchFromGitLab {
18     owner = "cubocore/coreapps";
19     repo = pname;
20     rev = "v${version}";
21     hash = "sha256-0x3014UG861lXRwIBpYiiYVPmhln9Q20jJ4tIO50Tjs=";
22   };
24   nativeBuildInputs = [
25     cmake
26     ninja
27   ];
29   buildInputs = [
30     qtbase
31     qtmultimedia
32     libcprime
33     libcsys
34   ];
36   meta = with lib; {
37     description = "Time related task manager from the C Suite";
38     mainProgram = "coretime";
39     homepage = "https://gitlab.com/cubocore/coreapps/coretime";
40     license = licenses.gpl3Plus;
41     maintainers = with maintainers; [ dan4ik605743 ];
42     platforms = platforms.linux;
43   };