35 lines
927 B
Nix
35 lines
927 B
Nix
|
{ stdenv, fetchFromGitHub, Carbon }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "skhd-${version}";
|
||
|
version = "0.0.10";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "koekeishiya";
|
||
|
repo = "skhd";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0a0r8z9bvb1pzqag7nqa84xm99n0xvg27cw11qcv65snr06bqc9w";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ Carbon ];
|
||
|
|
||
|
makeFlags = [ "BUILD_PATH=$(out)/bin" ];
|
||
|
|
||
|
postInstall = ''
|
||
|
mkdir -p $out/Library/LaunchDaemons
|
||
|
cp ${./org.nixos.skhd.plist} $out/Library/LaunchDaemons/org.nixos.skhd.plist
|
||
|
substituteInPlace $out/Library/LaunchDaemons/org.nixos.skhd.plist --subst-var out
|
||
|
'';
|
||
|
|
||
|
# See https://github.com/koekeishiya/skhd/issues/28
|
||
|
hardeningDisable = [ "all" ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Simple hotkey daemon for macOS";
|
||
|
homepage = https://github.com/koekeishiya/skhd;
|
||
|
platforms = platforms.darwin;
|
||
|
maintainers = with maintainers; [ lnl7 ];
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|