summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAlexander Foremny <aforemny@posteo.de>2022-04-07 08:46:30 +0200
committerAlexander Foremny <aforemny@posteo.de>2022-04-07 08:54:24 +0200
commit3d88f74c9d13e599d1bd3633e8afb197b8378071 (patch)
tree1606ba193c1357cddd0d8db181bfc33fb1bf912c /pkgs
parent6c46cc64de873a92eacfabd2b53f4f7c455fafd9 (diff)
elmPackages.elmi-to-json: build using aeson 1.5.6.0
elmi-to-json (and others) did not build as aeson 2.0.3.0 fails to build
with attoparsec < 0.14, presumably since
376a511e0997247b8d3a8f46b63a83d6444bf7d2.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/elm/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index f01338fdb86d9..be194039e9285 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -80,6 +80,9 @@ let
       # We need attoparsec < 0.14 to build elm for now
       attoparsec = self.attoparsec_0_13_2_5;
 
+      # aeson 2.0.3.0 does not build with attoparsec_0_13_2_5
+      aeson = self.aeson_1_5_6_0;
+
       # Needed for elm-format
       indents = self.callPackage ./packages/indents.nix {};
       bimap = self.callPackage ./packages/bimap.nix {};