From 2c6230522840b22fee04fc884e27eed014acb945 Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Thu, 2 Jun 2016 21:07:10 +0200 Subject: 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. --- pkgs/applications/graphics/shutter/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/applications') 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" ''; -- cgit 1.4.1