mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
akkoma-admin-fe: Fix build for x86_64-darwin
Add xcodebuild as build dependencies for both darwin platforms as x86_64 needs it to run xcodebuild
This commit is contained in:
parent
5e69413744
commit
0047d6e995
1 changed files with 2 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
||||||
pkg-config,
|
pkg-config,
|
||||||
libsass,
|
libsass,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
|
xcbuild,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
@ -40,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
python3
|
python3
|
||||||
git
|
git
|
||||||
libsass
|
libsass
|
||||||
];
|
] ++ lib.optional stdenv.isDarwin xcbuild;
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
runHook preConfigure
|
runHook preConfigure
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue