yabai: 3.2.0 -> 3.2.1 (#90717)

authored by cmacrae.tngl.sh and committed by

GitHub 15e8fa9f 1675eaf9

+5 -5
+5 -5
pkgs/os-specific/darwin/yabai/default.nix
··· 1 - { stdenv, fetchFromGitHub, Carbon, Cocoa, ScriptingBridge }: 1 + { stdenv, fetchFromGitHub, Carbon, Cocoa, ScriptingBridge, xxd }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "yabai"; 5 - version = "3.2.0"; 5 + version = "3.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "koekeishiya"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1iq5p4k6klffglxfhmzc2jvlilwn0w97vb5v4b91spiyp39nqcfw"; 11 + sha256 = "11rsi6z2z7ynfqs1xq3bvf187k5xnwm0d45a8ai9hrqdsf3f1j19"; 12 12 }; 13 13 14 - buildInputs = [ Carbon Cocoa ScriptingBridge ]; 14 + buildInputs = [ Carbon Cocoa ScriptingBridge xxd ]; 15 15 16 16 installPhase = '' 17 17 mkdir -p $out/bin ··· 26 26 ''; 27 27 homepage = "https://github.com/koekeishiya/yabai"; 28 28 platforms = platforms.darwin; 29 - maintainers = [ maintainers.cmacrae maintainers.shardy ]; 29 + maintainers = with maintainers; [ cmacrae shardy ]; 30 30 license = licenses.mit; 31 31 }; 32 32 }