summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-sdk/frameworks.nix
Commit message (Collapse)AuthorAge
* darwin.apple_sdk_10_12.frameworks.System: initWeijia Wang2023-05-23
|
* apple-sdk: update comment about frameworks versionKid2022-04-21
|
* apple_sdk.frameworks.AVFoundation: Add missing MediaToolboxSandro Jäckel2020-12-09
| | | | | This fixes: /nix/store/7ckpydmlah3j86py3c4f27p0fbkxyzfi-apple-framework-AVFoundation/Library/Frameworks/AVFoundation.framework/Headers/AVAudioMix.h:15:9: fatal error: 'MediaToolbox/MTAudioProcessingTap.h' file not found
* apple_sdk.frameworks.AVFoundation: Add missing CoreMediaSandro Jäckel2020-12-09
| | | | This fixes apple-framework-AVFoundation/Library/Frameworks/AVFoundation.framework/Headers/AVAsset.h:17:9: fatal error: 'CoreMedia/CMTime.h' file not found
* darwin/apple-sdk: use darwin stubsAndrew Childs2020-11-12
|
* mpv: add flag for swift on darwinDaiderd Jordan2020-02-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While we currently don't have a pure swift build on macOS it's possible to build mpv using the swift compiler from CLT. eg. self: super: let CommandLineTools = "/Library/Developer/CommandLineTools"; in { swift = super.stdenv.mkDerivation { name = "swift-CommandLineTools-0.0.0"; phases = [ "installPhase" "fixupPhase" ]; propagatedBuildInputs = [ self.darwin.DarwinTools ]; installPhase = '' mkdir -p $out/bin $out/lib ln -s ${CommandLineTools}/usr/bin/swift $out/bin ln -s ${CommandLineTools}/usr/lib/swift $out/lib ln -s ${CommandLineTools}/SDKs $out ''; setupHook = builtins.toFile "hook" '' addCommandLineTools() { echo >&2 echo "WARNING: this is impure and unreliable, make sure the CommandLineTools are installed!" >&2 echo " $ xcode-select --install" >&2 echo >&2 [ -d ${CommandLineTools} ] export NIX_LDFLAGS+=" -L@out@/lib/swift/macosx" export SWIFT=swift export SWIFT_LIB_DYNAMIC=@out@/lib/swift/macosx export MACOS_SDK_VERSION=$(sw_vers -productVersion | awk -F. '{print $1 "." $2}') export MACOS_SDK=@out@/SDKs/MacOSX$MACOS_SDK_VERSION.sdk } prePhases+=" addCommandLineTools" ''; __impureHostDeps = [ CommandLineTools ]; }; mpv = super.mpv.override { swiftSupport = true; }; }
* graalvm8: 19.1.1 -> 19.2.1hlolli2020-01-18
| | | | - - nixpkgs now with full darwin support
* keepassxc: fix darwin buildsqualus2020-01-08
| | | | | | | - Removed the unnecessary libmicrohttpd dependency, which doesn't build on macOS. KeepassXC removed this dependency in 2.1.2 - Fixed a compiler error related to the Touch ID feature by adding a dependency on the LocalAuthentication framework
* darwin-frameworks: add import CoreFoundation to CoreServicesDaiderd Jordan2019-07-03
|
* darwin-frameworks: replace cf-private and move it's setup-hookDaiderd Jordan2019-07-03
| | | | | | The only remaining use-case for cf-private are symbols that are not available in the opensource build. This generally solved the problem because of it's setup-hook.
* darwin-frameworks: remove CFDaiderd Jordan2019-07-03
| | | | | | | CoreFoundation is included by the stdenv, moving the decision of what version should be used there makes it possible to override it entirely rather then prepending flags like cf-private does which can be unreliable.
* apple-sdk: add MetalKitMatthew Bauer2019-06-23
|
* darwin: correct framework dependencyMatthew Bauer2019-04-26
| | | | | AudioUnit depends on AudioToolbox now, so use that to keep compatibility.
* apple-sdk: add Metal framework for QuartzCoreMatthew Bauer2019-04-26
|
* apple-sdk: Foundation needs cf-privateMatthew Bauer2019-04-26
|
* apple-sdk: update frameworks locationMatthew Bauer2019-04-26
| | | | | | | Some have been removed like: - DrawSprocket - DVComponentGlue
* darwin: don't include cf-private in framework dependenciesDaiderd Jordan2018-11-05
| | | | | Using cf-private can cause problems, it's better to include it explicitly in places where it's actually required.
* apple_sdk.frameworks.Ruby: removeMatthew Bauer2018-07-04
| | | | This was broken & apparently unused.
* darwin-frameworks: cleanupDaiderd Jordan2018-03-07
|
* darwin-frameworks: add impure version of CoreFoundationDaiderd Jordan2017-09-23
|
* apple-sdk: Move cf-private first in list, otherwise the build fails because ↵Thomas Mader2017-09-02
| | | | | | CoreFoundation/CFAttributedString.h could not be found. The problem appeared when building ldc on Mac OSX. See also 13778.
* apple-sdk: 10.9 -> 10.10Dan Peebles2017-03-14
| | | | | | This is a slightly less ambitious version of the (now reverted) commit 377cef8d16c47df74d2653432d9bba968236c8a0, which had a bunch of issues that I don't have time to resolve right now.
* darwin: fixed eval of frameworksDaiderd Jordan2017-01-21
|
* Revert "apple-sdk: 10.9 -> 10.11"Daiderd Jordan2016-12-20
| | | | This reverts commit 377cef8d16c47df74d2653432d9bba968236c8a0.
* apple-sdk: 10.9 -> 10.11Dan Peebles2016-12-19
|
* frameworks: GL is undefinedAnthony Cowley2016-04-14
| | | | The GLUT frameworks is currently a Nix evaluation error.
* wxmac: fix buildJude Taylor2015-10-28
|
* vim: clean up arguments listJude Taylor2015-10-28
|
* clean up emacs framework dependenciesJude Taylor2015-10-28
|
* add propagated builds where needed to darwin frameworksJude Taylor2015-10-28
|
* darwin purity: emacs-24.5-macJude Taylor2015-09-30
|
* preparation for being able to build xquartzJude Taylor2015-09-17
|
* update framework impure depsJude Taylor2015-07-11
|
* update PCSC dependenciesJude Taylor2015-07-10
|
* darwin purity: nodejs-0.10Jude Taylor2015-07-10
|
* map apple sdk frameworks CF to darwin.CF to avoid confusionJude Taylor2015-07-08
|
* make vim frameworks-compliantJude Taylor2015-06-30
|
* darwin purity: haskell-hfseventsJude Taylor2015-06-20