summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2020-09-02 16:16:49 -0400
committerJohn Ericson <git@JohnEricson.me>2020-09-02 16:16:49 -0400
commita47d059689df48f07f466d719e5e6f26fe4f1e33 (patch)
treec3b4f9aa1760cc662c01c585a1d0ba172271f1f9 /pkgs/shells
parent5c78154170568c3ca8406496af9eeffba6dde47c (diff)
dash: Fix cross build
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/dash/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
index f9dd578ad98b..3f344f673f16 100644
--- a/pkgs/shells/dash/default.nix
+++ b/pkgs/shells/dash/default.nix
@@ -1,4 +1,4 @@
-{ autoreconfHook, lib, stdenv, fetchurl }:
+{ stdenv, buildPackages, autoreconfHook, fetchurl }:
stdenv.mkDerivation rec {
name = "dash-0.5.11.1";
@@ -11,8 +11,9 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
# Temporary fix until a proper one is accepted upstream
- patches = lib.lists.optional stdenv.isDarwin ./0001-fix-dirent64-et-al-on-darwin.patch;
- nativeBuildInputs = lib.lists.optional stdenv.isDarwin autoreconfHook;
+ patches = stdenv.lib.optional stdenv.isDarwin ./0001-fix-dirent64-et-al-on-darwin.patch;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
+ nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
meta = with stdenv.lib; {
homepage = "http://gondor.apana.org.au/~herbert/dash/";