diff --git a/pkgs/by-name/hy/hyprkeys/package.nix b/pkgs/by-name/hy/hyprkeys/package.nix new file mode 100644 index 000000000000..e4ae721ed5e1 --- /dev/null +++ b/pkgs/by-name/hy/hyprkeys/package.nix @@ -0,0 +1,44 @@ +{ lib +, buildGoModule +, fetchFromGitHub +, installShellFiles +}: + +buildGoModule rec { + pname = "hyprkeys"; + version = "1.0.3"; + + src = fetchFromGitHub { + owner = "hyprland-community"; + repo = "Hyprkeys"; + rev = "v${version}"; + hash = "sha256-u2NTSth9gminIEcbxgGm/2HHyzuwf/YPNQV4VzR14Kk="; + }; + + ldflags = [ + "-s" + "-w" + "-X main.version=v${version}" + ]; + + nativeBuildInputs = [ + installShellFiles + ]; + + vendorHash = "sha256-JFvC9V0xS8SZSdLsOtpyTrFzXjYAOaPQaJHdcnJzK3s="; + + postInstall = '' + installShellCompletion --cmd hyprkeys \ + --bash <($out/bin/hyprkeys completion bash) \ + --fish <($out/bin/hyprkeys completion fish) \ + --zsh <($out/bin/hyprkeys completion zsh) + ''; + + meta = with lib; { + description = "A simple, scriptable keybind retrieval utility for Hyprland"; + homepage = "https://github.com/hyprland-community/Hyprkeys"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ NotAShelf donovanglover ]; + mainProgram = "hyprkeys"; + }; +}