From 48f26ba8dd6c097f135d485291399bca6351d121 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:15:18 +0300 Subject: [PATCH] avrdudess: Use makeLibraryPath This affected the hash, presumably it now references correct output of gtk. --- pkgs/applications/misc/avrdudess/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/avrdudess/default.nix b/pkgs/applications/misc/avrdudess/default.nix index 64bca952ff5..1ac74712ff0 100644 --- a/pkgs/applications/misc/avrdudess/default.nix +++ b/pkgs/applications/misc/avrdudess/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { cat >> "$out/bin/avrdudess" << __EOF__ #!${stdenv.shell} - export LD_LIBRARY_PATH="${gtk}/lib:${mono}/lib" + export LD_LIBRARY_PATH="${stdenv.lib.makeLibraryPath [gtk mono]}" # We need PATH from user env for xdg-open to find its tools, which # typically depend on the currently running desktop environment. export PATH="${avrgcclibc}/bin:${avrdude}/bin:${xdg_utils}/bin:\$PATH"