zfs_unstable: 2.3.0-rc3 -> 2.3.0-rc4 (#365045)
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / coreaction / default.nix
blob944dc109c0e9f82ba04d210729b7d63f317c9931
2   mkDerivation,
3   lib,
4   fetchFromGitLab,
5   qtsvg,
6   qtbase,
7   cmake,
8   ninja,
9   libcprime,
10   libcsys,
13 mkDerivation rec {
14   pname = "coreaction";
15   version = "4.5.0";
17   src = fetchFromGitLab {
18     owner = "cubocore/coreapps";
19     repo = pname;
20     rev = "v${version}";
21     hash = "sha256-qhYuLqWXCpOJCqg+JJ8VQQokNEQVwxpHAtYGITxHZ3Y=";
22   };
24   nativeBuildInputs = [
25     cmake
26     ninja
27   ];
29   buildInputs = [
30     qtsvg
31     qtbase
32     libcprime
33     libcsys
34   ];
36   meta = with lib; {
37     description = "Side bar for showing widgets from the C Suite";
38     mainProgram = "coreaction";
39     homepage = "https://gitlab.com/cubocore/coreapps/coreaction";
40     license = licenses.gpl3Plus;
41     maintainers = with maintainers; [ dan4ik605743 ];
42     platforms = platforms.linux;
43   };