Commit ca2913d4 authored by Yuriy Taraday's avatar Yuriy Taraday Committed by Anderson Torres
Browse files

nls: disable checks on Darwin

Workaround to address build issue introduced in 1.1.1 update.
parent 0d6512ec
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, nickel
, stdenv
}:

rustPlatform.buildRustPackage {
@@ -12,6 +13,9 @@ rustPlatform.buildRustPackage {

  cargoBuildFlags = [ "-p nickel-lang-lsp" ];

  # Disable checks on Darwin because of issue described in https://github.com/tweag/nickel/pull/1454
  doCheck = !stdenv.isDarwin;

  meta = {
    inherit (nickel.meta) homepage changelog license maintainers;
    description = "A language server for the Nickel programming language";