Merge pull request #302606 from dotlambda/imagemagick

imagemagick: 7.1.1-29 -> 7.1.1-30

authored by Robert Schütz and committed by GitHub 1fff08d1 f4442639

+8 -7
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 50 51 stdenv.mkDerivation (finalAttrs: { 52 pname = "imagemagick"; 53 - version = "7.1.1-29"; 54 55 src = fetchFromGitHub { 56 owner = "ImageMagick"; 57 repo = "ImageMagick"; 58 rev = finalAttrs.version; 59 - hash = "sha256-W9WbHzmTa0dA9+mOxXu88qmN1mO9ORaH0Nj6r2s1Q+E="; 60 }; 61 62 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
··· 50 51 stdenv.mkDerivation (finalAttrs: { 52 pname = "imagemagick"; 53 + version = "7.1.1-30"; 54 55 src = fetchFromGitHub { 56 owner = "ImageMagick"; 57 repo = "ImageMagick"; 58 rev = finalAttrs.version; 59 + hash = "sha256-btXl1J/WjV+5BZibgUzylVmBrhR3KBK/ZSbP0B2fM5c="; 60 }; 61 62 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+6 -5
pkgs/development/libraries/giflib/default.nix
··· 4 , fetchpatch 5 , fixDarwinDylibNames 6 , pkgsStatic 7 - , imagemagick_light 8 }: 9 10 stdenv.mkDerivation rec { ··· 29 ./mingw-install-exes.patch 30 ]; 31 32 - nativeBuildInputs = [ 33 - imagemagick_light 34 - ] ++ lib.optionals stdenv.isDarwin [ 35 fixDarwinDylibNames 36 ]; 37 ··· 39 "PREFIX=${builtins.placeholder "out"}" 40 ]; 41 42 - postPatch = lib.optionalString stdenv.hostPlatform.isStatic '' 43 # Upstream build system does not support NOT building shared libraries. 44 sed -i '/all:/ s/$(LIBGIFSO)//' Makefile 45 sed -i '/all:/ s/$(LIBUTILSO)//' Makefile
··· 4 , fetchpatch 5 , fixDarwinDylibNames 6 , pkgsStatic 7 }: 8 9 stdenv.mkDerivation rec { ··· 28 ./mingw-install-exes.patch 29 ]; 30 31 + nativeBuildInputs = lib.optionals stdenv.isDarwin [ 32 fixDarwinDylibNames 33 ]; 34 ··· 36 "PREFIX=${builtins.placeholder "out"}" 37 ]; 38 39 + postPatch = '' 40 + # we don't want to build HTML documentation 41 + substituteInPlace doc/Makefile \ 42 + --replace-fail "all: allhtml manpages" "all: manpages" 43 + '' + lib.optionalString stdenv.hostPlatform.isStatic '' 44 # Upstream build system does not support NOT building shared libraries. 45 sed -i '/all:/ s/$(LIBGIFSO)//' Makefile 46 sed -i '/all:/ s/$(LIBUTILSO)//' Makefile