summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-27 12:59:52 +0000
committerGitHub <noreply@github.com>2021-07-27 12:59:52 +0000
commit9f87e8ff74e006f7a9270555ffec883a30247a76 (patch)
treec868c15a44c91d538a595cb3e290f7e668c0906b /pkgs/development/libraries
parent53b87bbae12098a2bf01125b0068c2ae394d2349 (diff)
parent8229cab5fd6e49f226a3be2d569354c32f6191eb (diff)
downloadnixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.tar
nixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.tar.gz
nixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.tar.bz2
nixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.tar.lz
nixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.tar.xz
nixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.tar.zst
nixpkgs-9f87e8ff74e006f7a9270555ffec883a30247a76.zip
Merge pull request #131024 from dan4ik605743/coreaction2
coreaction: init at 4.2.0
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libcsys/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libcsys/default.nix b/pkgs/development/libraries/libcsys/default.nix
new file mode 100644
index 00000000000..cec6e501bb5
--- /dev/null
+++ b/pkgs/development/libraries/libcsys/default.nix
@@ -0,0 +1,31 @@
+{ mkDerivation, lib, fetchFromGitLab, udisks2, qtbase, cmake, ninja, }:
+
+mkDerivation rec {
+  pname = "libcsys";
+  version = "4.2.0";
+
+  src = fetchFromGitLab {
+    owner = "cubocore";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-9LH95uJJIn4FHfnikGi5UCI6nUNW+1cSZnJ/KpZDI5Y=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    ninja
+  ];
+
+  buildInputs = [
+    qtbase
+    udisks2
+  ];
+
+  meta = with lib; {
+    description = "Library for managing drive and getting system resource information in real time";
+    homepage = "https://gitlab.com/cubocore/libcsys";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ dan4ik605743 ];
+    platforms = platforms.linux;
+  };
+}