yabai: 3.2.0 -> 3.2.1 (#90717)

This commit is contained in:
Calum MacRae 2020-06-29 15:06:55 +01:00 committed by GitHub
parent 1675eaf911
commit 15e8fa9f96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, Carbon, Cocoa, ScriptingBridge }:
{ stdenv, fetchFromGitHub, Carbon, Cocoa, ScriptingBridge, xxd }:
stdenv.mkDerivation rec {
pname = "yabai";
version = "3.2.0";
version = "3.2.1";
src = fetchFromGitHub {
owner = "koekeishiya";
repo = pname;
rev = "v${version}";
sha256 = "1iq5p4k6klffglxfhmzc2jvlilwn0w97vb5v4b91spiyp39nqcfw";
sha256 = "11rsi6z2z7ynfqs1xq3bvf187k5xnwm0d45a8ai9hrqdsf3f1j19";
};
buildInputs = [ Carbon Cocoa ScriptingBridge ];
buildInputs = [ Carbon Cocoa ScriptingBridge xxd ];
installPhase = ''
mkdir -p $out/bin
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/koekeishiya/yabai";
platforms = platforms.darwin;
maintainers = [ maintainers.cmacrae maintainers.shardy ];
maintainers = with maintainers; [ cmacrae shardy ];
license = licenses.mit;
};
}