mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
35 lines
841 B
Nix
35 lines
841 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "hyprls";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprland-community";
|
|
repo = "hyprls";
|
|
rev = "v${version}";
|
|
hash = "sha256-boA2kWlHm9bEM/o0xi/1FlH6WGU4wL1RRvbGGXdzHYQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-rG+oGJOABA9ee5nIpC5/U0mMsPhwvVtQvJBlQWfxi5Y=";
|
|
|
|
checkFlags = [
|
|
# Not yet implemented
|
|
"-skip=TestHighLevelParse"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "LSP server for Hyprland's configuration language";
|
|
homepage = "https://en.ewen.works/hyprls";
|
|
changelog = "https://github.com/hyprland-community/hyprls/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ arthsmn ];
|
|
mainProgram = "hyprls";
|
|
};
|
|
}
|