nixpkgs/pkgs/os-specific/darwin/khd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, Carbon, Cocoa }:
2017-01-24 07:31:11 +00:00
stdenv.mkDerivation rec {
pname = "khd";
2018-03-02 18:45:38 +00:00
version = "3.0.0";
2017-01-24 07:31:11 +00:00
src = fetchFromGitHub {
owner = "koekeishiya";
repo = "khd";
rev = "v${version}";
2018-03-02 18:45:38 +00:00
sha256 = "0nzfhknv1s71870w2dk9dy56a3g5zsbjphmfrz0vsvi438g099r4";
2017-01-24 07:31:11 +00:00
};
2018-03-02 18:45:38 +00:00
patches = [
# Fixes build issues, remove with >3.0.0
(fetchpatch {
url = "https://github.com/koekeishiya/khd/commit/4765ae0b4c7d4ca56319dc92ff54393cd9e03fbc.patch";
2018-03-02 18:45:38 +00:00
sha256 = "0kvf5hxi5bf6pf125qib7wn7hys0ag66zzpp4srj1qa87lxyf7np";
})
];
2017-01-24 07:31:11 +00:00
buildInputs = [ Carbon Cocoa ];
buildPhase = ''
make install
'';
installPhase = ''
mkdir -p $out/bin
cp bin/khd $out/bin/khd
mkdir -p $out/Library/LaunchDaemons
cp ${./org.nixos.khd.plist} $out/Library/LaunchDaemons/org.nixos.khd.plist
substituteInPlace $out/Library/LaunchDaemons/org.nixos.khd.plist --subst-var out
'';
meta = with lib; {
2017-03-04 17:00:58 +00:00
description = "A simple modal hotkey daemon for OSX";
homepage = "https://github.com/koekeishiya/khd";
downloadPage = "https://github.com/koekeishiya/khd/releases";
2017-01-24 07:31:11 +00:00
platforms = platforms.darwin;
maintainers = with maintainers; [ lnl7 ];
license = licenses.mit;
};
}