icu: fix error: anonymous function at icu/63.nix called with unexpected argument 'buildRootOnly'

error happened in pkgsCross.aarch64-multiplatform.icu63
This commit is contained in:
Artturin 2022-12-22 20:46:39 +02:00
parent b36d9696c5
commit d9be3f9a0a

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, fetchpatch, fixDarwinDylibNames, nativeBuildRoot }:
{ stdenv, lib, fetchurl, fetchpatch, fixDarwinDylibNames, nativeBuildRoot, buildRootOnly ? false }:
import ./base.nix {
version = "63.1";
@ -11,4 +11,4 @@ import ./base.nix {
})
];
patchFlags = [ "-p3" ];
} { inherit stdenv lib fetchurl fixDarwinDylibNames nativeBuildRoot; }
} { inherit stdenv lib fetchurl fixDarwinDylibNames nativeBuildRoot buildRootOnly; }