nls: disable checks on Darwin

Workaround to address build issue introduced in 1.1.1 update.

authored by

Yuriy Taraday and committed by
Anderson Torres
ca2913d4 0d6512ec

+4
+4
pkgs/development/tools/language-servers/nls/default.nix
··· 1 { lib 2 , rustPlatform 3 , nickel 4 }: 5 6 rustPlatform.buildRustPackage { ··· 11 cargoHash = "sha256-UGfc5cr6vl10aCVihOEEZktF8MzT56C9/wSvSQhCiVs="; 12 13 cargoBuildFlags = [ "-p nickel-lang-lsp" ]; 14 15 meta = { 16 inherit (nickel.meta) homepage changelog license maintainers;
··· 1 { lib 2 , rustPlatform 3 , nickel 4 + , stdenv 5 }: 6 7 rustPlatform.buildRustPackage { ··· 12 cargoHash = "sha256-UGfc5cr6vl10aCVihOEEZktF8MzT56C9/wSvSQhCiVs="; 13 14 cargoBuildFlags = [ "-p nickel-lang-lsp" ]; 15 + 16 + # Disable checks on Darwin because of issue described in https://github.com/tweag/nickel/pull/1454 17 + doCheck = !stdenv.isDarwin; 18 19 meta = { 20 inherit (nickel.meta) homepage changelog license maintainers;