treewide: replace stdenv.is in non nix files

Continuing e0464e4788
This commit is contained in:
Artturin 2024-09-25 06:33:31 +03:00
parent 1174fd6678
commit 40799fc06d
7 changed files with 11 additions and 11 deletions

View file

@ -637,7 +637,7 @@ Names of files and directories should be in lowercase, with dashes between words
```nix
{
buildInputs = lib.optional stdenv.isDarwin iconv;
buildInputs = lib.optional stdenv.hostPlatform.isDarwin iconv;
}
```
@ -645,7 +645,7 @@ Names of files and directories should be in lowercase, with dashes between words
```nix
{
buildInputs = if stdenv.isDarwin then [ iconv ] else null;
buildInputs = if stdenv.hostPlatform.isDarwin then [ iconv ] else null;
}
```