vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / libcsys / default.nix
blob3a36c40fd28133fbe0ae2ee84460db407298a552
1 { mkDerivation, lib, fetchFromGitLab, udisks2, qtbase, cmake, ninja }:
3 mkDerivation rec {
4   pname = "libcsys";
5   version = "4.5.0";
7   src = fetchFromGitLab {
8     owner = "cubocore";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-1MHyx01w+dCeAeumcSXRBStgAec2yu1rLwaZaCXRgTc=";
12   };
14   nativeBuildInputs = [
15     cmake
16     ninja
17   ];
19   buildInputs = [
20     qtbase
21     udisks2
22   ];
24   meta = with lib; {
25     description = "Library for managing drive and getting system resource information in real time";
26     homepage = "https://gitlab.com/cubocore/libcsys";
27     license = licenses.gpl3Plus;
28     maintainers = with maintainers; [ dan4ik605743 ];
29     platforms = platforms.linux;
30   };