csvquote: fix cross patching

+5 -1
+5 -1
pkgs/by-name/cs/csvquote/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + coreutils, 5 6 patsh, 6 7 }: 7 8 ··· 25 26 patsh 26 27 ]; 27 28 29 + # needed for cross 30 + buildInputs = [ coreutils ]; 31 + 28 32 makeFlags = [ 29 33 "BINDIR=$(out)/bin" 30 34 ]; ··· 35 39 36 40 postInstall = '' 37 41 substituteAllInPlace $out/bin/csvheader 38 - patsh $out/bin/csvheader -fs ${builtins.storeDir} 42 + patsh $out/bin/csvheader -fs ${builtins.storeDir} --path "$HOST_PATH" 39 43 ''; 40 44 41 45 meta = with lib; {