Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
755 B
Nix
31 lines
755 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "systemd-lsp";
|
|
version = "2025.07.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JFryy";
|
|
repo = "systemd-lsp";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-JjrPgpQ94C01nZ3E1NE88TBzI03YFs+x37edtYStlnc=";
|
|
};
|
|
|
|
cargoHash = "sha256-G1cQWOgtx+Bmi05ji9Z4TBj5pnhglNcfLRoq2zSmyK0=";
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Language server implementation for systemd unit files made in Rust";
|
|
homepage = "https://github.com/JFryy/systemd-lsp";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ mahyarmirrashed ];
|
|
mainProgram = "systemd-lsp";
|
|
};
|
|
})
|