feat(yabai)!: add JankyBorders
This commit is contained in:
parent
65b3a48cf2
commit
0b71023f81
2 changed files with 54 additions and 46 deletions
|
@ -1,26 +1,23 @@
|
|||
{ lib, fetchFromGitHub, darwin, ... }:
|
||||
|
||||
# TODO: fix clang issue (works with native `/usr/bin/clang`)
|
||||
#
|
||||
# > Undefined symbols for architecture arm64:
|
||||
# > "_SLSWindowManagementBridgeSetDelegate", referenced from:
|
||||
# > _main in main.o
|
||||
# > ld: symbol(s) not found for architecture arm64
|
||||
|
||||
darwin.apple_sdk.stdenv.mkDerivation rec {
|
||||
pname = "JankyBorders";
|
||||
version = "dev";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FelixKratz";
|
||||
repo = "JankyBorders";
|
||||
rev = "6bc201813bc163c6f5a20d5fa744f7b0d1f31773";
|
||||
sha256 = "sha256-b4+aJkP1yqz8x5EUDDVQmqrmLus+Y69RViAeaLvfGXE=";
|
||||
repo = pname;
|
||||
rev = "e2af0248fa40ead3f17f1d16c6288b8ddfd9f505";
|
||||
hash = "sha256-rYA6b6d3c4pJVUIV77z/JMcgKbZ+4qZdxkI21LwZcG4=";
|
||||
};
|
||||
|
||||
buildInputs = with darwin.apple_sdk.frameworks; [
|
||||
AppKit
|
||||
SkyLight
|
||||
darwin.apple_sdk.Libsystem
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp ./bin/borders $out/bin/
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue