From daa8ba26c94fff99e963a8739311ccb2033eda1c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Apr 2016 13:23:56 +0300 Subject: [PATCH] atomEnv: use makeSearchPathOutput --- pkgs/applications/editors/atom/env.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/atom/env.nix b/pkgs/applications/editors/atom/env.nix index d91d8a4ecbe4..dbfc2ebb6b38 100644 --- a/pkgs/applications/editors/atom/env.nix +++ b/pkgs/applications/editors/atom/env.nix @@ -13,7 +13,7 @@ let ]; libPathNative = lib.makeLibraryPath packages; - libPath64 = lib.makeSearchPathOutputs "lib64" ["lib"] packages; + libPath64 = lib.makeSearchPathOutput "lib" "lib64" packages; libPath = "${libPathNative}:${libPath64}"; in { inherit packages libPath; }