mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
apple-sdk_11,
|
|
darwinMinVersionHook,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "skhd";
|
|
version = "0.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "koekeishiya";
|
|
repo = "skhd";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-fnkWws/g4BdHKDRhqoCpdPFUavOHdk8R7h7H1dAdAYI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
apple-sdk_11
|
|
(darwinMinVersionHook "10.13")
|
|
];
|
|
|
|
makeFlags = [ "BUILD_PATH=$(out)/bin" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
|
|
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
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Simple hotkey daemon for macOS";
|
|
homepage = "https://github.com/koekeishiya/skhd";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "skhd";
|
|
maintainers = with lib.maintainers; [
|
|
cmacrae
|
|
lnl7
|
|
periklis
|
|
khaneliman
|
|
];
|
|
platforms = lib.platforms.darwin;
|
|
};
|
|
})
|