From b6ee9fb5c0d2f5a4049659c01bd0bf405958aaf2 Mon Sep 17 00:00:00 2001 From: Joachim Schiele Date: Fri, 8 Jun 2012 12:20:41 +0000 Subject: [PATCH] fixed wgetpaste to make it work without having to have wget in the profile svn path=/nixpkgs/trunk/; revision=34381 --- pkgs/tools/text/wgetpaste/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/text/wgetpaste/default.nix b/pkgs/tools/text/wgetpaste/default.nix index b2da6602dd3..8cfc26d70cc 100644 --- a/pkgs/tools/text/wgetpaste/default.nix +++ b/pkgs/tools/text/wgetpaste/default.nix @@ -10,6 +10,7 @@ prePatch = '' substituteInPlace wgetpaste --replace "/usr/bin/env bash" "${bash}/bin/bash" + substituteInPlace wgetpaste --replace "LC_ALL=C wget" "LC_ALL=C ${wget}/bin/wget" ''; installPhase = ''