From 6a249036fb7d4546d7ab482589d06d14da7480e3 Mon Sep 17 00:00:00 2001 From: Artturin Date: Wed, 13 Jul 2022 21:41:20 +0300 Subject: [PATCH] gnustep.gsmakeDerivation: fix cross eval error: attribute 'runtimeShell' missing --- pkgs/desktops/gnustep/make/gsmakeDerivation.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnustep/make/gsmakeDerivation.nix b/pkgs/desktops/gnustep/make/gsmakeDerivation.nix index eff7f3eac85..11aa53b77b5 100644 --- a/pkgs/desktops/gnustep/make/gsmakeDerivation.nix +++ b/pkgs/desktops/gnustep/make/gsmakeDerivation.nix @@ -1,7 +1,7 @@ { lib, stdenv, make, makeWrapper, which }: -{ buildInputs ? [], ...} @ args: +{ nativeBuildInputs ? [], ...} @ args: stdenv.mkDerivation (args // { - buildInputs = [ makeWrapper make which ] ++ buildInputs; + nativeBuildInputs = [ makeWrapper make which ] ++ nativeBuildInputs; builder = ./builder.sh; setupHook = ./setup-hook.sh;