anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / corestats / default.nix
bloba6d12a0d2c28a8319b1ee753919d4718fd4018d6
1 { mkDerivation, lib, fetchFromGitLab, qtbase, lm_sensors, cmake, ninja, libcprime, libcsys }:
3 mkDerivation rec {
4   pname = "corestats";
5   version = "4.5.0";
7   src = fetchFromGitLab {
8     owner = "cubocore/coreapps";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-584dSlXhPfvTBeDjex1o2TZPoG40tl1fNDiIYqjyzOI=";
12   };
14   nativeBuildInputs = [
15     cmake
16     ninja
17   ];
19   buildInputs = [
20     qtbase
21     lm_sensors
22     libcprime
23     libcsys
24   ];
26   meta = with lib; {
27     description = "System resource viewer from the C Suite";
28     mainProgram = "corestats";
29     homepage = "https://gitlab.com/cubocore/coreapps/corestats";
30     license = licenses.gpl3Plus;
31     maintainers = with maintainers; [ dan4ik605743 ];
32     platforms = platforms.linux;
33   };