Merge pull request #233657 from wegank/darwin-system-redo
darwin.apple_sdk_10_12.frameworks.System: init
This commit is contained in:
commit
ad7fbd276f
5 changed files with 14 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, makeWrapper, cmake, ninja, pkg-config, m4, bash
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, cmake, ninja, pkg-config, m4, bash
|
||||||
, xdg-utils, zip, unzip, gzip, bzip2, gnutar, p7zip, xz
|
, xdg-utils, zip, unzip, gzip, bzip2, gnutar, p7zip, xz
|
||||||
, IOKit, Carbon, Cocoa, AudioToolbox, OpenGL
|
, IOKit, Carbon, Cocoa, AudioToolbox, OpenGL, System
|
||||||
, withTTYX ? true, libX11
|
, withTTYX ? true, libX11
|
||||||
, withGUI ? true, wxGTK32
|
, withGUI ? true, wxGTK32
|
||||||
, withUCD ? true, libuchardet
|
, withUCD ? true, libuchardet
|
||||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||||
++ lib.optionals withNetRocks [ openssl libssh libnfs neon ]
|
++ lib.optionals withNetRocks [ openssl libssh libnfs neon ]
|
||||||
++ lib.optional (withNetRocks && !stdenv.isDarwin) samba # broken on darwin
|
++ lib.optional (withNetRocks && !stdenv.isDarwin) samba # broken on darwin
|
||||||
++ lib.optionals withPython (with python3Packages; [ python cffi debugpy pcpp ])
|
++ lib.optionals withPython (with python3Packages; [ python cffi debugpy pcpp ])
|
||||||
++ lib.optionals stdenv.isDarwin [ IOKit Carbon Cocoa AudioToolbox OpenGL ];
|
++ lib.optionals stdenv.isDarwin [ IOKit Carbon Cocoa AudioToolbox OpenGL System ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs python/src/prebuild.sh
|
patchShebangs python/src/prebuild.sh
|
||||||
|
@ -43,9 +43,6 @@ stdenv.mkDerivation rec {
|
||||||
--replace '"/bin/bash"' '"${bash}/bin/bash"'
|
--replace '"/bin/bash"' '"${bash}/bin/bash"'
|
||||||
substituteInPlace far2l/src/cfg/config.cpp \
|
substituteInPlace far2l/src/cfg/config.cpp \
|
||||||
--replace '"/bin/bash"' '"${bash}/bin/bash"'
|
--replace '"/bin/bash"' '"${bash}/bin/bash"'
|
||||||
'' + lib.optionalString stdenv.isDarwin ''
|
|
||||||
substituteInPlace WinPort/src/Backend/WX/CMakeLists.txt \
|
|
||||||
--replace "-framework System" -lSystem
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cmakeFlags = lib.mapAttrsToList (k: v: "-D${k}=${if v then "yes" else "no"}") {
|
cmakeFlags = lib.mapAttrsToList (k: v: "-D${k}=${if v then "yes" else "no"}") {
|
||||||
|
|
|
@ -320,6 +320,15 @@ in rec {
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
System = lib.overrideDerivation super.System (drv: {
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/Library/Frameworks/System.framework/Versions/B
|
||||||
|
ln -s $out/Library/Frameworks/System.framework/Versions/{B,Current}
|
||||||
|
ln -s ${pkgs.darwin.Libsystem}/lib/libSystem.B.tbd $out/Library/Frameworks/System.framework/Versions/B/System.tbd
|
||||||
|
ln -s $out/Library/Frameworks/System.framework/{Versions/Current/,}System.tbd
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
WebKit = lib.overrideDerivation super.WebKit (drv: {
|
WebKit = lib.overrideDerivation super.WebKit (drv: {
|
||||||
extraTBDFiles = [
|
extraTBDFiles = [
|
||||||
"Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore.tbd"
|
"Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore.tbd"
|
||||||
|
|
|
@ -104,6 +104,7 @@ with frameworks; with libs; {
|
||||||
SpriteKit = {};
|
SpriteKit = {};
|
||||||
StoreKit = {};
|
StoreKit = {};
|
||||||
SyncServices = {};
|
SyncServices = {};
|
||||||
|
System = {};
|
||||||
SystemConfiguration = { inherit Security; };
|
SystemConfiguration = { inherit Security; };
|
||||||
TWAIN = { inherit Carbon; };
|
TWAIN = { inherit Carbon; };
|
||||||
Tcl = {};
|
Tcl = {};
|
||||||
|
|
|
@ -24,16 +24,13 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ bison flex ] ++
|
nativeBuildInputs = [ bison flex ] ++
|
||||||
lib.optionals stdenv.hostPlatform.isDarwin [
|
lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
darwin.apple_sdk.frameworks.DiskArbitration
|
darwin.apple_sdk.frameworks.DiskArbitration
|
||||||
|
darwin.apple_sdk.frameworks.System
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ zlib.dev libxcrypt ] ++
|
buildInputs = [ zlib.dev libxcrypt ] ++
|
||||||
lib.optionals useSSL [ openssl ] ++
|
lib.optionals useSSL [ openssl ] ++
|
||||||
lib.optionals usePAM [ pam ];
|
lib.optionals usePAM [ pam ];
|
||||||
|
|
||||||
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
||||||
substituteInPlace configure --replace "-framework System" "-lSystem"
|
|
||||||
'';
|
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
(lib.withFeature usePAM "pam")
|
(lib.withFeature usePAM "pam")
|
||||||
] ++ (if useSSL then [
|
] ++ (if useSSL then [
|
||||||
|
|
|
@ -20362,7 +20362,7 @@ with pkgs;
|
||||||
|
|
||||||
far2l = callPackage ../applications/misc/far2l {
|
far2l = callPackage ../applications/misc/far2l {
|
||||||
stdenv = if stdenv.cc.isClang then llvmPackages.stdenv else stdenv;
|
stdenv = if stdenv.cc.isClang then llvmPackages.stdenv else stdenv;
|
||||||
inherit (darwin.apple_sdk.frameworks) IOKit Carbon Cocoa AudioToolbox OpenGL;
|
inherit (darwin.apple_sdk.frameworks) IOKit Carbon Cocoa AudioToolbox OpenGL System;
|
||||||
};
|
};
|
||||||
|
|
||||||
farbfeld = callPackage ../development/libraries/farbfeld { };
|
farbfeld = callPackage ../development/libraries/farbfeld { };
|
||||||
|
|
Loading…
Reference in a new issue