Skip to content

Commit

Permalink
Merge pull request #321849 from rhendric/rhendric/imagemagick
Browse files Browse the repository at this point in the history
imagemagick: 7.1.1-32 -> 7.1.1-33
  • Loading branch information
JohnRTitor committed Jun 23, 2024
2 parents b555d32 + 429e84c commit fa208e2
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pkgs/applications/graphics/ImageMagick/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
, nixos-icons
, perlPackages
, python3
, fetchpatch
}:

assert libXtSupport -> libX11Support;
Expand All @@ -50,15 +51,24 @@ in

stdenv.mkDerivation (finalAttrs: {
pname = "imagemagick";
version = "7.1.1-32";
version = "7.1.1-33";

src = fetchFromGitHub {
owner = "ImageMagick";
repo = "ImageMagick";
rev = finalAttrs.version;
hash = "sha256-9pDxnUNMmrwnP4rrR41OSZOJZjQnlVvedpLvMZJJnJo=";
hash = "sha256-URGcJDgvRdpYZoECyVeSd0ut1Nkl0Sx2pDhYpi8Yf6o=";
};

patches = [
# Fixes 7.1.1-32 -> 7.1.1-33 regression that, notably, affects
# perlPackages.ImageMagick tests. Should be in the next release.
(fetchpatch {
url = "https://github.com/ImageMagick/ImageMagick/commit/bdc6c09cec64fd8e1570ee3edf5647acde336272.patch";
hash = "sha256-cfmti9DXFhvn0UasmW0vwrNp+Lfepyrnp6ijk+1sJo8=";
})
];

outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
outputMan = "out"; # it's tiny

Expand Down

0 comments on commit fa208e2

Please sign in to comment.