nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitLab,
5 qt6,
6 cmake,
7 ninja,
8 libcprime,
9 libcsys,
10}:
11
12stdenv.mkDerivation (finalAttrs: {
13 pname = "coretime";
14 version = "5.0.1";
15
16 src = fetchFromGitLab {
17 owner = "cubocore/coreapps";
18 repo = "coretime";
19 tag = "v${finalAttrs.version}";
20 hash = "sha256-RgaIYZ410/M/PHTJC3ja7wEb3HqPrNkBpEIsUK102qw=";
21 };
22
23 nativeBuildInputs = [
24 cmake
25 ninja
26 qt6.wrapQtAppsHook
27 ];
28
29 buildInputs = [
30 qt6.qtbase
31 qt6.qtmultimedia
32 libcprime
33 libcsys
34 ];
35
36 meta = {
37 description = "Time related task manager from the C Suite";
38 mainProgram = "coretime";
39 homepage = "https://gitlab.com/cubocore/coreapps/coretime";
40 license = lib.licenses.gpl3Plus;
41 maintainers = with lib.maintainers; [ ];
42 platforms = lib.platforms.linux;
43 };
44})