about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2019-10-22 17:41:00 +0200
committerGitHub <noreply@github.com>2019-10-22 17:41:00 +0200
commitc1993e9256dbd3b9d2266e29b22a3ceb25893443 (patch)
tree4a22d3e09bbdf8ed1cb71f3103dbec0f32dad283 /pkgs/development/compilers
parent7f63ecfff9f8b3f6c5c7138b6bedec90676a71cb (diff)
parent148d4a214a1a7f4b21f19d9468286a8a837b09f6 (diff)
downloadnixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.tar
nixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.tar.gz
nixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.tar.bz2
nixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.tar.lz
nixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.tar.xz
nixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.tar.zst
nixlib-c1993e9256dbd3b9d2266e29b22a3ceb25893443.zip
Merge pull request #71583 from turboMaCk/elm-format-ghc88x
elmPackages: elm-format GHC 8.8.1 patch
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/elm/default.nix18
1 files changed, 16 insertions, 2 deletions
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index 9dbde319f0a0..321176ea514d 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -27,9 +27,23 @@ let
             The elm-format expression is updated via a script in the https://github.com/avh4/elm-format repo:
             `package/nix/build.sh`
             */
-            #elm-format = justStaticExecutables (doJailbreak (self.callPackage ./packages/elm-format.nix {}));
+            elm-format = justStaticExecutables (overrideCabal (self.callPackage ./packages/elm-format.nix {}) (drv: {
+              # GHC 8.8.1 support
+              # https://github.com/avh4/elm-format/pull/640
+              patches = [(
+                fetchpatch {
+                  url = "https://github.com/turboMaCk/elm-format/commit/4f4abdc7117ed6ce3335f6cf39b6495b48067b7c.patch";
+                  sha256 = "1zqk6q6w0ph12mnwffgwzf4h1hcgqg0v09ws9q2g5bg2riq4rvd9";
+                }
+              )];
+              # Tests are failing after upgrade to ghc881.
+              # Cause is probably just a minor change in stdout output
+              # see https://github.com/avh4/elm-format/pull/640
+              doCheck = false;
+              jailbreak = true;
+            }));
             elmi-to-json = justStaticExecutables (overrideCabal (self.callPackage ./packages/elmi-to-json.nix {}) (drv: {
-              prePatch = '' 
+              prePatch = ''
                 substituteInPlace package.yaml --replace "- -Werror" ""
                 hpack
               '';