summary refs log tree commit diff
path: root/pkgs/applications
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/applications
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/applications')
-rw-r--r--pkgs/applications/misc/coreaction/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/misc/coreaction/default.nix b/pkgs/applications/misc/coreaction/default.nix
new file mode 100644
index 00000000000..be9d02bf339
--- /dev/null
+++ b/pkgs/applications/misc/coreaction/default.nix
@@ -0,0 +1,41 @@
+{ mkDerivation, lib, fetchFromGitLab, fetchpatch, qtsvg, qtbase, libcsys, libcprime, cmake, ninja, }:
+
+mkDerivation rec {
+  pname = "coreaction";
+  version = "4.2.0";
+
+  src = fetchFromGitLab {
+    owner = "cubocore/coreapps";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-5qEZNLvbgLoAOXij0wXoVw2iyvytsYZikSJDm6F6ddc=";
+  };
+
+  patches = [
+    ## Fix Plugin Error: "The shared library was not found." "libbatery.so"
+    (fetchpatch {
+      url = "https://gitlab.com/cubocore/coreapps/coreaction/-/commit/1d1307363614a117978723eaad2332e6e8c05b28.patch";
+      sha256 = "039x19rsm23l9vxd5mnbl6gvc3is0igahf47kv54v6apz2q72l3f";
+    })
+  ];
+
+  nativeBuildInputs = [
+    cmake
+    ninja
+  ];
+
+  buildInputs = [
+    qtsvg
+    qtbase
+    libcsys
+    libcprime
+  ];
+
+  meta = with lib; {
+    description = "A side bar for showing widgets from the C Suite";
+    homepage = "https://gitlab.com/cubocore/coreapps/coreaction";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ dan4ik605743 ];
+    platforms = platforms.linux;
+  };
+}