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
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "wgsl-analyzer";
|
|
version = "2025-08-08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wgsl-analyzer";
|
|
repo = "wgsl-analyzer";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-wYUhHbq+W9feA1R7uGrUd607C7yE3HPlc5+22t+oqOs=";
|
|
};
|
|
|
|
cargoHash = "sha256-QBeuzLbG/unf+FIXJ8AxSuAKRmx1JezOBlgRKpEHRPo=";
|
|
|
|
checkFlags = [
|
|
# Imports failures
|
|
"--skip=tests::parse_import"
|
|
"--skip=tests::parse_import_colon"
|
|
"--skip=tests::parse_string_import"
|
|
"--skip=tests::struct_recover_3"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Language server implementation for the WGSL shading language";
|
|
homepage = "https://github.com/wgsl-analyzer/wgsl-analyzer";
|
|
changelog = "https://github.com/wgsl-analyzer/wgsl-analyzer/releases/tag/v${finalAttrs.version}";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [ genga898 ];
|
|
mainProgram = "wgsl-analyzer";
|
|
};
|
|
})
|