iosevka: fix Darwin build
This commit is contained in:
parent
dbae6eb51e
commit
67ebd81125
1 changed files with 9 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
, buildNpmPackage
|
||||
, fetchFromGitHub
|
||||
, nodejs
|
||||
, darwin
|
||||
, remarshal
|
||||
, ttfautohint-nox
|
||||
# Custom font set options.
|
||||
|
@ -67,7 +68,14 @@ buildNpmPackage rec {
|
|||
|
||||
npmDepsHash = "sha256-Ncf07ggyOnz/2SpgdmaYS2X/8Bad+J2sz8Yyx9Iri3E=";
|
||||
|
||||
nativeBuildInputs = [ nodejs remarshal ttfautohint-nox ];
|
||||
nativeBuildInputs = [
|
||||
nodejs
|
||||
remarshal
|
||||
ttfautohint-nox
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
# libtool
|
||||
darwin.cctools
|
||||
];
|
||||
|
||||
buildPlan =
|
||||
if builtins.isAttrs privateBuildPlan then
|
||||
|
|
Loading…
Reference in a new issue