From 678b3134ac37bf1c9bef398f801058b859dd938b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Fri, 9 Dec 2022 12:27:15 +0100 Subject: [PATCH] elmPackages.elm-format: disable checks Fixes the build with optparse-applicative 0.17 --- pkgs/development/compilers/elm/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index 4bf3647d8785..be2e65485134 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -37,6 +37,7 @@ let */ elm-format = justStaticExecutables (overrideCabal (drv: { jailbreak = true; + doCheck = assert (drv.version == "0.8.5"); false; # golden tests fail with optparse-applicative 0.17 description = "Formats Elm source code according to a standard set of rules based on the official Elm Style Guide"; homepage = "https://github.com/avh4/elm-format";