summary refs log tree commit diff
path: root/pkgs/development/libraries/cimg/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-10-15 15:30:43 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-10-15 15:30:43 -0300
commit48b8604bbe99089e7c5f2d5c82dd1d004bcedc68 (patch)
tree9aa37f704b743c3f36b79e82818699b4a91ee65b /pkgs/development/libraries/cimg/default.nix
parente242eef8a45f7e149f7af64ae07e0c45ab51c044 (diff)
downloadnixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.tar
nixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.tar.gz
nixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.tar.bz2
nixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.tar.lz
nixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.tar.xz
nixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.tar.zst
nixpkgs-48b8604bbe99089e7c5f2d5c82dd1d004bcedc68.zip
cimg: 2.9.8 -> 2.9.9
Diffstat (limited to 'pkgs/development/libraries/cimg/default.nix')
-rw-r--r--pkgs/development/libraries/cimg/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/libraries/cimg/default.nix b/pkgs/development/libraries/cimg/default.nix
index 69e16a8922a..09a407fc3bc 100644
--- a/pkgs/development/libraries/cimg/default.nix
+++ b/pkgs/development/libraries/cimg/default.nix
@@ -5,27 +5,29 @@
 
 stdenv.mkDerivation rec {
   pname = "cimg";
-  version = "2.9.8";
+  version = "2.9.9";
 
   src = fetchFromGitHub {
     owner = "dtschump";
     repo = "CImg";
     rev = "v.${version}";
-    sha256 = "sha256-nEICs1oAIXu6/5O4R3mbwig1OY+HDIWWeQjrcYnCwT0=";
+    hash = "sha256-DWyqVN7v+j2XCArv4jmrD45XKWMNhd2DddJHH3gQWQY=";
   };
 
+  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 examples/* $doc/share/doc/cimg/examples/
     cp -dr --no-preserve=ownership plugins/* $out/include/CImg/plugins/
     cp README.txt $doc/share/doc/cimg/
+
     runHook postInstall
   '';
 
-  outputs = [ "out" "doc" ];
-
   meta = with lib; {
     homepage = "http://cimg.eu/";
     description = "A small, open source, C++ toolkit for image processing";