587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, Carbon
|
|
, Cocoa
|
|
, testers
|
|
, nix-update-script
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "skhd";
|
|
version = "0.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "koekeishiya";
|
|
repo = "skhd";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-fnkWws/g4BdHKDRhqoCpdPFUavOHdk8R7h7H1dAdAYI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
Carbon
|
|
Cocoa
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
version = "skhd-v${finalAttrs.version}";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|