about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2016-06-02 21:07:10 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-06-02 21:10:58 +0200
commit2c6230522840b22fee04fc884e27eed014acb945 (patch)
treef0800b538ab8141647554b133feb2c5bdf8f3871 /pkgs/applications
parent0e16c80f81d0cd351d5d814db65001176cd81817 (diff)
downloadnixlib-2c6230522840b22fee04fc884e27eed014acb945.tar
nixlib-2c6230522840b22fee04fc884e27eed014acb945.tar.gz
nixlib-2c6230522840b22fee04fc884e27eed014acb945.tar.bz2
nixlib-2c6230522840b22fee04fc884e27eed014acb945.tar.lz
nixlib-2c6230522840b22fee04fc884e27eed014acb945.tar.xz
nixlib-2c6230522840b22fee04fc884e27eed014acb945.tar.zst
nixlib-2c6230522840b22fee04fc884e27eed014acb945.zip
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.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/shutter/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/shutter/default.nix b/pkgs/applications/graphics/shutter/default.nix
index 59cea939bc9a..0d52e563c9de 100644
--- a/pkgs/applications/graphics/shutter/default.nix
+++ b/pkgs/applications/graphics/shutter/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
 
     wrapProgram $out/bin/shutter \
       --set PERL5LIB "${stdenv.lib.makePerlPath perlModules}" \
-      --prefix PATH : "${imagemagick}/bin" \
+      --prefix PATH : "${imagemagick.out}/bin" \
       --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
   '';