shutter: fix runtime error (missing imagemagick)

Fixes this:

$ shutter
ERROR: imagemagick is missing --> aborting!

Due to 73f1f5eb3969743fe459e7cc36cfb766c7f5318a
("imagemagick: split dev output to fix #9604") which was committed in
the same period as shutter was added to nixpkgs.

+1 -1
+1 -1
pkgs/applications/graphics/shutter/default.nix
··· 27 27 28 28 wrapProgram $out/bin/shutter \ 29 29 --set PERL5LIB "${stdenv.lib.makePerlPath perlModules}" \ 30 - --prefix PATH : "${imagemagick}/bin" \ 30 + --prefix PATH : "${imagemagick.out}/bin" \ 31 31 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" 32 32 ''; 33 33