Commas and incorrectly pointing at variables are hard.
This commit is contained in:
parent
813722216b
commit
1f699da0a1
1 changed files with 3 additions and 3 deletions
|
@ -8,8 +8,8 @@
|
||||||
stdenv,
|
stdenv,
|
||||||
|
|
||||||
### Ninja
|
### Ninja
|
||||||
withNinja ? false
|
withNinja ? false,
|
||||||
ninja,
|
ninja
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation {
|
||||||
mbedtls_2
|
mbedtls_2
|
||||||
perl
|
perl
|
||||||
python3
|
python3
|
||||||
] ++ lib.optionals stdenv.withNinja ninja;
|
] ++ lib.optionals withNinja ninja;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
|
Loading…
Reference in a new issue