gnustep.gsmakeDerivation: fix cross eval

error: attribute 'runtimeShell' missing
This commit is contained in:
Artturin 2022-07-13 21:41:20 +03:00
parent c87635d917
commit 6a249036fb

View file

@ -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;