about summary refs log tree commit diff
path: root/pkgs/development/libraries/cimg
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-10-09 10:38:06 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-09 19:01:25 -0300
commit59c39f5a1dce68517b1de1782a93a5990526a028 (patch)
tree0b736706693e0502effbbc14efbbd5a86e190b57 /pkgs/development/libraries/cimg
parente04c25f55833810faae94c9f7732c73e3e0176bb (diff)
cimg: migrate to by-name
Diffstat (limited to 'pkgs/development/libraries/cimg')
-rw-r--r--pkgs/development/libraries/cimg/default.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/pkgs/development/libraries/cimg/default.nix b/pkgs/development/libraries/cimg/default.nix
deleted file mode 100644
index 4ef014bfa521f..0000000000000
--- a/pkgs/development/libraries/cimg/default.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, gmic
-, gmic-qt
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "cimg";
-  version = "3.2.6";
-
-  src = fetchFromGitHub {
-    owner = "GreycLab";
-    repo = "CImg";
-    rev = "v.${finalAttrs.version}";
-    hash = "sha256-HEqjvL16Ca3Al3I6VK50CU6zHFj9Nn/SAXXCfRU4rgo=";
-  };
-
-  outputs = [ "out" "doc" ];
-
-  installPhase = ''
-    runHook preInstall
-
-    install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
-    install -m 644 CImg.h $out/include/
-    cp -dr --no-preserve=ownership plugins/* $out/include/CImg/plugins/
-    cp -dr --no-preserve=ownership examples/* $doc/share/doc/cimg/examples/
-    cp README.txt $doc/share/doc/cimg/
-
-    runHook postInstall
-  '';
-
-  passthru.tests = {
-    # Needs to update them all in lockstep.
-    inherit gmic gmic-qt;
-  };
-
-  meta = {
-    homepage = "http://cimg.eu/";
-    description = "A small, open source, C++ toolkit for image processing";
-    longDescription = ''
-      CImg stands for Cool Image. It is easy to use, efficient and is intended
-      to be a very pleasant toolbox to design image processing algorithms in
-      C++. Due to its generic conception, it can cover a wide range of image
-      processing applications.
-    '';
-    license = lib.licenses.cecill-c;
-    maintainers = [
-      lib.maintainers.AndersonTorres
-      lib.maintainers.lilyinstarlight
-    ];
-    platforms = lib.platforms.unix;
-  };
-})