xcbuild: add meta
This commit is contained in:
parent
87b3918d0b
commit
6e26fe3d57
@ -41,4 +41,11 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ cmake zlib libxml2 libpng ninja ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices CoreGraphics ImageIO ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Xcode-compatible build tool";
|
||||
homepage = https://github.com/facebook/xcbuild;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ copumpkin matthewbauer ];
|
||||
};
|
||||
}
|
||||
|
@ -19,10 +19,10 @@ let
|
||||
# is removed because NixPkgs only supports darwin-x86_64.
|
||||
Architectures = [
|
||||
{
|
||||
Identifier = "Standard";
|
||||
Type = "Architecture";
|
||||
Name = "Standard Architectures (64-bit Intel)";
|
||||
RealArchitectures = [ "x86_64" ];
|
||||
Identifier = "Standard";
|
||||
Type = "Architecture";
|
||||
Name = "Standard Architectures (64-bit Intel)";
|
||||
RealArchitectures = [ "x86_64" ];
|
||||
ArchitectureSetting = "ARCHS_STANDARD";
|
||||
}
|
||||
{
|
||||
|
@ -64,6 +64,8 @@ stdenv.mkDerivation {
|
||||
--set DEVELOPER_DIR "$out"
|
||||
'';
|
||||
|
||||
inherit (xcbuild) meta;
|
||||
|
||||
passthru = {
|
||||
raw = xcbuild;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user