about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-11-05 00:02:01 +0000
committerGitHub <noreply@github.com>2021-11-05 00:02:01 +0000
commitac4cb43546d04ea2503a096bb859ac54923b4288 (patch)
tree024ad704738f354f9cf2e8c4793bd80fda7bb731 /pkgs/applications/graphics
parentc12e3c11436727de97ba19b4d13600f4356f7280 (diff)
parentb2da1aff69a1fbf44875d55c10086a8554c3eb5f (diff)
Merge staging-next into staging
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/coreimage/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/applications/graphics/coreimage/default.nix b/pkgs/applications/graphics/coreimage/default.nix
deleted file mode 100644
index 1dcff1f6e8f25..0000000000000
--- a/pkgs/applications/graphics/coreimage/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ mkDerivation, lib, fetchFromGitLab, libcprime, qtbase, cmake, ninja }:
-
-mkDerivation rec {
-  pname = "coreimage";
-  version = "4.2.0";
-
-  src = fetchFromGitLab {
-    owner = "cubocore/coreapps";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-dxRHzSG5ea1MhpTjgZbFztV9mElEaeOK4NsmieSgf5Q";
-  };
-
-  nativeBuildInputs = [
-    cmake
-    ninja
-  ];
-
-  buildInputs = [
-    qtbase
-    libcprime
-  ];
-
-  meta = with lib; {
-    description = "An image viewer from the C Suite";
-    homepage = "https://gitlab.com/cubocore/coreapps/coreimage";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ dan4ik605743 ];
-    platforms = platforms.linux;
-  };
-}