Unverified Commit e296bdf4 authored by Theodore Ni's avatar Theodore Ni Committed by GitHub
Browse files

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

parents ee173997 18176d9f
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
{ 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
+0 −5
Original line number Diff line number Diff line
@@ -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;