spacebar: switch to apple-sdk_12; move to by-name (#353749)

This commit is contained in:
Theodore Ni 2024-11-06 08:49:26 -08:00 committed by GitHub
commit e296bdf4c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,9 @@
{ lib, stdenv, fetchFromGitHub, Carbon, Cocoa, ScriptingBridge, SkyLight }:
{
lib,
stdenv,
fetchFromGitHub,
apple-sdk_12,
}:
stdenv.mkDerivation rec {
pname = "spacebar";
@ -11,7 +16,9 @@ stdenv.mkDerivation rec {
sha256 = "sha256-4LiG43kPZtsm7SQ/28RaGMpYsDshCaGvc1mouPG3jFM=";
};
buildInputs = [ Carbon Cocoa ScriptingBridge SkyLight ];
buildInputs = [
apple-sdk_12
];
installPhase = ''
mkdir -p $out/bin

View File

@ -12311,11 +12311,6 @@ with pkgs;
somebar = callPackage ../applications/misc/somebar { };
spacebar = callPackage ../os-specific/darwin/spacebar {
inherit (darwin.apple_sdk.frameworks)
Carbon Cocoa ScriptingBridge SkyLight;
};
speech-denoiser = callPackage ../applications/audio/speech-denoiser { };
splot = haskell.lib.compose.justStaticExecutables haskellPackages.splot;