build devShells.x86_64-linux.default

Reproduce this run
  1. 1497.99 s [algebraic-graphs] OK: neighbours y (edge x y) == Set.fromList [x]
  2. 1497.99 s [algebraic-graphs]
  3. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.path ============
  4. 1497.99 s [algebraic-graphs] OK: path [] == empty
  5. 1497.99 s [algebraic-graphs] OK: path [x] == vertex x
  6. 1497.99 s [algebraic-graphs] OK: path [x,y] == edge x y
  7. 1497.99 s [algebraic-graphs] OK: path == path . reverse
  8. 1497.99 s [algebraic-graphs]
  9. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.circuit ============
  10. 1497.99 s [algebraic-graphs] OK: circuit [] == empty
  11. 1497.99 s [algebraic-graphs] OK: circuit [x] == edge x x
  12. 1497.99 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  13. 1497.99 s [algebraic-graphs] OK: circuit == circuit . reverse
  14. 1497.99 s [algebraic-graphs]
  15. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.clique ============
  16. 1497.99 s [algebraic-graphs] OK: clique [] == empty
  17. 1497.99 s [algebraic-graphs] OK: clique [x] == vertex x
  18. 1497.99 s [algebraic-graphs] OK: clique [x,y] == edge x y
  19. 1497.99 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  20. 1497.99 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  21. 1497.99 s [algebraic-graphs] OK: clique == clique . reverse
  22. 1497.99 s [algebraic-graphs]
  23. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.biclique ============
  24. 1497.99 s [algebraic-graphs] OK: biclique [] [] == empty
  25. 1497.99 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  26. 1497.99 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  27. 1497.99 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  28. 1497.99 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  29. 1497.99 s [algebraic-graphs]
  30. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.star ============
  31. 1497.99 s [algebraic-graphs] OK: star x [] == vertex x
  32. 1497.99 s [algebraic-graphs] OK: star x [y] == edge x y
  33. 1497.99 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  34. 1497.99 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  35. 1497.99 s [algebraic-graphs]
  36. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.stars ============
  37. 1497.99 s [algebraic-graphs] OK: stars [] == empty
  38. 1497.99 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  39. 1497.99 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  40. 1497.99 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  41. 1497.99 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  42. 1497.99 s [algebraic-graphs] OK: stars . adjacencyList == id
  43. 1497.99 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  44. 1497.99 s [algebraic-graphs]
  45. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.tree ============
  46. 1497.99 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  47. 1497.99 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  48. 1497.99 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  49. 1497.99 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  50. 1497.99 s [algebraic-graphs]
  51. 1497.99 s [algebraic-graphs] ============ Symmetric.Relation.forest ============
  52. 1497.99 s [algebraic-graphs] OK: forest [] == empty
  53. 1497.99 s [haskell-language-server] [ 9 of 13] Compiling Development.IDE.Plugin.Plugins.AddArgument ( plugins/hls-refactor-plugin/src/Development/IDE/Plugin/Plugins/AddArgument.hs, dist/build/hls-refactor-plugin/Development/IDE/Plugin/Plugins/AddArgument.p_o )
  54. 1497.99 s [haskell-language-server] [10 of 13] Compiling Development.IDE.Plugin.Plugins.FillHole ( plugins/hls-refactor-plugin/src/Development/IDE/Plugin/Plugins/FillHole.hs, dist/build/hls-refactor-plugin/Development/IDE/Plugin/Plugins/FillHole.p_o )
  55. 1497.99 s [haskell-language-server] [11 of 13] Compiling Development.IDE.Plugin.Plugins.FillTypeWildcard ( plugins/hls-refactor-plugin/src/Development/IDE/Plugin/Plugins/FillTypeWildcard.hs, dist/build/hls-refactor-plugin/Development/IDE/Plugin/Plugins/FillTypeWildcard.p_o )
  56. 1497.99 s [haskell-language-server] [12 of 13] Compiling Development.IDE.Plugin.Plugins.ImportUtils ( plugins/hls-refactor-plugin/src/Development/IDE/Plugin/Plugins/ImportUtils.hs, dist/build/hls-refactor-plugin/Development/IDE/Plugin/Plugins/ImportUtils.p_o )
  57. 1497.99 s [haskell-language-server] [13 of 13] Compiling Development.IDE.Plugin.CodeAction ( plugins/hls-refactor-plugin/src/Development/IDE/Plugin/CodeAction.hs, dist/build/hls-refactor-plugin/Development/IDE/Plugin/CodeAction.p_o )
  58. 1497.99 s [haskell-language-server] Preprocessing library 'hls-gadt-plugin' for haskell-language-server-2.12.0.0...
  59. 1497.99 s [haskell-language-server] Building library 'hls-gadt-plugin' for haskell-language-server-2.12.0.0...
  60. 1497.99 s [haskell-language-server] [1 of 2] Compiling Ide.Plugin.GHC ( plugins/hls-gadt-plugin/src/Ide/Plugin/GHC.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GHC.o, dist/build/hls-gadt-plugin/Ide/Plugin/GHC.dyn_o )
  61. 1497.99 s [haskell-language-server] [2 of 2] Compiling Ide.Plugin.GADT ( plugins/hls-gadt-plugin/src/Ide/Plugin/GADT.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GADT.o, dist/build/hls-gadt-plugin/Ide/Plugin/GADT.dyn_o )
  62. 1497.99 s [haskell-language-server] [1 of 2] Compiling Ide.Plugin.GHC ( plugins/hls-gadt-plugin/src/Ide/Plugin/GHC.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GHC.p_o )
  63. 1497.99 s [haskell-language-server] [2 of 2] Compiling Ide.Plugin.GADT ( plugins/hls-gadt-plugin/src/Ide/Plugin/GADT.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GADT.p_o )
  64. 1497.99 s [haskell-language-server] Preprocessing library 'hls-overloaded-record-dot-plugin' for haskell-language-server-2.12.0.0...
  65. 1497.99 s [haskell-language-server] Building library 'hls-overloaded-record-dot-plugin' for haskell-language-server-2.12.0.0...
  66. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.OverloadedRecordDot ( plugins/hls-overloaded-record-dot-plugin/src/Ide/Plugin/OverloadedRecordDot.hs, dist/build/hls-overloaded-record-dot-plugin/Ide/Plugin/OverloadedRecordDot.o, dist/build/hls-overloaded-record-dot-plugin/Ide/Plugin/OverloadedRecordDot.dyn_o )
  67. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.OverloadedRecordDot ( plugins/hls-overloaded-record-dot-plugin/src/Ide/Plugin/OverloadedRecordDot.hs, dist/build/hls-overloaded-record-dot-plugin/Ide/Plugin/OverloadedRecordDot.p_o )
  68. 1497.99 s [haskell-language-server] Preprocessing library 'hls-stan-plugin' for haskell-language-server-2.12.0.0...
  69. 1497.99 s [haskell-language-server] Building library 'hls-stan-plugin' for haskell-language-server-2.12.0.0...
  70. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.Stan ( plugins/hls-stan-plugin/src/Ide/Plugin/Stan.hs, dist/build/hls-stan-plugin/Ide/Plugin/Stan.o, dist/build/hls-stan-plugin/Ide/Plugin/Stan.dyn_o )
  71. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.Stan ( plugins/hls-stan-plugin/src/Ide/Plugin/Stan.hs, dist/build/hls-stan-plugin/Ide/Plugin/Stan.p_o )
  72. 1497.99 s [haskell-language-server] Preprocessing library 'hls-cabal-fmt-plugin' for haskell-language-server-2.12.0.0...
  73. 1497.99 s [haskell-language-server] Building library 'hls-cabal-fmt-plugin' for haskell-language-server-2.12.0.0...
  74. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalFmt ( plugins/hls-cabal-fmt-plugin/src/Ide/Plugin/CabalFmt.hs, dist/build/hls-cabal-fmt-plugin/Ide/Plugin/CabalFmt.o, dist/build/hls-cabal-fmt-plugin/Ide/Plugin/CabalFmt.dyn_o )
  75. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalFmt ( plugins/hls-cabal-fmt-plugin/src/Ide/Plugin/CabalFmt.hs, dist/build/hls-cabal-fmt-plugin/Ide/Plugin/CabalFmt.p_o )
  76. 1497.99 s [haskell-language-server] Preprocessing library 'hls-signature-help-plugin' for haskell-language-server-2.12.0.0...
  77. 1497.99 s [haskell-language-server] Building library 'hls-signature-help-plugin' for haskell-language-server-2.12.0.0...
  78. 1497.99 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.SignatureHelp ( plugins/hls-signature-help-plugin/src/Ide/Plugin/SignatureHelp.hs, dist/build/hls-signature-help-plugin/Ide/Plugin/SignatureHelp.o, dist/build/hls-signature-help-plugin/Ide/Plugin/SignatureHelp.dyn_o )
  79. 1497.99 s [algebraic-graphs] OK: forest [x] == tree x
  80. 1497.99 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  81. 1498.00 s [algebraic-graphs] OK: forest == overlays . map tree
  82. 1498.00 s [algebraic-graphs]
  83. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.removeVertex ============
  84. 1498.00 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  85. 1498.00 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  86. 1498.00 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  87. 1498.00 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  88. 1498.00 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  89. 1498.00 s [algebraic-graphs]
  90. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.removeEdge ============
  91. 1498.00 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  92. 1498.00 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  93. 1498.00 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  94. 1498.00 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  95. 1498.00 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  96. 1498.00 s [algebraic-graphs] OK: removeEdge x y == removeEdge y x
  97. 1498.00 s [algebraic-graphs]
  98. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.replaceVertex ============
  99. 1498.00 s [algebraic-graphs] OK: replaceVertex x x == id
  100. 1498.00 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  101. 1498.00 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  102. 1498.00 s [algebraic-graphs]
  103. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.mergeVertices ============
  104. 1498.00 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  105. 1498.00 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  106. 1498.00 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  107. 1498.00 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  108. 1498.00 s [algebraic-graphs]
  109. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.gmap ============
  110. 1498.00 s [algebraic-graphs] OK: gmap f empty == empty
  111. 1498.00 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  112. 1498.00 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  113. 1498.00 s [algebraic-graphs] OK: gmap id == id
  114. 1498.00 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  115. 1498.00 s [algebraic-graphs]
  116. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.induce ============
  117. 1498.00 s [algebraic-graphs] OK: induce (const True ) x == x
  118. 1498.00 s [algebraic-graphs] OK: induce (const False) x == empty
  119. 1498.00 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  120. 1498.00 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  121. 1498.00 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  122. 1498.00 s [algebraic-graphs]
  123. 1498.00 s [algebraic-graphs] ============ Symmetric.Relation.induceJust ============
  124. 1498.00 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  125. 1498.00 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  126. 1498.00 s [algebraic-graphs] OK: induceJust . gmap Just == id
  127. 1498.00 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  128. 1498.00 s [algebraic-graphs]
  129. 1498.00 s [algebraic-graphs] ============ Example.Todo (Holiday) ============
  130. 1498.00 s [algebraic-graphs] OK: A todo list is semantically Maybe [a]
  131. 1498.00 s [algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
  132. 1498.00 s [algebraic-graphs] OK: The connect operator (*) adds dependency between items
  133. 1498.00 s [algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
  134. 1498.00 s [algebraic-graphs] OK: Introduce item priority to schedule the todo list
  135. 1498.00 s [algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
  136. 1498.00 s [algebraic-graphs]
  137. 1498.00 s [algebraic-graphs] ============ Example.Todo (Commandline) ============
  138. 1498.00 s [algebraic-graphs] OK: The pull connect operator maintains command line semantics
  139. 1498.00 s [algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
  140. 1498.00 s [algebraic-graphs] OK: The usual connect operator breaks semantics
  141. 1498.00 s [algebraic-graphs] OK: Transform command lines by adding optimisation flag
  142. 1498.00 s [algebraic-graphs]
  143. 1498.00 s [algebraic-graphs] ============ Typed ============
  144. 1498.00 s [algebraic-graphs]
  145. 1498.00 s [algebraic-graphs] ============ Typed.fromAdjacencyMap ============
  146. 1498.00 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
  147. 1498.00 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
  148. 1498.00 s [algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
  149. 1498.00 s [algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
  150. 1498.00 s [algebraic-graphs]
  151. 1498.00 s [algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
  152. 1498.00 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
  153. 1498.00 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
  154. 1498.00 s [algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
  155. 1498.00 s [algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
  156. 1498.00 s [algebraic-graphs]
  157. 1498.00 s [algebraic-graphs] ============ Typed.dfsForest ============
  158. 1498.00 s [algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
  159. 1498.00 s [algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
  160. 1498.00 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.SignatureHelp ( plugins/hls-signature-help-plugin/src/Ide/Plugin/SignatureHelp.hs, dist/build/hls-signature-help-plugin/Ide/Plugin/SignatureHelp.p_o )
  161. 1498.00 s [haskell-language-server] Preprocessing library 'hls-change-type-signature-plugin' for haskell-language-server-2.12.0.0...
  162. 1498.00 s [haskell-language-server] Building library 'hls-change-type-signature-plugin' for haskell-language-server-2.12.0.0...
  163. 1498.00 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ChangeTypeSignature ( plugins/hls-change-type-signature-plugin/src/Ide/Plugin/ChangeTypeSignature.hs, dist/build/hls-change-type-signature-plugin/Ide/Plugin/ChangeTypeSignature.o, dist/build/hls-change-type-signature-plugin/Ide/Plugin/ChangeTypeSignature.dyn_o )
  164. 1498.00 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ChangeTypeSignature ( plugins/hls-change-type-signature-plugin/src/Ide/Plugin/ChangeTypeSignature.hs, dist/build/hls-change-type-signature-plugin/Ide/Plugin/ChangeTypeSignature.p_o )
  165. 1498.00 s [haskell-language-server] Preprocessing executable 'ghcide-bench' for haskell-language-server-2.12.0.0...
  166. 1498.00 s [haskell-language-server] Building executable 'ghcide-bench' for haskell-language-server-2.12.0.0...
  167. 1498.00 s [haskell-language-server] [1 of 1] Compiling Main ( ghcide-bench/exe/Main.hs, dist/build/ghcide-bench/ghcide-bench-tmp/Main.dyn_o )
  168. 1498.00 s [haskell-language-server] [2 of 2] Linking dist/build/ghcide-bench/ghcide-bench
  169. 1498.00 s [haskell-language-server] Preprocessing library 'hls-stylish-haskell-plugin' for haskell-language-server-2.12.0.0...
  170. 1498.00 s [haskell-language-server] Building library 'hls-stylish-haskell-plugin' for haskell-language-server-2.12.0.0...
  171. 1498.00 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.StylishHaskell ( plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs, dist/build/hls-stylish-haskell-plugin/Ide/Plugin/StylishHaskell.o, dist/build/hls-stylish-haskell-plugin/Ide/Plugin/StylishHaskell.dyn_o )
  172. 1498.00 s [haskell-language-server] plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs:28:1: warning: [GHC-66111] [-Wunused-imports]
  173. 1498.00 s [haskell-language-server] The import of ‘System.Directory’ is redundant
  174. 1498.00 s [haskell-language-server] except perhaps to import instances from ‘System.Directory’
  175. 1498.00 s [haskell-language-server] To import instances alone, use: import System.Directory()
  176. 1498.00 s [haskell-language-server] |
  177. 1498.00 s [haskell-language-server] 28 | import System.Directory
  178. 1498.00 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  179. 1498.00 s [haskell-language-server]
  180. 1498.00 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.StylishHaskell ( plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs, dist/build/hls-stylish-haskell-plugin/Ide/Plugin/StylishHaskell.p_o )
  181. 1498.00 s [haskell-language-server] plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs:28:1: warning: [GHC-66111] [-Wunused-imports]
  182. 1498.00 s [haskell-language-server] The import of ‘System.Directory’ is redundant
  183. 1498.00 s [haskell-language-server] except perhaps to import instances from ‘System.Directory’
  184. 1498.00 s [haskell-language-server] To import instances alone, use: import System.Directory()
  185. 1498.00 s [haskell-language-server] |
  186. 1498.00 s [haskell-language-server] 28 | import System.Directory
  187. 1498.00 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  188. 1498.00 s [haskell-language-server]
  189. 1498.00 s [haskell-language-server] Preprocessing library 'hls-call-hierarchy-plugin' for haskell-language-server-2.12.0.0...
  190. 1498.00 s [haskell-language-server] Building library 'hls-call-hierarchy-plugin' for haskell-language-server-2.12.0.0...
  191. 1498.00 s [haskell-language-server] [1 of 4] Compiling Ide.Plugin.CallHierarchy.Types ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Types.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Types.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Types.dyn_o )
  192. 1498.00 s [haskell-language-server] [2 of 4] Compiling Ide.Plugin.CallHierarchy.Query ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Query.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Query.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Query.dyn_o )
  193. 1498.00 s [haskell-language-server] [3 of 4] Compiling Ide.Plugin.CallHierarchy.Internal ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Internal.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Internal.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Internal.dyn_o )
  194. 1498.00 s [algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
  195. 1498.00 s [algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
  196. 1498.00 s [algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
  197. 1498.00 s [algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
  198. 1498.00 s [algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
  199. 1498.00 s [algebraic-graphs]
  200. 1498.00 s [algebraic-graphs] ============ Typed.dfsForestFrom ============
  201. 1498.00 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
  202. 1498.00 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
  203. 1498.00 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
  204. 1498.00 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
  205. 1498.00 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
  206. 1498.00 s [algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
  207. 1498.00 s [algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
  208. 1498.00 s [algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
  209. 1498.00 s [algebraic-graphs] OK: dfsForestFrom % x $ [] == []
  210. 1498.00 s [algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
  211. 1498.00 s [algebraic-graphs]
  212. 1498.00 s [algebraic-graphs] ============ Typed.dfs ============
  213. 1498.00 s [algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
  214. 1498.00 s [algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
  215. 1498.00 s [algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
  216. 1498.00 s [algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
  217. 1498.00 s [algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
  218. 1498.00 s [algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
  219. 1498.00 s [algebraic-graphs] OK: dfs % x $ [] == []
  220. 1498.00 s [algebraic-graphs]
  221. 1498.00 s [algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
  222. 1498.00 s [algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
  223. 1498.00 s [algebraic-graphs]
  224. 1498.00 s [algebraic-graphs] ============ Typed.topSort ============
  225. 1498.00 s [algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
  226. 1498.00 s [algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
  227. 1498.00 s [algebraic-graphs]
  228. 1498.00 s [algebraic-graphs] ============ Graph.Undirected ============
  229. 1498.00 s [algebraic-graphs] OK: Axioms of undirected graphs
  230. 1498.00 s [algebraic-graphs]
  231. 1498.00 s [algebraic-graphs] ============ Graph.Undirected.Show ============
  232. 1498.00 s [algebraic-graphs] OK: show (empty ) == "empty"
  233. 1498.00 s [algebraic-graphs] OK: show (1 ) == "vertex 1"
  234. 1498.00 s [algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
  235. 1498.00 s [algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
  236. 1498.00 s [algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
  237. 1498.00 s [algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
  238. 1498.00 s [algebraic-graphs]
  239. 1498.00 s [algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
  240. 1498.00 s [algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
  241. 1498.00 s [algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
  242. 1498.00 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
  243. 1498.00 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
  244. 1498.00 s [algebraic-graphs]
  245. 1498.00 s [algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
  246. 1498.00 s [algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
  247. 1498.00 s [algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
  248. 1498.00 s [algebraic-graphs]
  249. 1498.00 s [algebraic-graphs] ============ Graph.Undirected.toUndirected ============
  250. 1498.00 s [algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
  251. 1498.00 s [algebraic-graphs] OK: toUndirected . fromUndirected == id
  252. 1498.00 s [algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
  253. 1498.00 s [algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
  254. 1498.00 s [algebraic-graphs]
  255. 1498.00 s [algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
  256. 1498.00 s [algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
  257. 1498.00 s [algebraic-graphs] OK: toUndirected . fromUndirected == id
  258. 1498.00 s [algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
  259. 1498.00 s [algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
  260. 1498.00 s [algebraic-graphs]
  261. 1498.00 s [algebraic-graphs] ============ Graph.Undirected.complement ================
  262. 1498.00 s [algebraic-graphs] OK: complement empty == empty
  263. 1498.00 s [algebraic-graphs] OK: complement (vertex x) == vertex x
  264. 1498.00 s [algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
  265. 1498.00 s [algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
  266. 1498.00 s [algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
  267. 1498.00 s [algebraic-graphs] OK: complement . complement == id
  268. 1498.00 s [algebraic-graphs]
  269. 1498.00 s [algebraic-graphs] ============ Graph.Undirected.Ord ============
  270. 1498.00 s [algebraic-graphs] OK: vertex 1 < vertex 2
  271. 1498.01 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  272. 1498.01 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  273. 1498.01 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  274. 1498.01 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  275. 1498.01 s [algebraic-graphs] OK: edge 2 1 < edge 1 3
  276. 1498.01 s [algebraic-graphs] OK: edge 1 2 == edge 2 1
  277. 1498.01 s [algebraic-graphs] OK: x <= x + y
  278. 1498.01 s [algebraic-graphs] OK: x + y <= x * y
  279. 1498.01 s [algebraic-graphs]
  280. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.empty ============
  281. 1498.01 s [algebraic-graphs] OK: isEmpty empty == True
  282. 1498.01 s [algebraic-graphs] OK: hasVertex x empty == False
  283. 1498.01 s [algebraic-graphs] OK: vertexCount empty == 0
  284. 1498.01 s [algebraic-graphs] OK: edgeCount empty == 0
  285. 1498.01 s [algebraic-graphs]
  286. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.vertex ============
  287. 1498.01 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  288. 1498.01 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  289. 1498.01 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  290. 1498.01 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  291. 1498.01 s [algebraic-graphs]
  292. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.edge ============
  293. 1498.01 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  294. 1498.01 s [algebraic-graphs] OK: edge x y == edge y x
  295. 1498.01 s [haskell-language-server] [4 of 4] Compiling Ide.Plugin.CallHierarchy ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy.dyn_o )
  296. 1498.01 s [haskell-language-server] [1 of 4] Compiling Ide.Plugin.CallHierarchy.Types ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Types.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Types.p_o )
  297. 1498.01 s [haskell-language-server] [2 of 4] Compiling Ide.Plugin.CallHierarchy.Query ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Query.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Query.p_o )
  298. 1498.01 s [algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
  299. 1498.01 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  300. 1498.01 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  301. 1498.01 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  302. 1498.01 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  303. 1498.01 s [algebraic-graphs]
  304. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.overlay ============
  305. 1498.01 s [algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
  306. 1498.01 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  307. 1498.01 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  308. 1498.01 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  309. 1498.01 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  310. 1498.01 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  311. 1498.01 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  312. 1498.01 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  313. 1498.01 s [algebraic-graphs]
  314. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.connect ============
  315. 1498.01 s [algebraic-graphs] OK: connect x y == connect y x
  316. 1498.01 s [algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
  317. 1498.01 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  318. 1498.01 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  319. 1498.01 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  320. 1498.01 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  321. 1498.01 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  322. 1498.01 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
  323. 1498.01 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  324. 1498.01 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  325. 1498.01 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  326. 1498.01 s [algebraic-graphs]
  327. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.vertices ============
  328. 1498.01 s [algebraic-graphs] OK: vertices [] == empty
  329. 1498.01 s [algebraic-graphs] OK: vertices [x] == vertex x
  330. 1498.01 s [algebraic-graphs] OK: vertices == overlays . map vertex
  331. 1498.01 s [algebraic-graphs] OK: hasVertex x . vertices == elem x
  332. 1498.01 s [algebraic-graphs] OK: vertexCount . vertices == length . nub
  333. 1498.01 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  334. 1498.01 s [algebraic-graphs]
  335. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.edges ============
  336. 1498.01 s [algebraic-graphs] OK: edges [] == empty
  337. 1498.01 s [algebraic-graphs] OK: edges [(x,y)] == edge x y
  338. 1498.01 s [algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
  339. 1498.01 s [algebraic-graphs]
  340. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.overlays ============
  341. 1498.01 s [algebraic-graphs] OK: overlays [] == empty
  342. 1498.01 s [algebraic-graphs] OK: overlays [x] == x
  343. 1498.01 s [algebraic-graphs] OK: overlays [x,y] == overlay x y
  344. 1498.01 s [algebraic-graphs] OK: overlays == foldr overlay empty
  345. 1498.01 s [algebraic-graphs] OK: isEmpty . overlays == all isEmpty
  346. 1498.01 s [algebraic-graphs]
  347. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.connects ============
  348. 1498.01 s [algebraic-graphs] OK: connects [] == empty
  349. 1498.01 s [algebraic-graphs] OK: connects [x] == x
  350. 1498.01 s [algebraic-graphs] OK: connects [x,y] == connect x y
  351. 1498.01 s [algebraic-graphs] OK: connects == foldr connect empty
  352. 1498.01 s [algebraic-graphs] OK: isEmpty . connects == all isEmpty
  353. 1498.01 s [algebraic-graphs] OK: connects == connects . reverse
  354. 1498.01 s [algebraic-graphs]
  355. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
  356. 1498.01 s [algebraic-graphs] OK: isSubgraphOf empty x == True
  357. 1498.01 s [algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
  358. 1498.01 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  359. 1498.01 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  360. 1498.01 s [algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
  361. 1498.01 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  362. 1498.01 s [algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
  363. 1498.01 s [algebraic-graphs]
  364. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.path ============
  365. 1498.01 s [algebraic-graphs] OK: path [] == empty
  366. 1498.01 s [algebraic-graphs] OK: path [x] == vertex x
  367. 1498.01 s [algebraic-graphs] OK: path [x,y] == edge x y
  368. 1498.01 s [algebraic-graphs] OK: path == path . reverse
  369. 1498.01 s [algebraic-graphs]
  370. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.circuit ============
  371. 1498.01 s [algebraic-graphs] OK: circuit [] == empty
  372. 1498.01 s [algebraic-graphs] OK: circuit [x] == edge x x
  373. 1498.01 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  374. 1498.01 s [algebraic-graphs] OK: circuit == circuit . reverse
  375. 1498.01 s [algebraic-graphs]
  376. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.clique ============
  377. 1498.01 s [algebraic-graphs] OK: clique [] == empty
  378. 1498.01 s [algebraic-graphs] OK: clique [x] == vertex x
  379. 1498.01 s [algebraic-graphs] OK: clique [x,y] == edge x y
  380. 1498.01 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  381. 1498.01 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  382. 1498.01 s [algebraic-graphs] OK: clique == clique . reverse
  383. 1498.01 s [algebraic-graphs]
  384. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.biclique ============
  385. 1498.01 s [algebraic-graphs] OK: biclique [] [] == empty
  386. 1498.01 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  387. 1498.01 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  388. 1498.01 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  389. 1498.01 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  390. 1498.01 s [algebraic-graphs]
  391. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.star ============
  392. 1498.01 s [algebraic-graphs] OK: star x [] == vertex x
  393. 1498.01 s [algebraic-graphs] OK: star x [y] == edge x y
  394. 1498.01 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  395. 1498.01 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  396. 1498.01 s [algebraic-graphs]
  397. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.stars ============
  398. 1498.01 s [algebraic-graphs] OK: stars [] == empty
  399. 1498.01 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  400. 1498.01 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  401. 1498.01 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  402. 1498.01 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  403. 1498.01 s [algebraic-graphs] OK: stars . adjacencyList == id
  404. 1498.01 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  405. 1498.01 s [algebraic-graphs]
  406. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.tree ============
  407. 1498.01 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  408. 1498.01 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  409. 1498.01 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  410. 1498.01 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  411. 1498.01 s [algebraic-graphs]
  412. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.forest ============
  413. 1498.01 s [algebraic-graphs] OK: forest [] == empty
  414. 1498.01 s [algebraic-graphs] OK: forest [x] == tree x
  415. 1498.01 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  416. 1498.01 s [algebraic-graphs] OK: forest == overlays . map tree
  417. 1498.01 s [algebraic-graphs]
  418. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.removeVertex ============
  419. 1498.01 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  420. 1498.01 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  421. 1498.01 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  422. 1498.01 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  423. 1498.01 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  424. 1498.01 s [algebraic-graphs]
  425. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.removeEdge ============
  426. 1498.01 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  427. 1498.01 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  428. 1498.01 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  429. 1498.01 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  430. 1498.01 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  431. 1498.01 s [algebraic-graphs] OK: removeEdge x y == removeEdge y x
  432. 1498.01 s [algebraic-graphs]
  433. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
  434. 1498.01 s [algebraic-graphs] OK: replaceVertex x x == id
  435. 1498.01 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  436. 1498.01 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  437. 1498.01 s [algebraic-graphs]
  438. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
  439. 1498.01 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  440. 1498.01 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  441. 1498.01 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  442. 1498.01 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  443. 1498.01 s [algebraic-graphs]
  444. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.gmap ============
  445. 1498.01 s [algebraic-graphs] OK: gmap f empty == empty
  446. 1498.01 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  447. 1498.01 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  448. 1498.01 s [algebraic-graphs] OK: gmap id == id
  449. 1498.01 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  450. 1498.01 s [algebraic-graphs]
  451. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.induce ============
  452. 1498.01 s [algebraic-graphs] OK: induce (const True ) x == x
  453. 1498.01 s [algebraic-graphs] OK: induce (const False) x == empty
  454. 1498.01 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  455. 1498.01 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  456. 1498.01 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  457. 1498.01 s [algebraic-graphs]
  458. 1498.01 s [algebraic-graphs] ============ Graph.Undirected.induceJust ============
  459. 1498.01 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  460. 1498.01 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  461. 1498.01 s [algebraic-graphs] OK: induceJust . gmap Just == id
  462. 1498.01 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  463. 1498.01 s [algebraic-graphs] Test suite main: PASS
  464. 1498.01 s [algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
  465. 1498.01 s [algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
  466. 1498.10 s [algebraic-graphs] checkPhase completed in 5 minutes 59 seconds
  467. 1498.10 s [algebraic-graphs] Phase: haddockPhase
  468. 1498.32 s [algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
  469. 1498.33 s [algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
  470. 1498.57 s [haskell-language-server] [3 of 4] Compiling Ide.Plugin.CallHierarchy.Internal ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Internal.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Internal.p_o )
  471. 1498.59 s [pandoc-lua-engine] Phase: setupCompilerEnvironmentPhase
  472. 1498.59 s [pandoc-lua-engine] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  473. 1498.61 s [algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing )
  474. 1498.70 s [pandoc-server] Phase: setupCompilerEnvironmentPhase
  475. 1498.70 s [pandoc-server] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  476. 1499.14 s [algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing )
  477. 1499.37 s [algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing )
  478. 1499.47 s [pandoc-lua-engine] Phase: unpackPhase
  479. 1499.48 s [pandoc-lua-engine] unpacking source archive /nix/store/zx6z7rsf1lwrwkbcq94jg1dgi1fp9jls-pandoc-lua-engine-0.4.3.tar.gz
  480. 1499.49 s [pandoc-lua-engine] source root is pandoc-lua-engine-0.4.3
  481. 1499.50 s [pandoc-lua-engine] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-lua-engine-0.4.3/test/writer-template.out.txt"
  482. 1499.51 s [pandoc-lua-engine] Phase: patchPhase
  483. 1499.52 s [pandoc-lua-engine] Replace Cabal file with edited version from mirror://hackage/pandoc-lua-engine-0.4.3/revision/2.cabal.
  484. 1499.53 s [pandoc-lua-engine] Phase: compileBuildDriverPhase
  485. 1499.54 s [algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing )
  486. 1499.54 s [pandoc-lua-engine] setupCompileFlags: -package-db=/build/tmp.JOLDjNuE6Q/setup-package.conf.d -threaded
  487. 1499.58 s [pandoc-server] Phase: unpackPhase
  488. 1499.59 s [pandoc-server] unpacking source archive /nix/store/4kqsjsplqpsanrihsxp1wxshjqr4snkl-pandoc-server-0.1.0.11.tar.gz
  489. 1499.59 s [pandoc-server] source root is pandoc-server-0.1.0.11
  490. 1499.60 s [pandoc-server] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-server-0.1.0.11/src/Text/Pandoc/Server.hs"
  491. 1499.61 s [pandoc-server] Phase: patchPhase
  492. 1499.62 s [pandoc-lua-engine] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.JOLDjNuE6Q/Main.o )
  493. 1499.62 s [pandoc-server] Phase: compileBuildDriverPhase
  494. 1499.63 s [pandoc-server] setupCompileFlags: -package-db=/build/tmp.i1N2NtWUDG/setup-package.conf.d -threaded
  495. 1499.70 s [algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing )
  496. 1499.70 s [pandoc-server] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.i1N2NtWUDG/Main.o )
  497. 1499.92 s [pandoc-lua-engine] [2 of 2] Linking Setup
  498. 1499.92 s [pandoc-server] [2 of 2] Linking Setup
  499. 1499.94 s [algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing )
  500. 1499.98 s [algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing )
  501. 1500.12 s [haskell-language-server] [4 of 4] Compiling Ide.Plugin.CallHierarchy ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy.p_o )
  502. 1500.22 s [algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing )
  503. 1500.35 s [algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing )
  504. 1500.67 s [algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing )
  505. 1500.76 s [algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing )
  506. 1500.89 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning: [GHC-63394] [-Wx-partial]
  507. 1500.90 s [algebraic-graphs] In the use of ‘head’
  508. 1500.90 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  509. 1500.90 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
  510. 1500.90 s [algebraic-graphs] |
  511. 1500.90 s [algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
  512. 1500.90 s [algebraic-graphs] | ^^^^
  513. 1500.90 s [algebraic-graphs]
  514. 1500.90 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning: [GHC-63394] [-Wx-partial]
  515. 1500.90 s [algebraic-graphs] In the use of ‘tail’
  516. 1500.90 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  517. 1500.90 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  518. 1500.90 s [algebraic-graphs] |
  519. 1500.90 s [algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
  520. 1500.90 s [algebraic-graphs] | ^^^^
  521. 1500.90 s [algebraic-graphs]
  522. 1500.90 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning: [GHC-63394] [-Wx-partial]
  523. 1500.90 s [algebraic-graphs] In the use of ‘head’
  524. 1500.90 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  525. 1500.91 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
  526. 1500.91 s [algebraic-graphs] |
  527. 1500.91 s [algebraic-graphs] 395 | p_v = fst $ head bnd
  528. 1500.91 s [algebraic-graphs] | ^^^^
  529. 1500.91 s [algebraic-graphs]
  530. 1500.91 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning: [GHC-63394] [-Wx-partial]
  531. 1500.91 s [algebraic-graphs] In the use of ‘tail’
  532. 1500.91 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  533. 1500.91 s [algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  534. 1500.91 s [algebraic-graphs] |
  535. 1500.91 s [algebraic-graphs] 397 | bnd' = tail bnd
  536. 1500.91 s [algebraic-graphs] | ^^^^
  537. 1500.91 s [algebraic-graphs]
  538. 1500.91 s [algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing )
  539. 1500.98 s [algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing )
  540. 1501.22 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  541. 1501.22 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  542. 1501.22 s [algebraic-graphs] will become an error in a future GHC release.
  543. 1501.22 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  544. 1501.22 s [algebraic-graphs] |
  545. 1501.22 s [algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
  546. 1501.22 s [algebraic-graphs] | ^
  547. 1501.22 s [algebraic-graphs]
  548. 1501.22 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  549. 1501.22 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  550. 1501.22 s [algebraic-graphs] will become an error in a future GHC release.
  551. 1501.22 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  552. 1501.22 s [algebraic-graphs] |
  553. 1501.22 s [algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
  554. 1501.22 s [algebraic-graphs] | ^
  555. 1501.22 s [algebraic-graphs]
  556. 1501.23 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  557. 1501.23 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  558. 1501.23 s [algebraic-graphs] will become an error in a future GHC release.
  559. 1501.23 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  560. 1501.23 s [algebraic-graphs] |
  561. 1501.23 s [algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
  562. 1501.23 s [algebraic-graphs] | ^
  563. 1501.23 s [algebraic-graphs]
  564. 1501.23 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  565. 1501.23 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  566. 1501.23 s [algebraic-graphs] will become an error in a future GHC release.
  567. 1501.23 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  568. 1501.23 s [algebraic-graphs] |
  569. 1501.23 s [algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
  570. 1501.23 s [algebraic-graphs] | ^
  571. 1501.23 s [algebraic-graphs]
  572. 1501.23 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  573. 1501.23 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  574. 1501.23 s [algebraic-graphs] will become an error in a future GHC release.
  575. 1501.23 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  576. 1501.23 s [algebraic-graphs] |
  577. 1501.23 s [algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
  578. 1501.23 s [algebraic-graphs] | ^
  579. 1501.23 s [algebraic-graphs]
  580. 1501.23 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  581. 1501.23 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  582. 1501.23 s [algebraic-graphs] will become an error in a future GHC release.
  583. 1501.23 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  584. 1501.23 s [algebraic-graphs] |
  585. 1501.23 s [algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
  586. 1501.23 s [algebraic-graphs] | ^
  587. 1501.23 s [algebraic-graphs]
  588. 1501.23 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  589. 1501.23 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  590. 1501.23 s [algebraic-graphs] will become an error in a future GHC release.
  591. 1501.23 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  592. 1501.23 s [algebraic-graphs] |
  593. 1501.23 s [algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
  594. 1501.23 s [algebraic-graphs] | ^
  595. 1501.23 s [algebraic-graphs]
  596. 1501.24 s [algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing )
  597. 1501.49 s [algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing )
  598. 1501.62 s [algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing )
  599. 1501.63 s [pandoc-server] Phase: updateAutotoolsGnuConfigScriptsPhase
  600. 1501.65 s [pandoc-server] Phase: configurePhase
  601. 1501.66 s [pandoc-server] configureFlags: --verbose --prefix=/nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc/share/doc/pandoc-server-0.1.0.11 --with-gcc=gcc --package-db=/build/tmp.i1N2NtWUDG/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib
  602. 1501.67 s [pandoc-server] Using Parsec parser
  603. 1501.67 s [pandoc-server] Configuring pandoc-server-0.1.0.11...
  604. 1501.71 s [pandoc-lua-engine] Phase: updateAutotoolsGnuConfigScriptsPhase
  605. 1501.72 s [pandoc-lua-engine] Phase: configurePhase
  606. 1501.73 s [pandoc-lua-engine] configureFlags: --verbose --prefix=/nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc/share/doc/pandoc-lua-engine-0.4.3 --with-gcc=gcc --package-db=/build/tmp.JOLDjNuE6Q/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib
  607. 1501.75 s [pandoc-lua-engine] Using Parsec parser
  608. 1501.75 s [pandoc-lua-engine] Configuring pandoc-lua-engine-0.4.3...
  609. 1501.88 s [algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing )
  610. 1502.22 s [algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing )
  611. 1502.36 s [algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing )
  612. 1502.38 s [algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing )
  613. 1502.42 s [algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing )
  614. 1502.46 s [algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  615. 1502.46 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  616. 1502.46 s [algebraic-graphs] will become an error in a future GHC release.
  617. 1502.46 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  618. 1502.46 s [algebraic-graphs] |
  619. 1502.46 s [algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
  620. 1502.46 s [algebraic-graphs] | ^
  621. 1502.46 s [algebraic-graphs]
  622. 1502.46 s [algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing )
  623. 1502.49 s [algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  624. 1502.49 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  625. 1502.49 s [algebraic-graphs] will become an error in a future GHC release.
  626. 1502.49 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  627. 1502.49 s [algebraic-graphs] |
  628. 1502.49 s [algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
  629. 1502.49 s [algebraic-graphs] | ^
  630. 1502.49 s [algebraic-graphs]
  631. 1502.49 s [algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  632. 1502.49 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  633. 1502.49 s [algebraic-graphs] will become an error in a future GHC release.
  634. 1502.49 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  635. 1502.49 s [algebraic-graphs] |
  636. 1502.49 s [algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
  637. 1502.49 s [algebraic-graphs] | ^
  638. 1502.49 s [algebraic-graphs]
  639. 1502.49 s [algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing )
  640. 1502.67 s [algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing )
  641. 1502.86 s [pandoc-lua-engine] Dependency aeson: using aeson-2.2.3.0
  642. 1502.86 s [pandoc-lua-engine] Dependency base >=4.12 && <5: using base-4.20.2.0
  643. 1502.86 s [pandoc-lua-engine] Dependency bytestring >=0.9 && <0.13: using bytestring-0.12.2.0
  644. 1502.86 s [pandoc-lua-engine] Dependency citeproc >=0.8 && <0.10: using citeproc-0.9.0.1
  645. 1502.86 s [pandoc-lua-engine] Dependency containers >=0.6.0.1 && <0.9: using containers-0.7
  646. 1502.86 s [pandoc-lua-engine] Dependency crypton >=0.30 && <1.1: using crypton-1.0.4
  647. 1502.86 s [pandoc-lua-engine] Dependency data-default >=0.4 && <0.9: using data-default-0.8.0.1
  648. 1502.86 s [pandoc-lua-engine] Dependency doclayout >=0.5 && <0.6: using doclayout-0.5.0.1
  649. 1502.86 s [pandoc-lua-engine] Dependency doctemplates >=0.11 && <0.12: using doctemplates-0.11.0.1
  650. 1502.86 s [pandoc-lua-engine] Dependency exceptions >=0.8 && <0.11: using exceptions-0.10.9
  651. 1502.86 s [pandoc-lua-engine] Dependency hslua >=2.3 && <2.5: using hslua-2.3.1
  652. 1502.86 s [pandoc-lua-engine] Dependency hslua-module-doclayout >=1.2 && <1.3: using
  653. 1502.86 s [pandoc-lua-engine] hslua-module-doclayout-1.2.0.1
  654. 1502.86 s [pandoc-lua-engine] Dependency hslua-module-path >=1.1 && <1.2: using hslua-module-path-1.1.1
  655. 1502.86 s [pandoc-lua-engine] Dependency hslua-module-system >=1.1 && <1.3: using hslua-module-system-1.1.3
  656. 1502.86 s [pandoc-lua-engine] Dependency hslua-module-text >=1.1 && <1.2: using hslua-module-text-1.1.1
  657. 1502.86 s [pandoc-lua-engine] Dependency hslua-module-version >=1.1 && <1.2: using
  658. 1502.86 s [pandoc-lua-engine] hslua-module-version-1.1.1
  659. 1502.86 s [pandoc-lua-engine] Dependency hslua-module-zip >=1.1.3 && <1.2: using hslua-module-zip-1.1.4
  660. 1502.86 s [pandoc-lua-engine] Dependency hslua-repl >=0.1.1 && <0.2: using hslua-repl-0.1.2
  661. 1502.86 s [pandoc-lua-engine] Dependency lpeg >=1.1 && <1.2: using lpeg-1.1.0
  662. 1502.86 s [pandoc-lua-engine] Dependency mtl >=2.2 && <2.4: using mtl-2.3.1
  663. 1502.86 s [pandoc-lua-engine] Dependency pandoc >=3.7 && <3.8: using pandoc-3.7.0.2
  664. 1502.86 s [pandoc-lua-engine] Dependency pandoc-lua-marshal >=0.3 && <0.4: using pandoc-lua-marshal-0.3.1
  665. 1502.86 s [pandoc-lua-engine] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
  666. 1502.86 s [pandoc-lua-engine] Dependency parsec >=3.1 && <3.2: using parsec-3.1.18.0
  667. 1502.87 s [pandoc-lua-engine] Dependency text >=1.1.1 && <2.2: using text-2.1.3
  668. 1502.87 s [pandoc-lua-engine] Dependency base >=4.12 && <5: using base-4.20.2.0
  669. 1502.87 s [pandoc-lua-engine] Dependency bytestring: using bytestring-0.12.2.0
  670. 1502.87 s [pandoc-lua-engine] Dependency data-default: using data-default-0.8.0.1
  671. 1502.87 s [pandoc-lua-engine] Dependency directory: using directory-1.3.8.5
  672. 1502.87 s [pandoc-lua-engine] Dependency exceptions >=0.8 && <0.11: using exceptions-0.10.9
  673. 1502.87 s [pandoc-lua-engine] Dependency filepath: using filepath-1.5.4.0
  674. 1502.87 s [pandoc-lua-engine] Dependency hslua >=2.3 && <2.5: using hslua-2.3.1
  675. 1502.87 s [pandoc-lua-engine] Dependency pandoc: using pandoc-3.7.0.2
  676. 1502.87 s [pandoc-lua-engine] Dependency pandoc-lua-engine: using pandoc-lua-engine-0.4.3
  677. 1502.87 s [pandoc-lua-engine] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
  678. 1502.87 s [pandoc-lua-engine] Dependency tasty: using tasty-1.5.3
  679. 1502.87 s [pandoc-lua-engine] Dependency tasty-golden: using tasty-golden-2.3.5
  680. 1502.87 s [pandoc-lua-engine] Dependency tasty-hunit: using tasty-hunit-0.10.2
  681. 1502.87 s [pandoc-lua-engine] Dependency tasty-lua >=1.1 && <1.2: using tasty-lua-1.1.2
  682. 1502.87 s [pandoc-lua-engine] Dependency text >=1.1.1 && <2.2: using text-2.1.3
  683. 1502.87 s [pandoc-lua-engine] Source component graph:
  684. 1502.87 s [pandoc-lua-engine] component lib
  685. 1502.87 s [pandoc-lua-engine] component test:test-pandoc-lua-engine dependency lib
  686. 1502.87 s [pandoc-lua-engine] Configured component graph:
  687. 1502.87 s [pandoc-lua-engine] component pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  688. 1502.87 s [pandoc-lua-engine] include aeson-2.2.3.0-7E4AsQHgFKfArDQma5twwk
  689. 1502.87 s [pandoc-lua-engine] include base-4.20.2.0-64da
  690. 1502.87 s [pandoc-lua-engine] include bytestring-0.12.2.0-262e
  691. 1502.87 s [pandoc-lua-engine] include citeproc-0.9.0.1-8eZIkwGUgwZIclKUEeSqkh
  692. 1502.87 s [pandoc-lua-engine] include containers-0.7-504a
  693. 1502.87 s [pandoc-lua-engine] include crypton-1.0.4-1q6uwxo2tOdF6dyEFtI6Wj
  694. 1502.87 s [pandoc-lua-engine] include data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  695. 1502.87 s [pandoc-lua-engine] include doclayout-0.5.0.1-ETXOcBr0tml6gEsSGXL6oV
  696. 1502.87 s [pandoc-lua-engine] include doctemplates-0.11.0.1-3IxkRZEwO7j4PZOMczCd6F
  697. 1502.87 s [pandoc-lua-engine] include exceptions-0.10.9-1a12
  698. 1502.87 s [pandoc-lua-engine] include hslua-2.3.1-2u5PxJdzmf64O4i47k1PVi
  699. 1502.87 s [pandoc-lua-engine] include hslua-module-doclayout-1.2.0.1-ErY6mbvHQgAEdxA7VP30qJ
  700. 1502.87 s [pandoc-lua-engine] include hslua-module-path-1.1.1-u1nrCdvNoJBLk9wjMCk0d
  701. 1502.87 s [pandoc-lua-engine] include hslua-module-system-1.1.3-C64Ey1CTges1ct5bp4x6FI
  702. 1502.87 s [pandoc-lua-engine] include hslua-module-text-1.1.1-KHVA6Tk8C366LjT6lG2vsI
  703. 1502.87 s [pandoc-lua-engine] include hslua-module-version-1.1.1-31iUzkcfJgL8o5QdosdhcV
  704. 1502.87 s [pandoc-lua-engine] include hslua-module-zip-1.1.4-7o7wUu0Aa5uJq1MktjFd3a
  705. 1502.87 s [pandoc-lua-engine] include hslua-repl-0.1.2-Juvw7nYrTHo9eZBtoxILD7
  706. 1502.87 s [pandoc-lua-engine] include lpeg-1.1.0-84tlw7PTtFB7quUkAvIAre
  707. 1502.87 s [pandoc-lua-engine] include mtl-2.3.1-b4af
  708. 1502.87 s [pandoc-lua-engine] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  709. 1502.87 s [pandoc-lua-engine] include pandoc-lua-marshal-0.3.1-CEai8TZ59D36cGPSocsWLC
  710. 1502.87 s [pandoc-lua-engine] include pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  711. 1502.87 s [pandoc-lua-engine] include parsec-3.1.18.0-b178
  712. 1502.87 s [pandoc-lua-engine] include text-2.1.3-c691
  713. 1502.87 s [pandoc-lua-engine] component pandoc-lua-engine-0.4.3-3LEmP89EEdjCRAN3LsL1y3-test-pandoc-lua-engine
  714. 1502.87 s [pandoc-lua-engine] include base-4.20.2.0-64da
  715. 1502.87 s [pandoc-lua-engine] include bytestring-0.12.2.0-262e
  716. 1502.87 s [pandoc-lua-engine] include data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  717. 1502.87 s [pandoc-lua-engine] include directory-1.3.8.5-c84a
  718. 1502.87 s [pandoc-lua-engine] include exceptions-0.10.9-1a12
  719. 1502.87 s [pandoc-lua-engine] include filepath-1.5.4.0-e600
  720. 1502.87 s [pandoc-lua-engine] include hslua-2.3.1-2u5PxJdzmf64O4i47k1PVi
  721. 1502.87 s [pandoc-lua-engine] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  722. 1502.87 s [pandoc-lua-engine] include pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  723. 1502.87 s [pandoc-lua-engine] include pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  724. 1502.87 s [pandoc-lua-engine] include tasty-1.5.3-G9Yzt8NHi59EMJ9EpY1hVQ
  725. 1502.87 s [pandoc-lua-engine] include tasty-golden-2.3.5-3QQ0reIfFJ36gfVIlepFcf
  726. 1502.87 s [pandoc-lua-engine] include tasty-hunit-0.10.2-A8CripGhFniB64lHINz5Kq
  727. 1502.87 s [pandoc-lua-engine] include tasty-lua-1.1.2-1O8o765OPu9IHWrmpruNIo
  728. 1502.87 s [pandoc-lua-engine] include text-2.1.3-c691
  729. 1502.87 s [pandoc-lua-engine] Linked component graph:
  730. 1502.87 s [pandoc-lua-engine] unit pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  731. 1502.87 s [pandoc-lua-engine] include aeson-2.2.3.0-7E4AsQHgFKfArDQma5twwk
  732. 1502.87 s [pandoc-lua-engine] include base-4.20.2.0-64da
  733. 1502.87 s [pandoc-lua-engine] include bytestring-0.12.2.0-262e
  734. 1502.87 s [pandoc-lua-engine] include citeproc-0.9.0.1-8eZIkwGUgwZIclKUEeSqkh
  735. 1502.87 s [pandoc-lua-engine] include containers-0.7-504a
  736. 1502.87 s [pandoc-lua-engine] include crypton-1.0.4-1q6uwxo2tOdF6dyEFtI6Wj
  737. 1502.87 s [pandoc-lua-engine] include data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  738. 1502.87 s [pandoc-lua-engine] include doclayout-0.5.0.1-ETXOcBr0tml6gEsSGXL6oV
  739. 1502.87 s [pandoc-lua-engine] include doctemplates-0.11.0.1-3IxkRZEwO7j4PZOMczCd6F
  740. 1502.87 s [pandoc-lua-engine] include exceptions-0.10.9-1a12
  741. 1502.87 s [pandoc-lua-engine] include hslua-2.3.1-2u5PxJdzmf64O4i47k1PVi
  742. 1502.87 s [pandoc-lua-engine] include hslua-module-doclayout-1.2.0.1-ErY6mbvHQgAEdxA7VP30qJ
  743. 1502.87 s [pandoc-lua-engine] include hslua-module-path-1.1.1-u1nrCdvNoJBLk9wjMCk0d
  744. 1502.87 s [pandoc-lua-engine] include hslua-module-system-1.1.3-C64Ey1CTges1ct5bp4x6FI
  745. 1502.87 s [pandoc-lua-engine] include hslua-module-text-1.1.1-KHVA6Tk8C366LjT6lG2vsI
  746. 1502.87 s [pandoc-lua-engine] include hslua-module-version-1.1.1-31iUzkcfJgL8o5QdosdhcV
  747. 1502.87 s [pandoc-lua-engine] include hslua-module-zip-1.1.4-7o7wUu0Aa5uJq1MktjFd3a
  748. 1502.87 s [pandoc-lua-engine] include hslua-repl-0.1.2-Juvw7nYrTHo9eZBtoxILD7
  749. 1502.87 s [pandoc-lua-engine] include lpeg-1.1.0-84tlw7PTtFB7quUkAvIAre
  750. 1502.87 s [pandoc-lua-engine] include mtl-2.3.1-b4af
  751. 1502.87 s [pandoc-lua-engine] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  752. 1502.87 s [pandoc-lua-engine] include pandoc-lua-marshal-0.3.1-CEai8TZ59D36cGPSocsWLC
  753. 1502.87 s [pandoc-lua-engine] include pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  754. 1502.87 s [pandoc-lua-engine] include parsec-3.1.18.0-b178
  755. 1502.87 s [pandoc-lua-engine] include text-2.1.3-c691
  756. 1502.87 s [pandoc-lua-engine] Text.Pandoc.Lua=pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4:Text.Pandoc.Lua
  757. 1502.87 s [pandoc-lua-engine] unit pandoc-lua-engine-0.4.3-3LEmP89EEdjCRAN3LsL1y3-test-pandoc-lua-engine
  758. 1502.87 s [pandoc-lua-engine] include base-4.20.2.0-64da
  759. 1502.87 s [pandoc-lua-engine] include bytestring-0.12.2.0-262e
  760. 1502.87 s [pandoc-lua-engine] include data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  761. 1502.87 s [pandoc-lua-engine] include directory-1.3.8.5-c84a
  762. 1502.87 s [pandoc-lua-engine] include exceptions-0.10.9-1a12
  763. 1502.87 s [pandoc-lua-engine] include filepath-1.5.4.0-e600
  764. 1502.87 s [pandoc-lua-engine] include hslua-2.3.1-2u5PxJdzmf64O4i47k1PVi
  765. 1502.87 s [pandoc-lua-engine] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  766. 1502.87 s [pandoc-lua-engine] include pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  767. 1502.87 s [pandoc-lua-engine] include pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  768. 1502.87 s [pandoc-lua-engine] include tasty-1.5.3-G9Yzt8NHi59EMJ9EpY1hVQ
  769. 1502.87 s [pandoc-lua-engine] include tasty-golden-2.3.5-3QQ0reIfFJ36gfVIlepFcf
  770. 1502.87 s [pandoc-lua-engine] include tasty-hunit-0.10.2-A8CripGhFniB64lHINz5Kq
  771. 1502.87 s [pandoc-lua-engine] include tasty-lua-1.1.2-1O8o765OPu9IHWrmpruNIo
  772. 1502.87 s [pandoc-lua-engine] include text-2.1.3-c691
  773. 1502.87 s [pandoc-lua-engine] Ready component graph:
  774. 1502.87 s [pandoc-lua-engine] definite pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  775. 1502.87 s [pandoc-lua-engine] depends aeson-2.2.3.0-7E4AsQHgFKfArDQma5twwk
  776. 1502.87 s [pandoc-lua-engine] depends base-4.20.2.0-64da
  777. 1502.87 s [pandoc-lua-engine] depends bytestring-0.12.2.0-262e
  778. 1502.87 s [pandoc-lua-engine] depends citeproc-0.9.0.1-8eZIkwGUgwZIclKUEeSqkh
  779. 1502.87 s [pandoc-lua-engine] depends containers-0.7-504a
  780. 1502.87 s [pandoc-lua-engine] depends crypton-1.0.4-1q6uwxo2tOdF6dyEFtI6Wj
  781. 1502.87 s [pandoc-lua-engine] depends data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  782. 1502.87 s [pandoc-lua-engine] depends doclayout-0.5.0.1-ETXOcBr0tml6gEsSGXL6oV
  783. 1502.87 s [pandoc-lua-engine] depends doctemplates-0.11.0.1-3IxkRZEwO7j4PZOMczCd6F
  784. 1502.87 s [pandoc-lua-engine] depends exceptions-0.10.9-1a12
  785. 1502.87 s [pandoc-lua-engine] depends hslua-2.3.1-2u5PxJdzmf64O4i47k1PVi
  786. 1502.87 s [pandoc-lua-engine] depends hslua-module-doclayout-1.2.0.1-ErY6mbvHQgAEdxA7VP30qJ
  787. 1502.87 s [pandoc-lua-engine] depends hslua-module-path-1.1.1-u1nrCdvNoJBLk9wjMCk0d
  788. 1502.87 s [pandoc-lua-engine] depends hslua-module-system-1.1.3-C64Ey1CTges1ct5bp4x6FI
  789. 1502.87 s [pandoc-lua-engine] depends hslua-module-text-1.1.1-KHVA6Tk8C366LjT6lG2vsI
  790. 1502.87 s [pandoc-lua-engine] depends hslua-module-version-1.1.1-31iUzkcfJgL8o5QdosdhcV
  791. 1502.87 s [pandoc-lua-engine] depends hslua-module-zip-1.1.4-7o7wUu0Aa5uJq1MktjFd3a
  792. 1502.87 s [pandoc-lua-engine] depends hslua-repl-0.1.2-Juvw7nYrTHo9eZBtoxILD7
  793. 1502.87 s [pandoc-lua-engine] depends lpeg-1.1.0-84tlw7PTtFB7quUkAvIAre
  794. 1502.87 s [pandoc-lua-engine] depends mtl-2.3.1-b4af
  795. 1502.87 s [pandoc-lua-engine] depends pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  796. 1502.90 s [algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing )
  797. 1502.93 s [algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing )
  798. 1502.96 s [algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing )
  799. 1502.97 s [pandoc-server] Dependency aeson >=2.0 && <2.3: using aeson-2.2.3.0
  800. 1502.97 s [pandoc-server] Dependency base >=4.12 && <5: using base-4.20.2.0
  801. 1502.97 s [pandoc-server] Dependency base64-bytestring >=0.1 && <1.3: using base64-bytestring-1.2.1.0
  802. 1502.97 s [pandoc-server] Dependency bytestring >=0.9 && <0.13: using bytestring-0.12.2.0
  803. 1502.97 s [pandoc-server] Dependency containers >=0.6.0.1 && <0.9: using containers-0.7
  804. 1502.97 s [pandoc-server] Dependency data-default >=0.4 && <0.9: using data-default-0.8.0.1
  805. 1502.97 s [pandoc-server] Dependency doctemplates >=0.11 && <0.12: using doctemplates-0.11.0.1
  806. 1502.97 s [pandoc-server] Dependency pandoc >=3.5 && <3.8: using pandoc-3.7.0.2
  807. 1502.97 s [pandoc-server] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
  808. 1502.97 s [pandoc-server] Dependency servant-server >=0.19 && <0.21: using servant-server-0.20.3.0
  809. 1502.97 s [pandoc-server] Dependency skylighting >=0.13 && <0.15: using skylighting-0.14.7
  810. 1502.98 s [pandoc-server] Dependency text >=1.1.1.0 && <2.2: using text-2.1.3
  811. 1502.98 s [pandoc-server] Dependency unicode-collation >=0.1.1 && <0.2: using unicode-collation-0.1.3.6
  812. 1502.98 s [pandoc-server] Dependency wai >=3.2 && <3.3: using wai-3.2.4
  813. 1502.98 s [pandoc-server] Dependency wai-cors >=0.2.7 && <0.3: using wai-cors-0.2.7
  814. 1502.98 s [pandoc-server] Source component graph: component lib
  815. 1502.98 s [pandoc-server] Configured component graph:
  816. 1502.98 s [pandoc-server] component pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  817. 1502.98 s [pandoc-server] include aeson-2.2.3.0-7E4AsQHgFKfArDQma5twwk
  818. 1502.98 s [pandoc-server] include base-4.20.2.0-64da
  819. 1502.98 s [pandoc-server] include base64-bytestring-1.2.1.0-3UFJK5wnOrqGGvuh3GKKrz
  820. 1502.98 s [pandoc-server] include bytestring-0.12.2.0-262e
  821. 1502.98 s [pandoc-server] include containers-0.7-504a
  822. 1502.98 s [pandoc-server] include data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  823. 1502.98 s [pandoc-server] include doctemplates-0.11.0.1-3IxkRZEwO7j4PZOMczCd6F
  824. 1502.98 s [pandoc-server] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  825. 1502.98 s [pandoc-server] include pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  826. 1502.98 s [pandoc-server] include servant-server-0.20.3.0-KfCT9L1u35cEjSigV7mnns
  827. 1502.98 s [pandoc-server] include skylighting-0.14.7-E1NlMTbMaxi21IaCy26ZSc
  828. 1502.98 s [pandoc-server] include text-2.1.3-c691
  829. 1502.98 s [pandoc-server] include unicode-collation-0.1.3.6-GNgjxqiCGZCDNShq4d28XS
  830. 1502.98 s [pandoc-server] include wai-3.2.4-5M0NL4oY5PvG2QmhR4DwS3
  831. 1502.98 s [pandoc-server] include wai-cors-0.2.7-LUOr3sfxSGX6rgruuv5vs2
  832. 1502.98 s [pandoc-server] Linked component graph:
  833. 1502.98 s [pandoc-server] unit pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  834. 1502.98 s [pandoc-server] include aeson-2.2.3.0-7E4AsQHgFKfArDQma5twwk
  835. 1502.98 s [pandoc-server] include base-4.20.2.0-64da
  836. 1502.98 s [pandoc-server] include base64-bytestring-1.2.1.0-3UFJK5wnOrqGGvuh3GKKrz
  837. 1502.98 s [pandoc-server] include bytestring-0.12.2.0-262e
  838. 1502.98 s [pandoc-server] include containers-0.7-504a
  839. 1502.98 s [pandoc-server] include data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  840. 1502.98 s [pandoc-server] include doctemplates-0.11.0.1-3IxkRZEwO7j4PZOMczCd6F
  841. 1502.98 s [pandoc-server] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  842. 1502.98 s [pandoc-server] include pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  843. 1502.98 s [pandoc-server] include servant-server-0.20.3.0-KfCT9L1u35cEjSigV7mnns
  844. 1502.98 s [pandoc-server] include skylighting-0.14.7-E1NlMTbMaxi21IaCy26ZSc
  845. 1502.98 s [pandoc-server] include text-2.1.3-c691
  846. 1502.98 s [pandoc-server] include unicode-collation-0.1.3.6-GNgjxqiCGZCDNShq4d28XS
  847. 1502.98 s [pandoc-server] include wai-3.2.4-5M0NL4oY5PvG2QmhR4DwS3
  848. 1502.98 s [pandoc-server] include wai-cors-0.2.7-LUOr3sfxSGX6rgruuv5vs2
  849. 1502.98 s [pandoc-server] Text.Pandoc.Server=pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM:Text.Pandoc.Server
  850. 1502.98 s [pandoc-server] Ready component graph:
  851. 1502.98 s [pandoc-server] definite pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  852. 1502.98 s [pandoc-server] depends aeson-2.2.3.0-7E4AsQHgFKfArDQma5twwk
  853. 1502.98 s [pandoc-server] depends base-4.20.2.0-64da
  854. 1502.98 s [pandoc-server] depends base64-bytestring-1.2.1.0-3UFJK5wnOrqGGvuh3GKKrz
  855. 1502.98 s [pandoc-server] depends bytestring-0.12.2.0-262e
  856. 1502.98 s [pandoc-server] depends containers-0.7-504a
  857. 1502.98 s [pandoc-server] depends data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  858. 1502.98 s [pandoc-server] depends doctemplates-0.11.0.1-3IxkRZEwO7j4PZOMczCd6F
  859. 1502.98 s [pandoc-server] depends pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  860. 1502.98 s [pandoc-server] depends pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  861. 1502.98 s [pandoc-server] depends servant-server-0.20.3.0-KfCT9L1u35cEjSigV7mnns
  862. 1502.98 s [pandoc-server] depends skylighting-0.14.7-E1NlMTbMaxi21IaCy26ZSc
  863. 1502.98 s [pandoc-server] depends text-2.1.3-c691
  864. 1502.98 s [pandoc-server] depends unicode-collation-0.1.3.6-GNgjxqiCGZCDNShq4d28XS
  865. 1502.98 s [pandoc-server] depends wai-3.2.4-5M0NL4oY5PvG2QmhR4DwS3
  866. 1502.98 s [pandoc-server] depends wai-cors-0.2.7-LUOr3sfxSGX6rgruuv5vs2
  867. 1502.98 s [pandoc-server] Using Cabal-3.12.1.0 compiled by ghc-9.10
  868. 1502.98 s [pandoc-server] Using compiler: ghc-9.10.3
  869. 1502.98 s [pandoc-server] Using install prefix:
  870. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11
  871. 1502.98 s [pandoc-server] Executables installed in:
  872. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/bin
  873. 1502.98 s [pandoc-server] Libraries installed in:
  874. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  875. 1502.98 s [pandoc-server] Dynamic Libraries installed in:
  876. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  877. 1502.98 s [pandoc-server] Private executables installed in:
  878. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/libexec/x86_64-linux-ghc-9.10.3-05f6/pandoc-server-0.1.0.11
  879. 1502.98 s [pandoc-server] Data files installed in:
  880. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/share/x86_64-linux-ghc-9.10.3-05f6/pandoc-server-0.1.0.11
  881. 1502.98 s [pandoc-server] Documentation installed in:
  882. 1502.98 s [pandoc-server] /nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc/share/doc/pandoc-server-0.1.0.11
  883. 1502.98 s [pandoc-server] Configuration files installed in:
  884. 1502.98 s [pandoc-server] /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/etc
  885. 1502.98 s [pandoc-server] No alex found
  886. 1502.98 s [pandoc-server] Using ar found on system at:
  887. 1502.98 s [pandoc-server] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  888. 1502.98 s [pandoc-server] No c2hs found
  889. 1502.98 s [pandoc-server] No cpphs found
  890. 1502.98 s [pandoc-server] No doctest found
  891. 1502.98 s [pandoc-server] Using gcc version 14.3.0 given by user at:
  892. 1502.98 s [pandoc-server] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  893. 1502.98 s [pandoc-server] Using ghc version 9.10.3 found on system at:
  894. 1502.98 s [pandoc-server] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  895. 1502.98 s [pandoc-server] Using ghc-pkg version 9.10.3 found on system at:
  896. 1502.98 s [pandoc-server] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  897. 1502.98 s [pandoc-server] No ghcjs found
  898. 1502.98 s [pandoc-server] No ghcjs-pkg found
  899. 1502.98 s [pandoc-server] No greencard found
  900. 1502.98 s [pandoc-server] Using haddock version 2.31.1 found on system at:
  901. 1502.98 s [pandoc-server] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  902. 1502.98 s [pandoc-server] No happy found
  903. 1502.98 s [pandoc-server] Using haskell-suite found on system at: haskell-suite-dummy-location
  904. 1502.98 s [pandoc-server] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  905. 1502.98 s [pandoc-server] No hmake found
  906. 1502.98 s [pandoc-server] Using hpc version 0.69 found on system at:
  907. 1502.98 s [pandoc-server] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  908. 1502.98 s [pandoc-server] Using hsc2hs version 0.68.10 found on system at:
  909. 1502.98 s [pandoc-server] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  910. 1502.98 s [pandoc-server] Using hscolour version 1.25 found on system at:
  911. 1502.98 s [pandoc-server] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
  912. 1502.98 s [pandoc-server] No jhc found
  913. 1502.98 s [pandoc-server] Using ld found on system at:
  914. 1502.98 s [pandoc-server] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  915. 1502.98 s [pandoc-server] No pkg-config found
  916. 1502.98 s [pandoc-server] Using runghc version 9.10.3 found on system at:
  917. 1502.98 s [pandoc-server] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  918. 1502.98 s [pandoc-server] Using strip version 2.44 found on system at:
  919. 1502.98 s [pandoc-server] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  920. 1502.98 s [pandoc-server] Using tar found on system at:
  921. 1502.98 s [pandoc-server] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  922. 1502.98 s [pandoc-server] No uhc found
  923. 1502.98 s [pandoc-lua-engine] depends pandoc-lua-marshal-0.3.1-CEai8TZ59D36cGPSocsWLC
  924. 1502.98 s [pandoc-lua-engine] depends pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  925. 1502.98 s [pandoc-lua-engine] depends parsec-3.1.18.0-b178
  926. 1502.98 s [pandoc-lua-engine] depends text-2.1.3-c691
  927. 1502.98 s [pandoc-lua-engine] definite pandoc-lua-engine-0.4.3-3LEmP89EEdjCRAN3LsL1y3-test-pandoc-lua-engine
  928. 1502.98 s [pandoc-lua-engine] depends base-4.20.2.0-64da
  929. 1502.98 s [pandoc-lua-engine] depends bytestring-0.12.2.0-262e
  930. 1502.98 s [pandoc-lua-engine] depends data-default-0.8.0.1-ByKaTL2K8MiLGiE7z4PwLO
  931. 1502.98 s [pandoc-lua-engine] depends directory-1.3.8.5-c84a
  932. 1502.98 s [pandoc-lua-engine] depends exceptions-0.10.9-1a12
  933. 1502.98 s [pandoc-lua-engine] depends filepath-1.5.4.0-e600
  934. 1502.98 s [pandoc-lua-engine] depends hslua-2.3.1-2u5PxJdzmf64O4i47k1PVi
  935. 1502.98 s [pandoc-lua-engine] depends pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  936. 1502.98 s [pandoc-lua-engine] depends pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  937. 1502.98 s [pandoc-lua-engine] depends pandoc-types-1.23.1-EtmNVCh0eX3EXXhinUtwiG
  938. 1502.98 s [pandoc-lua-engine] depends tasty-1.5.3-G9Yzt8NHi59EMJ9EpY1hVQ
  939. 1502.98 s [pandoc-lua-engine] depends tasty-golden-2.3.5-3QQ0reIfFJ36gfVIlepFcf
  940. 1502.98 s [pandoc-lua-engine] depends tasty-hunit-0.10.2-A8CripGhFniB64lHINz5Kq
  941. 1502.98 s [pandoc-lua-engine] depends tasty-lua-1.1.2-1O8o765OPu9IHWrmpruNIo
  942. 1502.98 s [pandoc-lua-engine] depends text-2.1.3-c691
  943. 1502.98 s [pandoc-lua-engine] Using Cabal-3.12.1.0 compiled by ghc-9.10
  944. 1502.98 s [pandoc-lua-engine] Using compiler: ghc-9.10.3
  945. 1502.98 s [pandoc-lua-engine] Using install prefix:
  946. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3
  947. 1502.98 s [pandoc-lua-engine] Executables installed in:
  948. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/bin
  949. 1502.98 s [pandoc-lua-engine] Libraries installed in:
  950. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  951. 1502.98 s [pandoc-lua-engine] Dynamic Libraries installed in:
  952. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  953. 1502.98 s [pandoc-lua-engine] Private executables installed in:
  954. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/libexec/x86_64-linux-ghc-9.10.3-05f6/pandoc-lua-engine-0.4.3
  955. 1502.98 s [pandoc-lua-engine] Data files installed in:
  956. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/share/x86_64-linux-ghc-9.10.3-05f6/pandoc-lua-engine-0.4.3
  957. 1502.98 s [pandoc-lua-engine] Documentation installed in:
  958. 1502.98 s [pandoc-lua-engine] /nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc/share/doc/pandoc-lua-engine-0.4.3
  959. 1502.98 s [pandoc-lua-engine] Configuration files installed in:
  960. 1502.98 s [pandoc-lua-engine] /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/etc
  961. 1502.98 s [pandoc-lua-engine] No alex found
  962. 1502.98 s [pandoc-lua-engine] Using ar found on system at:
  963. 1502.98 s [pandoc-lua-engine] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  964. 1502.98 s [pandoc-lua-engine] No c2hs found
  965. 1502.98 s [pandoc-lua-engine] No cpphs found
  966. 1502.98 s [pandoc-lua-engine] No doctest found
  967. 1502.98 s [pandoc-lua-engine] Using gcc version 14.3.0 given by user at:
  968. 1502.98 s [pandoc-lua-engine] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  969. 1502.98 s [pandoc-lua-engine] Using ghc version 9.10.3 found on system at:
  970. 1502.98 s [pandoc-lua-engine] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  971. 1502.98 s [pandoc-lua-engine] Using ghc-pkg version 9.10.3 found on system at:
  972. 1502.98 s [pandoc-lua-engine] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  973. 1502.98 s [pandoc-lua-engine] No ghcjs found
  974. 1502.98 s [pandoc-lua-engine] No ghcjs-pkg found
  975. 1502.98 s [pandoc-lua-engine] No greencard found
  976. 1502.98 s [pandoc-lua-engine] Using haddock version 2.31.1 found on system at:
  977. 1502.98 s [pandoc-lua-engine] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  978. 1502.98 s [pandoc-lua-engine] No happy found
  979. 1502.98 s [pandoc-lua-engine] Using haskell-suite found on system at: haskell-suite-dummy-location
  980. 1502.98 s [pandoc-lua-engine] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  981. 1502.98 s [pandoc-lua-engine] No hmake found
  982. 1502.98 s [pandoc-lua-engine] Using hpc version 0.69 found on system at:
  983. 1502.98 s [pandoc-lua-engine] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  984. 1502.98 s [pandoc-lua-engine] Using hsc2hs version 0.68.10 found on system at:
  985. 1502.98 s [pandoc-lua-engine] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  986. 1502.98 s [pandoc-lua-engine] Using hscolour version 1.25 found on system at:
  987. 1502.98 s [pandoc-lua-engine] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
  988. 1502.98 s [pandoc-lua-engine] No jhc found
  989. 1502.98 s [pandoc-lua-engine] Using ld found on system at:
  990. 1502.98 s [pandoc-lua-engine] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  991. 1502.98 s [pandoc-lua-engine] No pkg-config found
  992. 1502.98 s [pandoc-lua-engine] Using runghc version 9.10.3 found on system at:
  993. 1502.98 s [pandoc-lua-engine] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  994. 1502.98 s [pandoc-lua-engine] Using strip version 2.44 found on system at:
  995. 1502.98 s [pandoc-lua-engine] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  996. 1502.98 s [pandoc-lua-engine] Using tar found on system at:
  997. 1502.98 s [pandoc-lua-engine] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  998. 1502.98 s [pandoc-lua-engine] No uhc found
  999. 1502.98 s [algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing )
  1000. 1503.02 s [algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing )
  1001. 1503.06 s [algebraic-graphs] Haddock coverage:
  1002. 1503.07 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1003. 1503.07 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
  1004. 1503.07 s [algebraic-graphs] * in ‘Data.Map.Internal’
  1005. 1503.07 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1006. 1503.07 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1007. 1503.07 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1008. 1503.07 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
  1009. 1503.09 s [algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
  1010. 1503.09 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1011. 1503.09 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
  1012. 1503.09 s [algebraic-graphs] * in ‘Data.IntMap.Internal’
  1013. 1503.09 s [algebraic-graphs] * in ‘Data.IntSet.Internal’
  1014. 1503.09 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1015. 1503.09 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1016. 1503.09 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
  1017. 1503.11 s [algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
  1018. 1503.12 s [algebraic-graphs] Warning: 'nub' is out of scope.
  1019. 1503.12 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1020. 1503.12 s [algebraic-graphs] Warning: 'sort' is out of scope.
  1021. 1503.12 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1022. 1503.12 s [algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
  1023. 1503.12 s [algebraic-graphs] Missing documentation for:
  1024. 1503.12 s [algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
  1025. 1503.12 s [algebraic-graphs] Warning: 'List' is ambiguous. It is defined
  1026. 1503.12 s [algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
  1027. 1503.12 s [algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
  1028. 1503.12 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1029. 1503.12 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1030. 1503.12 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
  1031. 1503.12 s [algebraic-graphs] Warning: 'IsList' is out of scope.
  1032. 1503.12 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1033. 1503.12 s [algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
  1034. 1503.12 s [algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
  1035. 1503.12 s [algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
  1036. 1503.12 s [algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
  1037. 1503.12 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1038. 1503.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1039. 1503.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
  1040. 1503.14 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1041. 1503.14 s [algebraic-graphs] * at src/Algebra/Graph.hs:316:1
  1042. 1503.14 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1043. 1503.14 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1044. 1503.14 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1045. 1503.14 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
  1046. 1503.15 s [algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
  1047. 1503.16 s [algebraic-graphs] Warning: 'mplus' is out of scope.
  1048. 1503.16 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1049. 1503.16 s [algebraic-graphs] Warning: 'vertexCount' is out of scope.
  1050. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1051. 1503.17 s [algebraic-graphs] Warning: 'hasVertex' is out of scope.
  1052. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1053. 1503.17 s [algebraic-graphs] Warning: 'vertexSet' is out of scope.
  1054. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1055. 1503.17 s [algebraic-graphs] Warning: 'isEmpty' is out of scope.
  1056. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1057. 1503.17 s [algebraic-graphs] Warning: 'edgeList' is out of scope.
  1058. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1059. 1503.17 s [algebraic-graphs] Warning: 'adjacencyList' is out of scope.
  1060. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1061. 1503.17 s [algebraic-graphs] Warning: 'box' is out of scope.
  1062. 1503.17 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1063. 1503.18 s [algebraic-graphs] Warning: 'edgeCount' is out of scope.
  1064. 1503.18 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1065. 1503.18 s [algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
  1066. 1503.19 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1067. 1503.19 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1068. 1503.19 s [algebraic-graphs] * in ‘Data.Map.Internal’
  1069. 1503.19 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1070. 1503.19 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1071. 1503.19 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1072. 1503.19 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1073. 1503.19 s [algebraic-graphs] Warning: 'nub' is out of scope.
  1074. 1503.19 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1075. 1503.20 s [algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
  1076. 1503.20 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
  1077. 1503.20 s [algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
  1078. 1503.20 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1079. 1503.20 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1080. 1503.20 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
  1081. 1503.21 s [algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
  1082. 1503.22 s [algebraic-graphs] Warning: 'isRight' is out of scope.
  1083. 1503.22 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1084. 1503.22 s [algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
  1085. 1503.22 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
  1086. 1503.22 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
  1087. 1503.22 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1088. 1503.22 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1089. 1503.22 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
  1090. 1503.22 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1091. 1503.22 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1092. 1503.22 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1093. 1503.22 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1094. 1503.22 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1095. 1503.22 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  1096. 1503.22 s [algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
  1097. 1503.22 s [algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
  1098. 1503.22 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
  1099. 1503.22 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
  1100. 1503.22 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1101. 1503.22 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1102. 1503.22 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
  1103. 1503.23 s [algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
  1104. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
  1105. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
  1106. 1503.23 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1107. 1503.23 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1108. 1503.23 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
  1109. 1503.23 s [algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
  1110. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
  1111. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
  1112. 1503.23 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1113. 1503.23 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1114. 1503.23 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
  1115. 1503.23 s [algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
  1116. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
  1117. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
  1118. 1503.23 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1119. 1503.23 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1120. 1503.23 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
  1121. 1503.23 s [algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
  1122. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
  1123. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
  1124. 1503.23 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1125. 1503.23 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1126. 1503.23 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
  1127. 1503.23 s [algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
  1128. 1503.23 s [algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
  1129. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
  1130. 1503.23 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
  1131. 1503.23 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1132. 1503.23 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1133. 1503.23 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
  1134. 1503.23 s [algebraic-graphs] Warning: 'isEmpty' is out of scope.
  1135. 1503.23 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1136. 1503.23 s [algebraic-graphs] Warning: 'empty' is out of scope.
  1137. 1503.23 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1138. 1503.24 s [algebraic-graphs] Warning: 'vertexList' is out of scope.
  1139. 1503.24 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1140. 1503.24 s [algebraic-graphs] Warning: 'edges' is out of scope.
  1141. 1503.24 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1142. 1503.24 s [algebraic-graphs] Warning: 'adjacencyList' is out of scope.
  1143. 1503.24 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1144. 1503.24 s [algebraic-graphs] Warning: 'stars' is out of scope.
  1145. 1503.24 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1146. 1503.25 s [algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
  1147. 1503.25 s [algebraic-graphs] Warning: 'nub' is out of scope.
  1148. 1503.25 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1149. 1503.26 s [algebraic-graphs] Warning: 'sort' is out of scope.
  1150. 1503.26 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1151. 1503.26 s [algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
  1152. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
  1153. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
  1154. 1503.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1155. 1503.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1156. 1503.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
  1157. 1503.26 s [algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
  1158. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
  1159. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
  1160. 1503.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1161. 1503.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1162. 1503.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
  1163. 1503.26 s [algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
  1164. 1503.26 s [algebraic-graphs] Missing documentation for:
  1165. 1503.26 s [algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
  1166. 1503.26 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1167. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
  1168. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
  1169. 1503.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1170. 1503.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1171. 1503.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
  1172. 1503.26 s [algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
  1173. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
  1174. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
  1175. 1503.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1176. 1503.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1177. 1503.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
  1178. 1503.26 s [algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
  1179. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
  1180. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
  1181. 1503.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1182. 1503.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1183. 1503.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
  1184. 1503.26 s [algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
  1185. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
  1186. 1503.26 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
  1187. 1503.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1188. 1503.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1189. 1503.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
  1190. 1503.27 s [algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
  1191. 1503.27 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
  1192. 1503.27 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
  1193. 1503.27 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1194. 1503.27 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1195. 1503.27 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
  1196. 1503.27 s [algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
  1197. 1503.28 s [algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
  1198. 1503.28 s [algebraic-graphs] * at src/Algebra/Graph.hs:482:1
  1199. 1503.28 s [algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
  1200. 1503.28 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1201. 1503.28 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1202. 1503.28 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
  1203. 1503.28 s [algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
  1204. 1503.28 s [algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
  1205. 1503.28 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
  1206. 1503.28 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
  1207. 1503.28 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1208. 1503.28 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1209. 1503.28 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
  1210. 1503.29 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1211. 1503.29 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
  1212. 1503.29 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1213. 1503.29 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1214. 1503.29 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1215. 1503.29 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
  1216. 1503.30 s [algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
  1217. 1503.30 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1218. 1503.30 s [algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
  1219. 1503.31 s [algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
  1220. 1503.31 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
  1221. 1503.31 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
  1222. 1503.31 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1223. 1503.31 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1224. 1503.32 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
  1225. 1503.32 s [algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
  1226. 1503.32 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
  1227. 1503.32 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
  1228. 1503.32 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1229. 1503.32 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1230. 1503.32 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
  1231. 1503.32 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1232. 1503.32 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
  1233. 1503.32 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1234. 1503.32 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1235. 1503.32 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1236. 1503.32 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
  1237. 1503.34 s [algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
  1238. 1503.35 s [algebraic-graphs] Warning: 'vertexList' is out of scope.
  1239. 1503.35 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1240. 1503.37 s [algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
  1241. 1503.38 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1242. 1503.38 s [algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
  1243. 1503.38 s [algebraic-graphs] * in ‘Data.Map.Internal’
  1244. 1503.38 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1245. 1503.38 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1246. 1503.38 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
  1247. 1503.38 s [algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
  1248. 1503.38 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
  1249. 1503.38 s [algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
  1250. 1503.38 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1251. 1503.38 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1252. 1503.38 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
  1253. 1503.39 s [algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
  1254. 1503.40 s [algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
  1255. 1503.40 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
  1256. 1503.40 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
  1257. 1503.40 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1258. 1503.40 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1259. 1503.40 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
  1260. 1503.40 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1261. 1503.40 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
  1262. 1503.40 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1263. 1503.40 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1264. 1503.40 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1265. 1503.40 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
  1266. 1503.42 s [algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
  1267. 1503.42 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
  1268. 1503.42 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
  1269. 1503.42 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1270. 1503.42 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1271. 1503.42 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
  1272. 1503.42 s [algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
  1273. 1503.43 s [algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
  1274. 1503.43 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
  1275. 1503.43 s [algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
  1276. 1503.43 s [algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
  1277. 1503.43 s [algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
  1278. 1503.43 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1279. 1503.43 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1280. 1503.43 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
  1281. 1503.43 s [algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
  1282. 1503.43 s [algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
  1283. 1503.43 s [algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
  1284. 1503.43 s [algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
  1285. 1503.43 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1286. 1503.43 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1287. 1503.43 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
  1288. 1503.44 s [algebraic-graphs] Warning: 'Graph' is out of scope.
  1289. 1503.44 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1290. 1503.44 s [algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
  1291. 1503.45 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1292. 1503.45 s [algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
  1293. 1503.45 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1294. 1503.45 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1295. 1503.45 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1296. 1503.45 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
  1297. 1503.46 s [algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
  1298. 1503.47 s [algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
  1299. 1503.47 s [algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
  1300. 1503.47 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
  1301. 1503.47 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
  1302. 1503.47 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1303. 1503.47 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1304. 1503.47 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
  1305. 1503.47 s [algebraic-graphs] Warning: 'Transitive' is out of scope.
  1306. 1503.47 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1307. 1503.47 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
  1308. 1503.47 s [algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
  1309. 1503.47 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
  1310. 1503.47 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
  1311. 1503.47 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1312. 1503.47 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1313. 1503.47 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
  1314. 1503.47 s [algebraic-graphs] Warning: 'Reflexive' is out of scope.
  1315. 1503.47 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1316. 1503.47 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
  1317. 1503.47 s [algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
  1318. 1503.47 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
  1319. 1503.47 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
  1320. 1503.47 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1321. 1503.47 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1322. 1503.47 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
  1323. 1503.47 s [algebraic-graphs] Warning: 'Preorder' is out of scope.
  1324. 1503.47 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1325. 1503.47 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
  1326. 1503.47 s [algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
  1327. 1503.47 s [algebraic-graphs] Missing documentation for:
  1328. 1503.47 s [algebraic-graphs] Module header
  1329. 1503.47 s [algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
  1330. 1503.47 s [algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
  1331. 1503.47 s [algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
  1332. 1503.47 s [algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
  1333. 1503.47 s [algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
  1334. 1503.47 s [algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
  1335. 1503.47 s [algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
  1336. 1503.48 s [algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
  1337. 1503.48 s [algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
  1338. 1503.48 s [algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
  1339. 1503.48 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1340. 1503.48 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1341. 1503.48 s [algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
  1342. 1503.48 s [algebraic-graphs] Warning: 'array' is out of scope.
  1343. 1503.48 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1344. 1503.48 s [algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
  1345. 1503.48 s [algebraic-graphs] Missing documentation for:
  1346. 1503.48 s [algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
  1347. 1503.81 s [pandoc-lua-engine] Phase: buildPhase
  1348. 1503.91 s [pandoc-server] Phase: buildPhase
  1349. 1503.96 s [algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
  1350. 1503.96 s [algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
  1351. 1503.97 s [algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
  1352. 1503.97 s [algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
  1353. 1503.99 s [algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
  1354. 1503.99 s [algebraic-graphs] - Algebra.Graph.Rep_Graph
  1355. 1503.99 s [pandoc-lua-engine] Preprocessing library for pandoc-lua-engine-0.4.3...
  1356. 1504.00 s [pandoc-lua-engine] Building library for pandoc-lua-engine-0.4.3...
  1357. 1504.00 s [algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
  1358. 1504.00 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
  1359. 1504.01 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
  1360. 1504.01 s [algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
  1361. 1504.01 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
  1362. 1504.03 s [algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
  1363. 1504.03 s [algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
  1364. 1504.07 s [algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
  1365. 1504.07 s [algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
  1366. 1504.08 s [algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
  1367. 1504.08 s [algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
  1368. 1504.09 s [algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
  1369. 1504.09 s [algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
  1370. 1504.10 s [pandoc-server] Preprocessing library for pandoc-server-0.1.0.11...
  1371. 1504.10 s [pandoc-server] Building library for pandoc-server-0.1.0.11...
  1372. 1504.25 s [pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
  1373. 1504.39 s [pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
  1374. 1505.88 s [pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
  1375. 1505.88 s [pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
  1376. 1505.88 s [pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
  1377. 1505.88 s [pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
  1378. 1505.88 s [pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
  1379. 1505.88 s [pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
  1380. 1505.88 s [pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
  1381. 1505.88 s [pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
  1382. 1505.88 s [pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
  1383. 1506.18 s [pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
  1384. 1506.26 s [pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
  1385. 1506.28 s [pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
  1386. 1507.31 s [pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
  1387. 1507.31 s [pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
  1388. 1507.31 s [pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
  1389. 1507.61 s [pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
  1390. 1507.61 s [pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
  1391. 1507.61 s [pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
  1392. 1508.61 s [haskell-language-server] Preprocessing library 'hls-rename-plugin' for haskell-language-server-2.12.0.0...
  1393. 1508.71 s [haskell-language-server] Building library 'hls-rename-plugin' for haskell-language-server-2.12.0.0...
  1394. 1508.73 s [pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
  1395. 1508.79 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.Rename ( plugins/hls-rename-plugin/src/Ide/Plugin/Rename.hs, dist/build/hls-rename-plugin/Ide/Plugin/Rename.o, dist/build/hls-rename-plugin/Ide/Plugin/Rename.dyn_o )
  1396. 1509.69 s [pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
  1397. 1509.90 s [pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
  1398. 1509.90 s [pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
  1399. 1509.90 s [pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
  1400. 1509.90 s [pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
  1401. 1509.90 s [pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
  1402. 1509.90 s [pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
  1403. 1509.90 s [pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
  1404. 1509.90 s [pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
  1405. 1509.90 s [pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
  1406. 1509.90 s [pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
  1407. 1509.90 s [pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
  1408. 1511.10 s [pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
  1409. 1511.10 s [pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
  1410. 1511.10 s [pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
  1411. 1511.46 s [pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
  1412. 1511.55 s [pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
  1413. 1511.67 s [pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
  1414. 1512.07 s [pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
  1415. 1512.17 s [pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
  1416. 1512.59 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.Rename ( plugins/hls-rename-plugin/src/Ide/Plugin/Rename.hs, dist/build/hls-rename-plugin/Ide/Plugin/Rename.p_o )
  1417. 1512.86 s [pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
  1418. 1513.16 s [algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/,
  1419. 1513.16 s [algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
  1420. 1513.25 s [algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
  1421. 1513.27 s [algebraic-graphs] Phase: installPhase
  1422. 1513.40 s [algebraic-graphs] Installing library in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/algebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF
  1423. 1514.32 s [pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
  1424. 1514.32 s [pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
  1425. 1514.34 s [pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
  1426. 1514.34 s [pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
  1427. 1514.41 s [pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
  1428. 1514.41 s [pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
  1429. 1514.41 s [pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
  1430. 1514.41 s [pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
  1431. 1514.41 s [pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
  1432. 1514.64 s [algebraic-graphs] Phase: fixupPhase
  1433. 1514.66 s [algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
  1434. 1514.69 s [algebraic-graphs] shrinking /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSalgebraic-graphs-0.7-k8mmIHA1IL97lIsDqbcaF-ghc9.10.3.so
  1435. 1514.70 s [algebraic-graphs] checking for references to /build/ in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7...
  1436. 1514.74 s [algebraic-graphs] patching script interpreter paths in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
  1437. 1514.75 s [algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/lib
  1438. 1514.88 s [pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
  1439. 1515.16 s [pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
  1440. 1515.21 s [algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc
  1441. 1515.23 s [algebraic-graphs] checking for references to /build/ in /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc...
  1442. 1515.28 s [algebraic-graphs] patching script interpreter paths in /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc
  1443. 1515.31 s [pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
  1444. 1515.60 s [algebraic-graphs:post-build] Uploading to cachix cache "sellout": /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
  1445. 1516.14 s [algebraic-graphs:post-build] Nothing to push - all store paths are already on Cachix.
  1446. 1516.17 s [algebraic-graphs:post-build] Uploading to the NixCI cache: /nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7
  1447. 1516.26 s [algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1448. 1516.28 s [algebraic-graphs:post-build] copying 2 paths...
  1449. 1516.28 s [algebraic-graphs:post-build] copying path '/nix/store/3xnkngnhvff6qk61xh5s6i5abaiym4hc-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
  1450. 1518.22 s [algebraic-graphs:post-build] copying path '/nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
  1451. 1528.96 s [algebraic-graphs:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1452. 1529.06 s [algebraic-graphs:post-build] copying 0 paths...
  1453. 1529.10 s Progress: 43 of 54 built (3 building), 375 of 375 downloaded from cache
  1454. 1529.18 s Building /nix/store/vasixnpw8yx8023z102n8pigdp74510a-ghc-9.10.3-with-packages.drv
  1455. 1529.18 s [haskell-language-server] Preprocessing library 'hls-module-name-plugin' for haskell-language-server-2.12.0.0...
  1456. 1529.18 s [haskell-language-server] Building library 'hls-module-name-plugin' for haskell-language-server-2.12.0.0...
  1457. 1529.18 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ModuleName ( plugins/hls-module-name-plugin/src/Ide/Plugin/ModuleName.hs, dist/build/hls-module-name-plugin/Ide/Plugin/ModuleName.o, dist/build/hls-module-name-plugin/Ide/Plugin/ModuleName.dyn_o )
  1458. 1529.18 s [pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
  1459. 1529.18 s [pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
  1460. 1529.18 s [pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
  1461. 1529.18 s [pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
  1462. 1529.18 s [pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
  1463. 1529.18 s [pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
  1464. 1529.18 s [pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
  1465. 1529.18 s [pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
  1466. 1529.18 s [pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
  1467. 1529.18 s [pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
  1468. 1529.18 s [pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
  1469. 1529.18 s [pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
  1470. 1529.18 s [pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
  1471. 1529.18 s [pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
  1472. 1529.18 s [pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
  1473. 1529.18 s [pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
  1474. 1529.18 s [pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
  1475. 1529.18 s [pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
  1476. 1529.18 s [pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
  1477. 1529.18 s [pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
  1478. 1529.18 s [pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
  1479. 1529.18 s [pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
  1480. 1529.18 s [pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
  1481. 1529.18 s [pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
  1482. 1529.18 s [pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
  1483. 1529.18 s [pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
  1484. 1529.18 s [pandoc-server] Phase: checkPhase
  1485. 1529.18 s [pandoc-server] Package has no test suites.
  1486. 1529.18 s [pandoc-server] Phase: haddockPhase
  1487. 1529.18 s [pandoc-server] Preprocessing library for pandoc-server-0.1.0.11...
  1488. 1529.18 s [pandoc-server] Running Haddock on library for pandoc-server-0.1.0.11...
  1489. 1529.18 s [pandoc-server] Warning: The documentation for the following packages are not installed. No
  1490. 1529.18 s [pandoc-server] links will be generated to these packages: attoparsec-0.14.4,
  1491. 1529.18 s [pandoc-server] attoparsec-0.14.4, libyaml-clib-0.2.5, pandoc-3.7.0.2, pandoc-3.7.0.2,
  1492. 1529.18 s [pandoc-server] vector-0.13.2.0
  1493. 1529.18 s [pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
  1494. 1529.25 s [ghc-9.10.3-with-packages] /nix/store/9xdq341h0a92bjkmic50786dys0rvy7s-doctest-0.24.2/nix-support:
  1495. 1529.25 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1496. 1529.26 s [ghc-9.10.3-with-packages] /nix/store/mca4hqdxwyqdqrcn2zi2iivca6yf9qhb-ghc-compat-plugin-0.1.0.1/nix-support:
  1497. 1529.26 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1498. 1529.27 s [ghc-9.10.3-with-packages] /nix/store/b0lrn2wipwvwzrxxdllwd82g27pa8483-hedgehog-1.5/nix-support:
  1499. 1529.27 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1500. 1529.30 s [ghc-9.10.3-with-packages] /nix/store/fhyq7x9i4wf6d6kasw6b00qb8g3ng42g-Cabal-3.12.1.0/nix-support:
  1501. 1529.30 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1502. 1529.32 s [ghc-9.10.3-with-packages] /nix/store/193yk6vpjx4cjzznah4ns7pmba14i4g8-cabal-doctest-1.0.12/nix-support:
  1503. 1529.33 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1504. 1529.35 s [ghc-9.10.3-with-packages] /nix/store/7liw9f8mi3zw6dza5jckjvmw49hz2m6h-temporary-1.3/nix-support:
  1505. 1529.35 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1506. 1529.35 s [ghc-9.10.3-with-packages] /nix/store/7liw9f8mi3zw6dza5jckjvmw49hz2m6h-temporary-1.3/nix-support:
  1507. 1529.35 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1508. 1529.35 s [ghc-9.10.3-with-packages] /nix/store/f147jf7r9k02q4r8r58yyy2d0pvni6qp-ansi-terminal-1.1.3/nix-support:
  1509. 1529.35 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1510. 1529.36 s [ghc-9.10.3-with-packages] /nix/store/f147jf7r9k02q4r8r58yyy2d0pvni6qp-ansi-terminal-1.1.3/nix-support:
  1511. 1529.36 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1512. 1529.36 s [ghc-9.10.3-with-packages] /nix/store/8zn2w7q66nk2d3l76mbsfgjdbkrxz35f-async-2.2.5/nix-support:
  1513. 1529.36 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1514. 1529.36 s [ghc-9.10.3-with-packages] /nix/store/8zn2w7q66nk2d3l76mbsfgjdbkrxz35f-async-2.2.5/nix-support:
  1515. 1529.36 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1516. 1529.37 s [ghc-9.10.3-with-packages] /nix/store/v4kk7n3dr39cglxrb3b3mnq3xhqr9ygq-barbies-2.1.1.0/nix-support:
  1517. 1529.37 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1518. 1529.38 s [ghc-9.10.3-with-packages] /nix/store/v4kk7n3dr39cglxrb3b3mnq3xhqr9ygq-barbies-2.1.1.0/nix-support:
  1519. 1529.38 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1520. 1529.38 s [ghc-9.10.3-with-packages] /nix/store/92mmmv96yx7xzbsi8r8c9mnz4hs7b2jg-concurrent-output-1.10.21/nix-support:
  1521. 1529.38 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1522. 1529.38 s [ghc-9.10.3-with-packages] /nix/store/92mmmv96yx7xzbsi8r8c9mnz4hs7b2jg-concurrent-output-1.10.21/nix-support:
  1523. 1529.38 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1524. 1529.39 s [ghc-9.10.3-with-packages] /nix/store/6vbk582bi1d1nhhzlxw705s7z7qsbrky-lifted-async-0.10.2.7/nix-support:
  1525. 1529.39 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1526. 1529.39 s [ghc-9.10.3-with-packages] /nix/store/6vbk582bi1d1nhhzlxw705s7z7qsbrky-lifted-async-0.10.2.7/nix-support:
  1527. 1529.39 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1528. 1529.39 s [ghc-9.10.3-with-packages] /nix/store/9msj85qq1gvwhcz908sbiilrfrdhq3lp-mmorph-1.2.1/nix-support:
  1529. 1529.39 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1530. 1529.39 s [ghc-9.10.3-with-packages] /nix/store/9msj85qq1gvwhcz908sbiilrfrdhq3lp-mmorph-1.2.1/nix-support:
  1531. 1529.39 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1532. 1529.40 s [ghc-9.10.3-with-packages] /nix/store/iillknnvv4x7b9m8853wgpj95fn6k2qf-monad-control-1.0.3.1/nix-support:
  1533. 1529.40 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1534. 1529.40 s [ghc-9.10.3-with-packages] /nix/store/iillknnvv4x7b9m8853wgpj95fn6k2qf-monad-control-1.0.3.1/nix-support:
  1535. 1529.40 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1536. 1529.40 s [ghc-9.10.3-with-packages] /nix/store/cfiih3l00fil2vi6fpvjxl1kll55h6j4-pretty-show-1.10/nix-support:
  1537. 1529.40 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1538. 1529.40 s [ghc-9.10.3-with-packages] /nix/store/cfiih3l00fil2vi6fpvjxl1kll55h6j4-pretty-show-1.10/nix-support:
  1539. 1529.40 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1540. 1529.40 s [ghc-9.10.3-with-packages] /nix/store/27n162kkviz2zwcsb1xc8hcwc8c9km67-primitive-0.9.1.0/nix-support:
  1541. 1529.40 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1542. 1529.41 s [ghc-9.10.3-with-packages] /nix/store/27n162kkviz2zwcsb1xc8hcwc8c9km67-primitive-0.9.1.0/nix-support:
  1543. 1529.41 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1544. 1529.41 s [ghc-9.10.3-with-packages] /nix/store/rsqv6kj134cgiyf311k8950imffs712n-random-1.2.1.3/nix-support:
  1545. 1529.41 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1546. 1529.41 s [ghc-9.10.3-with-packages] /nix/store/rsqv6kj134cgiyf311k8950imffs712n-random-1.2.1.3/nix-support:
  1547. 1529.41 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1548. 1529.41 s [ghc-9.10.3-with-packages] /nix/store/9gwczd0aw4yasspbyrggw32lgagp7q9f-resourcet-1.3.0/nix-support:
  1549. 1529.41 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1550. 1529.41 s [ghc-9.10.3-with-packages] /nix/store/9gwczd0aw4yasspbyrggw32lgagp7q9f-resourcet-1.3.0/nix-support:
  1551. 1529.41 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1552. 1529.41 s [ghc-9.10.3-with-packages] /nix/store/pfhmc6sgkrxknfzsl1hmnjkhvd0kwbcr-safe-exceptions-0.1.7.4/nix-support:
  1553. 1529.41 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1554. 1529.42 s [ghc-9.10.3-with-packages] /nix/store/pfhmc6sgkrxknfzsl1hmnjkhvd0kwbcr-safe-exceptions-0.1.7.4/nix-support:
  1555. 1529.42 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1556. 1529.42 s [ghc-9.10.3-with-packages] /nix/store/wb64jk3cmlv16vk3bxjcj9jd6021zad9-transformers-base-0.4.6/nix-support:
  1557. 1529.42 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1558. 1529.42 s [ghc-9.10.3-with-packages] /nix/store/wb64jk3cmlv16vk3bxjcj9jd6021zad9-transformers-base-0.4.6/nix-support:
  1559. 1529.42 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1560. 1529.42 s [ghc-9.10.3-with-packages] /nix/store/zjpkhy93qrkndn8ba1j1bs2270gzx36k-wl-pprint-annotated-0.1.0.1/nix-support:
  1561. 1529.42 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1562. 1529.42 s [ghc-9.10.3-with-packages] /nix/store/zjpkhy93qrkndn8ba1j1bs2270gzx36k-wl-pprint-annotated-0.1.0.1/nix-support:
  1563. 1529.42 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1564. 1529.44 s [ghc-9.10.3-with-packages] /nix/store/4f00ir7bwh4gyg425brhfl521wz5jlla-Cabal-syntax-3.12.1.0/nix-support:
  1565. 1529.44 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1566. 1529.45 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ModuleName ( plugins/hls-module-name-plugin/src/Ide/Plugin/ModuleName.hs, dist/build/hls-module-name-plugin/Ide/Plugin/ModuleName.p_o )
  1567. 1529.45 s [ghc-9.10.3-with-packages] /nix/store/4f00ir7bwh4gyg425brhfl521wz5jlla-Cabal-syntax-3.12.1.0/nix-support:
  1568. 1529.45 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1569. 1529.45 s [ghc-9.10.3-with-packages] /nix/store/dn2zldw6k1a7hxqi0fs8n1zdfzfpg1rj-ansi-terminal-types-1.1.3/nix-support:
  1570. 1529.45 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1571. 1529.46 s [ghc-9.10.3-with-packages] /nix/store/dn2zldw6k1a7hxqi0fs8n1zdfzfpg1rj-ansi-terminal-types-1.1.3/nix-support:
  1572. 1529.46 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1573. 1529.46 s [ghc-9.10.3-with-packages] /nix/store/r3rsmiyfdiww3xw1jqx6rjz1k1fhzk5i-hashable-1.5.0.0/nix-support:
  1574. 1529.46 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1575. 1529.47 s [ghc-9.10.3-with-packages] /nix/store/r3rsmiyfdiww3xw1jqx6rjz1k1fhzk5i-hashable-1.5.0.0/nix-support:
  1576. 1529.47 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1577. 1529.47 s [ghc-9.10.3-with-packages] /nix/store/lcn9ndq73wfbx5fki5z4dsnskysqnx92-distributive-0.6.2.1/nix-support:
  1578. 1529.47 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1579. 1529.47 s [ghc-9.10.3-with-packages] /nix/store/lcn9ndq73wfbx5fki5z4dsnskysqnx92-distributive-0.6.2.1/nix-support:
  1580. 1529.47 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1581. 1529.48 s [ghc-9.10.3-with-packages] /nix/store/qcbcryh3b168hrs77lyr1a25dika56x0-constraints-0.14.2/nix-support:
  1582. 1529.48 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1583. 1529.48 s [ghc-9.10.3-with-packages] /nix/store/qcbcryh3b168hrs77lyr1a25dika56x0-constraints-0.14.2/nix-support:
  1584. 1529.48 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1585. 1529.48 s [ghc-9.10.3-with-packages] /nix/store/48csrd1s2gzcpf3d3s4j6g5052ya8n4w-lifted-base-0.2.3.12/nix-support:
  1586. 1529.48 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1587. 1529.48 s [ghc-9.10.3-with-packages] /nix/store/48csrd1s2gzcpf3d3s4j6g5052ya8n4w-lifted-base-0.2.3.12/nix-support:
  1588. 1529.48 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1589. 1529.49 s [ghc-9.10.3-with-packages] /nix/store/g5b8zbiw0dqhh2ckjz664ir10qljfvcy-transformers-compat-0.7.2/nix-support:
  1590. 1529.49 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1591. 1529.49 s [ghc-9.10.3-with-packages] /nix/store/g5b8zbiw0dqhh2ckjz664ir10qljfvcy-transformers-compat-0.7.2/nix-support:
  1592. 1529.49 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1593. 1529.50 s [ghc-9.10.3-with-packages] /nix/store/fac3a4hwqmhgmmx1ra67rf82sf77hmxh-splitmix-0.1.3.1/nix-support:
  1594. 1529.50 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1595. 1529.50 s [ghc-9.10.3-with-packages] /nix/store/fac3a4hwqmhgmmx1ra67rf82sf77hmxh-splitmix-0.1.3.1/nix-support:
  1596. 1529.50 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1597. 1529.50 s [ghc-9.10.3-with-packages] /nix/store/llbg63zgzyrq17fwz7q1y1vqnj6vj2fa-unliftio-core-0.2.1.0/nix-support:
  1598. 1529.50 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1599. 1529.50 s [ghc-9.10.3-with-packages] /nix/store/llbg63zgzyrq17fwz7q1y1vqnj6vj2fa-unliftio-core-0.2.1.0/nix-support:
  1600. 1529.50 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1601. 1529.50 s [ghc-9.10.3-with-packages] /nix/store/pamck590w5lych1dj4j31s57plvxb7pf-base-orphans-0.9.3/nix-support:
  1602. 1529.50 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1603. 1529.50 s [ghc-9.10.3-with-packages] /nix/store/pamck590w5lych1dj4j31s57plvxb7pf-base-orphans-0.9.3/nix-support:
  1604. 1529.50 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1605. 1529.51 s [ghc-9.10.3-with-packages] /nix/store/l6b1in1yfspmhzs386qa4yvdd1yw5d3v-tagged-0.8.9/nix-support:
  1606. 1529.51 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1607. 1529.51 s [ghc-9.10.3-with-packages] /nix/store/l6b1in1yfspmhzs386qa4yvdd1yw5d3v-tagged-0.8.9/nix-support:
  1608. 1529.51 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1609. 1529.51 s [ghc-9.10.3-with-packages] /nix/store/hykvsy2hdb9issxg3xm8ah8z48f7h30w-boring-0.2.2/nix-support:
  1610. 1529.51 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1611. 1529.51 s [ghc-9.10.3-with-packages] /nix/store/hykvsy2hdb9issxg3xm8ah8z48f7h30w-boring-0.2.2/nix-support:
  1612. 1529.51 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/gz86ymmv6v8fqvzy474wvm3jzk23gz88-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1613. 1529.97 s [pandoc-server] Haddock coverage:
  1614. 1529.97 s [pandoc-server] 0% ( 0 / 7) in 'Text.Pandoc.Server'
  1615. 1529.97 s [pandoc-server] Missing documentation for:
  1616. 1529.97 s [pandoc-server] Module header
  1617. 1529.97 s [pandoc-server] app (src/Text/Pandoc/Server.hs:200)
  1618. 1529.97 s [pandoc-server] API (src/Text/Pandoc/Server.hs:186)
  1619. 1529.97 s [pandoc-server] ServerOpts (src/Text/Pandoc/Server.hs:55)
  1620. 1529.97 s [pandoc-server] Params (src/Text/Pandoc/Server.hs:125)
  1621. 1529.97 s [pandoc-server] Blob (src/Text/Pandoc/Server.hs:112)
  1622. 1529.97 s [pandoc-server] parseServerOptsFromArgs (src/Text/Pandoc/Server.hs:99)
  1623. 1530.47 s [ghc-9.10.3-with-packages] Warning: include-dirs: /nix/store/w9ysns7m2vbiw5wkiszwscnmfrh6dpnv-ghc-9.10.3-with-packages/lib/ghc-9.10.3/lib/../lib/x86_64-linux-ghc-9.10.3/directory-1.3.8.5-c84a/include doesn't exist or isn't a directory
  1624. 1532.01 s [ghc-9.10.3-with-packages:post-build] Uploading to cachix cache "sellout": /nix/store/w9ysns7m2vbiw5wkiszwscnmfrh6dpnv-ghc-9.10.3-with-packages
  1625. 1532.41 s [ghc-9.10.3-with-packages:post-build] Nothing to push - all store paths are already on Cachix.
  1626. 1532.43 s [ghc-9.10.3-with-packages:post-build] Uploading to the NixCI cache: /nix/store/w9ysns7m2vbiw5wkiszwscnmfrh6dpnv-ghc-9.10.3-with-packages
  1627. 1532.50 s [ghc-9.10.3-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1628. 1532.55 s [ghc-9.10.3-with-packages:post-build] copying 0 paths...
  1629. 1532.62 s [ghc-9.10.3-with-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1630. 1532.72 s [ghc-9.10.3-with-packages:post-build] copying 0 paths...
  1631. 1532.75 s Progress: 44 of 53 built (3 building), 375 of 375 downloaded from cache
  1632. 1532.75 s [pandoc-server] Warning: Text.Pandoc.Server: could not find link destinations for:
  1633. 1532.75 s [pandoc-server] - Text.Pandoc.App.Opt.Opt
  1634. 1532.75 s [pandoc-server] - Text.Pandoc.Server.Output
  1635. 1534.57 s [pandoc-lua-engine] Preprocessing test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
  1636. 1534.57 s [pandoc-lua-engine] Building test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
  1637. 1534.78 s [pandoc-lua-engine] [1 of 5] Compiling Tests.Lua
  1638. 1536.94 s [pandoc-lua-engine] [2 of 5] Compiling Tests.Lua.Module
  1639. 1537.04 s [pandoc-lua-engine] [3 of 5] Compiling Tests.Lua.Reader
  1640. 1537.04 s [pandoc-lua-engine] [4 of 5] Compiling Tests.Lua.Writer
  1641. 1537.04 s [pandoc-lua-engine] [5 of 5] Compiling Main
  1642. 1537.45 s [pandoc-lua-engine] [6 of 6] Linking dist/build/test-pandoc-lua-engine/test-pandoc-lua-engine
  1643. 1541.31 s [haskell-language-server] Preprocessing library 'hls-fourmolu-plugin' for haskell-language-server-2.12.0.0...
  1644. 1541.31 s [haskell-language-server] Building library 'hls-fourmolu-plugin' for haskell-language-server-2.12.0.0...
  1645. 1541.50 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.Fourmolu ( plugins/hls-fourmolu-plugin/src/Ide/Plugin/Fourmolu.hs, dist/build/hls-fourmolu-plugin/Ide/Plugin/Fourmolu.o, dist/build/hls-fourmolu-plugin/Ide/Plugin/Fourmolu.dyn_o )
  1646. 1547.43 s [pandoc-server] Documentation created: dist/doc/html/pandoc-server/,
  1647. 1547.43 s [pandoc-server] dist/doc/html/pandoc-server/pandoc-server.txt
  1648. 1547.55 s [pandoc-server] Phase: installPhase
  1649. 1547.64 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.Fourmolu ( plugins/hls-fourmolu-plugin/src/Ide/Plugin/Fourmolu.hs, dist/build/hls-fourmolu-plugin/Ide/Plugin/Fourmolu.p_o )
  1650. 1547.81 s [pandoc-server] Installing library in /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  1651. 1548.40 s [pandoc-server] Phase: fixupPhase
  1652. 1548.43 s [pandoc-server] shrinking RPATHs of ELF executables and libraries in /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11
  1653. 1548.43 s [pandoc-server] shrinking /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSpandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM-ghc9.10.3.so
  1654. 1548.65 s [pandoc-server] checking for references to /build/ in /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11...
  1655. 1548.68 s [pandoc-server] patching script interpreter paths in /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11
  1656. 1548.68 s [pandoc-server] stripping (with command strip and flags -S -p) in /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11/lib
  1657. 1548.79 s [pandoc-server] shrinking RPATHs of ELF executables and libraries in /nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc
  1658. 1548.80 s [pandoc-server] checking for references to /build/ in /nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc...
  1659. 1548.82 s [pandoc-server] patching script interpreter paths in /nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc
  1660. 1549.15 s [pandoc-server:post-build] Uploading to cachix cache "sellout": /nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11
  1661. 1549.78 s [pandoc-server:post-build] Nothing to push - all store paths are already on Cachix.
  1662. 1549.82 s [pandoc-server:post-build] Uploading to the NixCI cache: /nix/store/dqmvprrkmaw8zdxb1c9y2dr9rl9kzvvf-pandoc-server-0.1.0.11-doc /nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11
  1663. 1549.88 s [pandoc-server:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1664. 1549.97 s [pandoc-server:post-build] copying 1 paths...
  1665. 1549.97 s [pandoc-server:post-build] copying path '/nix/store/hnig4hrbwya67j05nggpdvixalk9i2ny-pandoc-server-0.1.0.11' to 'https://cache.nix-ci.com'...
  1666. 1551.04 s [pandoc-server:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1667. 1551.19 s [pandoc-server:post-build] copying 0 paths...
  1668. 1551.22 s Progress: 45 of 53 built (2 building), 375 of 375 downloaded from cache
  1669. 1551.22 s [pandoc-lua-engine] buildPhase completed in 47 seconds
  1670. 1551.22 s [pandoc-lua-engine] Phase: checkPhase
  1671. 1551.22 s [pandoc-lua-engine] Running 1 test suites...
  1672. 1551.22 s [pandoc-lua-engine] Test suite test-pandoc-lua-engine: RUNNING...
  1673. 1551.24 s [pandoc-lua-engine] pandoc Lua engine
  1674. 1551.24 s [pandoc-lua-engine] Lua filters
  1675. 1551.24 s [pandoc-lua-engine] macro expansion via filter: OK (0.01s)
  1676. 1551.27 s [pandoc-lua-engine] convert all plains to paras: OK
  1677. 1551.27 s [pandoc-lua-engine] convert display math to inline math: OK (0.03s)
  1678. 1551.27 s [pandoc-lua-engine] make hello world document: OK
  1679. 1551.28 s [pandoc-lua-engine] implicit doc filter: OK
  1680. 1551.28 s [pandoc-lua-engine] parse raw markdown blocks: OK
  1681. 1551.29 s [pandoc-lua-engine] allow shorthand functions for quote types: OK
  1682. 1551.29 s [pandoc-lua-engine] Count inlines via metatable catch-all: OK
  1683. 1551.30 s [pandoc-lua-engine] Count blocks via Block-specific catch-all: OK
  1684. 1551.30 s [pandoc-lua-engine] Smart constructors: OK
  1685. 1551.30 s [pandoc-lua-engine] Convert header upper case: OK
  1686. 1551.31 s [pandoc-lua-engine] Attribute lists are convenient to use: OK
  1687. 1551.31 s [pandoc-lua-engine] Filter list of inlines: OK
  1688. 1551.32 s [pandoc-lua-engine] Filter list of blocks: OK
  1689. 1551.32 s [pandoc-lua-engine] Filter Meta: OK
  1690. 1551.32 s [pandoc-lua-engine] Script filename is set: OK
  1691. 1551.33 s [pandoc-lua-engine] Pandoc version is set: OK
  1692. 1551.33 s [pandoc-lua-engine] Pandoc types version is set: OK
  1693. 1551.33 s [pandoc-lua-engine] require file: OK
  1694. 1551.33 s [pandoc-lua-engine] Allow singleton inline in constructors: OK
  1695. 1551.34 s [pandoc-lua-engine] Elements with Attr have `attr` accessor: OK
  1696. 1551.34 s [pandoc-lua-engine] module `pandoc.system` is present: OK
  1697. 1551.35 s [pandoc-lua-engine] global modules
  1698. 1551.35 s [pandoc-lua-engine] module 'lpeg' is loaded into a global: OK
  1699. 1551.35 s [pandoc-lua-engine] module 're' is loaded into a global: OK
  1700. 1551.36 s [pandoc-lua-engine] module 'lpeg' is available via `require`: OK
  1701. 1551.36 s [pandoc-lua-engine] module 're' is available via `require`: OK
  1702. 1551.36 s [pandoc-lua-engine] informative error messages: OK
  1703. 1551.36 s [pandoc-lua-engine] Lua modules
  1704. 1551.39 s [pandoc-lua-engine] pandoc: OK (0.02s)
  1705. 1551.39 s [pandoc-lua-engine] +++ Success: 79 Lua tests passed
  1706. 1551.39 s [pandoc-lua-engine] pandoc.List: OK
  1707. 1551.39 s [pandoc-lua-engine] +++ Success: 22 Lua tests passed
  1708. 1551.40 s [pandoc-lua-engine] pandoc.format: OK
  1709. 1551.40 s [pandoc-lua-engine] +++ Success: 3 Lua tests passed
  1710. 1551.40 s [pandoc-lua-engine] pandoc.image: OK
  1711. 1551.40 s [pandoc-lua-engine] +++ Success: 6 Lua tests passed
  1712. 1551.41 s [pandoc-lua-engine] pandoc.json: OK
  1713. 1551.41 s [pandoc-lua-engine] +++ Success: 21 Lua tests passed
  1714. 1551.41 s [pandoc-lua-engine] pandoc.log: OK
  1715. 1551.41 s [pandoc-lua-engine] +++ Success: 8 Lua tests passed
  1716. 1551.42 s [pandoc-lua-engine] pandoc.mediabag: OK
  1717. 1551.42 s [pandoc-lua-engine] +++ Success: 9 Lua tests passed
  1718. 1551.42 s [pandoc-lua-engine] pandoc.path: OK
  1719. 1551.42 s [pandoc-lua-engine] +++ Success: 5 Lua tests passed
  1720. 1551.44 s [pandoc-lua-engine] pandoc.structure: OK
  1721. 1551.44 s [pandoc-lua-engine] +++ Success: 11 Lua tests passed
  1722. 1551.46 s [pandoc-lua-engine] pandoc.template: OK (0.03s)
  1723. 1551.46 s [pandoc-lua-engine] +++ Success: 16 Lua tests passed
  1724. 1551.46 s [pandoc-lua-engine] pandoc.text: OK
  1725. 1551.46 s [pandoc-lua-engine] +++ Success: 9 Lua tests passed
  1726. 1551.46 s [pandoc-lua-engine] pandoc.types: OK
  1727. 1551.46 s [pandoc-lua-engine] +++ Success: 13 Lua tests passed
  1728. 1551.47 s [pandoc-lua-engine] pandoc.utils: OK
  1729. 1551.47 s [pandoc-lua-engine] +++ Success: 45 Lua tests passed
  1730. 1551.50 s [pandoc-lua-engine] globals: OK (0.03s)
  1731. 1551.50 s [pandoc-lua-engine] +++ Success: 42 Lua tests passed
  1732. 1551.50 s [pandoc-lua-engine] Custom writers
  1733. 1551.59 s [pandoc-lua-engine] default testsuite: OK (0.08s)
  1734. 1551.61 s [pandoc-lua-engine] tables testsuite: OK (0.03s)
  1735. 1551.61 s [pandoc-lua-engine] bytestring writer: OK
  1736. 1551.61 s [pandoc-lua-engine] template: OK
  1737. 1551.62 s [pandoc-lua-engine] preset extensions: OK
  1738. 1551.63 s [pandoc-lua-engine] modified extensions: OK
  1739. 1551.63 s [pandoc-lua-engine] Custom readers
  1740. 1551.63 s [pandoc-lua-engine] read binary to code block: OK
  1741. 1551.63 s [pandoc-lua-engine]
  1742. 1551.63 s [pandoc-lua-engine] All 48 tests passed (0.40s)
  1743. 1551.65 s [pandoc-lua-engine] Test suite test-pandoc-lua-engine: PASS
  1744. 1551.65 s [pandoc-lua-engine] Test suite logged to:
  1745. 1551.65 s [pandoc-lua-engine] dist/test/pandoc-lua-engine-0.4.3-test-pandoc-lua-engine.log
  1746. 1551.65 s [pandoc-lua-engine] 1 of 1 test suites (1 of 1 test cases) passed.
  1747. 1551.67 s [pandoc-lua-engine] Phase: haddockPhase
  1748. 1551.94 s [pandoc-lua-engine] Preprocessing library for pandoc-lua-engine-0.4.3...
  1749. 1551.95 s [pandoc-lua-engine] Running Haddock on library for pandoc-lua-engine-0.4.3...
  1750. 1551.96 s [pandoc-lua-engine] Warning: The documentation for the following packages are not installed. No
  1751. 1551.96 s [pandoc-lua-engine] links will be generated to these packages: attoparsec-0.14.4,
  1752. 1551.96 s [pandoc-lua-engine] attoparsec-0.14.4, libyaml-clib-0.2.5, pandoc-3.7.0.2, pandoc-3.7.0.2,
  1753. 1551.96 s [pandoc-lua-engine] vector-0.13.2.0
  1754. 1552.84 s [pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
  1755. 1553.57 s [pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
  1756. 1553.62 s [pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
  1757. 1553.93 s [pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
  1758. 1553.96 s [pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
  1759. 1553.98 s [pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
  1760. 1553.99 s [pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
  1761. 1554.04 s [pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
  1762. 1554.42 s [pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
  1763. 1554.46 s [pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
  1764. 1554.61 s [pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
  1765. 1554.63 s [pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
  1766. 1554.66 s [pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
  1767. 1554.77 s [pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
  1768. 1554.98 s [pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
  1769. 1555.02 s [pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
  1770. 1555.49 s [pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
  1771. 1555.79 s [pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
  1772. 1555.82 s [pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
  1773. 1556.15 s [pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
  1774. 1556.29 s [pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
  1775. 1556.31 s [pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
  1776. 1556.36 s [pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
  1777. 1556.43 s [pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
  1778. 1556.62 s [pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
  1779. 1556.66 s [pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
  1780. 1556.70 s [pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
  1781. 1557.07 s [pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
  1782. 1557.09 s [pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
  1783. 1557.14 s [pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
  1784. 1557.74 s [pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
  1785. 1557.93 s [pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
  1786. 1558.15 s [pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
  1787. 1558.16 s [pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
  1788. 1558.21 s [pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
  1789. 1558.24 s [pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
  1790. 1558.27 s [pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
  1791. 1558.37 s [pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
  1792. 1558.40 s [pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
  1793. 1558.41 s [pandoc-lua-engine] Haddock coverage:
  1794. 1558.41 s [pandoc-lua-engine] Warning: 'Chunk' is ambiguous. It is defined
  1795. 1558.41 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1796. 1558.41 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1797. 1558.41 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1798. 1558.41 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1799. 1558.41 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Chunks’
  1800. 1558.41 s [pandoc-lua-engine] Warning: 'ChunkedDoc' is ambiguous. It is defined
  1801. 1558.41 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1802. 1558.41 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1803. 1558.41 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1804. 1558.41 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1805. 1558.41 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Chunks’
  1806. 1558.41 s [pandoc-lua-engine] Warning: 'Reference' is ambiguous. It is defined
  1807. 1558.41 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1808. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1809. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1810. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1811. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1812. 1558.42 s [pandoc-lua-engine] Warning: 'ItemId' is ambiguous. It is defined
  1813. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1814. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1815. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1816. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1817. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1818. 1558.42 s [pandoc-lua-engine] Warning: 'Name' is ambiguous. It is defined
  1819. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1820. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1821. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1822. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1823. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1824. 1558.42 s [pandoc-lua-engine] Warning: 'Date' is ambiguous. It is defined
  1825. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1826. 1558.42 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1827. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1828. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1829. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1830. 1558.42 s [pandoc-lua-engine] Warning: 'Sources' is ambiguous. It is defined
  1831. 1558.42 s [pandoc-lua-engine] * in ‘Text.Pandoc.Sources’
  1832. 1558.42 s [pandoc-lua-engine] * in ‘Text.Pandoc.Sources’
  1833. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1834. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1835. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Sources’
  1836. 1558.42 s [pandoc-lua-engine] Warning: 'Lua' is ambiguous. It is defined
  1837. 1558.42 s [pandoc-lua-engine] * in ‘HsLua.Core.Error’
  1838. 1558.42 s [pandoc-lua-engine] * in ‘HsLua.Core.Types’
  1839. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1840. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1841. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘HsLua.Core.Error’
  1842. 1558.42 s [pandoc-lua-engine] Warning: 'PandocLua' is ambiguous. It is defined
  1843. 1558.42 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:23
  1844. 1558.42 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1845. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1846. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1847. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1848. 1558.42 s [pandoc-lua-engine] Warning: 'ExtensionConfig' is out of scope.
  1849. 1558.42 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1850. 1558.42 s [pandoc-lua-engine] Warning: 'ExtensionsConfig' is ambiguous. It is defined
  1851. 1558.42 s [pandoc-lua-engine] * in ‘Text.Pandoc.Format’
  1852. 1558.42 s [pandoc-lua-engine] * in ‘Text.Pandoc.Format’
  1853. 1558.42 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1854. 1558.42 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1855. 1558.42 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Format’
  1856. 1558.42 s [pandoc-lua-engine] Warning: 'enable' is out of scope.
  1857. 1558.42 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1858. 1558.43 s [pandoc-lua-engine] Warning: 'disable' is out of scope.
  1859. 1558.43 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1860. 1558.43 s [pandoc-lua-engine] Warning: 'WriterOptions' is ambiguous. It is defined
  1861. 1558.43 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1862. 1558.43 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1863. 1558.43 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1864. 1558.43 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1865. 1558.43 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Options’
  1866. 1558.43 s [pandoc-lua-engine] Warning: 'Pandoc' is ambiguous. It is defined
  1867. 1558.43 s [pandoc-lua-engine] * in ‘Text.Pandoc.Definition’
  1868. 1558.43 s [pandoc-lua-engine] * in ‘Text.Pandoc.Definition’
  1869. 1558.43 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1870. 1558.43 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1871. 1558.43 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Definition’
  1872. 1558.43 s [pandoc-lua-engine] Warning: 'Chunk' is out of scope.
  1873. 1558.43 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1874. 1558.43 s [pandoc-lua-engine] Warning: 'ReaderOptions' is ambiguous. It is defined
  1875. 1558.43 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1876. 1558.43 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1877. 1558.43 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1878. 1558.43 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1879. 1558.43 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Options’
  1880. 1558.44 s [pandoc-lua-engine] Warning: 'read' is out of scope.
  1881. 1558.44 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1882. 1558.44 s [pandoc-lua-engine] Warning: 'PandocLua' is ambiguous. It is defined
  1883. 1558.44 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:23
  1884. 1558.44 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1885. 1558.44 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1886. 1558.44 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1887. 1558.44 s [pandoc-lua-engine] Defaulting to the one defined at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1888. 1558.44 s [pandoc-lua-engine] 100% ( 11 / 11) in 'Text.Pandoc.Lua'
  1889. 1560.45 s [pandoc-lua-engine] Warning: Text.Pandoc.Lua: could not find link destinations for:
  1890. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Options.WriterOptions
  1891. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Error.PandocError
  1892. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Options.ReaderOptions
  1893. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Class.CommonState.CommonState
  1894. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Class.PandocMonad.PandocMonad
  1895. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Scripting.ScriptingEngine
  1896. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Filter.Environment.Environment
  1897. 1560.45 s [pandoc-lua-engine] - Text.Pandoc.Scripting.CustomComponents
  1898. 1565.01 s [haskell-language-server] Preprocessing library 'hls-class-plugin' for haskell-language-server-2.12.0.0...
  1899. 1565.05 s [haskell-language-server] Building library 'hls-class-plugin' for haskell-language-server-2.12.0.0...
  1900. 1565.30 s [haskell-language-server] [1 of 6] Compiling Ide.Plugin.Class.Utils ( plugins/hls-class-plugin/src/Ide/Plugin/Class/Utils.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/Utils.o, dist/build/hls-class-plugin/Ide/Plugin/Class/Utils.dyn_o )
  1901. 1567.53 s [haskell-language-server] [2 of 6] Compiling Ide.Plugin.Class.Types ( plugins/hls-class-plugin/src/Ide/Plugin/Class/Types.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/Types.o, dist/build/hls-class-plugin/Ide/Plugin/Class/Types.dyn_o )
  1902. 1570.91 s [haskell-language-server] [3 of 6] Compiling Ide.Plugin.Class.ExactPrint ( plugins/hls-class-plugin/src/Ide/Plugin/Class/ExactPrint.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/ExactPrint.o, dist/build/hls-class-plugin/Ide/Plugin/Class/ExactPrint.dyn_o )
  1903. 1571.05 s [haskell-language-server] plugins/hls-class-plugin/src/Ide/Plugin/Class/ExactPrint.hs:9:1: warning: [GHC-66111] [-Wunused-imports]
  1904. 1571.05 s [haskell-language-server] The import of ‘Data.Functor.Identity’ is redundant
  1905. 1571.05 s [haskell-language-server] except perhaps to import instances from ‘Data.Functor.Identity’
  1906. 1571.05 s [haskell-language-server] To import instances alone, use: import Data.Functor.Identity()
  1907. 1571.05 s [haskell-language-server] |
  1908. 1571.05 s [haskell-language-server] 9 | import Data.Functor.Identity (Identity)
  1909. 1571.05 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1910. 1571.05 s [haskell-language-server]
  1911. 1571.29 s [haskell-language-server] [4 of 6] Compiling Ide.Plugin.Class.CodeLens ( plugins/hls-class-plugin/src/Ide/Plugin/Class/CodeLens.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/CodeLens.o, dist/build/hls-class-plugin/Ide/Plugin/Class/CodeLens.dyn_o )
  1912. 1572.31 s [haskell-language-server] [5 of 6] Compiling Ide.Plugin.Class.CodeAction ( plugins/hls-class-plugin/src/Ide/Plugin/Class/CodeAction.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/CodeAction.o, dist/build/hls-class-plugin/Ide/Plugin/Class/CodeAction.dyn_o )
  1913. 1572.92 s [haskell-language-server] [6 of 6] Compiling Ide.Plugin.Class ( plugins/hls-class-plugin/src/Ide/Plugin/Class.hs, dist/build/hls-class-plugin/Ide/Plugin/Class.o, dist/build/hls-class-plugin/Ide/Plugin/Class.dyn_o )
  1914. 1573.78 s [haskell-language-server] [1 of 6] Compiling Ide.Plugin.Class.Utils ( plugins/hls-class-plugin/src/Ide/Plugin/Class/Utils.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/Utils.p_o )
  1915. 1575.77 s [haskell-language-server] [2 of 6] Compiling Ide.Plugin.Class.Types ( plugins/hls-class-plugin/src/Ide/Plugin/Class/Types.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/Types.p_o )
  1916. 1577.49 s [pandoc-lua-engine] Documentation created: dist/doc/html/pandoc-lua-engine/,
  1917. 1577.49 s [pandoc-lua-engine] dist/doc/html/pandoc-lua-engine/pandoc-lua-engine.txt
  1918. 1577.60 s [pandoc-lua-engine] Preprocessing test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
  1919. 1577.63 s [pandoc-lua-engine] Phase: installPhase
  1920. 1578.19 s [pandoc-lua-engine] Installing library in /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  1921. 1580.06 s [pandoc-lua-engine] Phase: fixupPhase
  1922. 1580.10 s [pandoc-lua-engine] shrinking RPATHs of ELF executables and libraries in /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3
  1923. 1580.10 s [pandoc-lua-engine] shrinking /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSpandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4-ghc9.10.3.so
  1924. 1580.25 s [pandoc-lua-engine] checking for references to /build/ in /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3...
  1925. 1580.31 s [pandoc-lua-engine] patching script interpreter paths in /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3
  1926. 1580.32 s [pandoc-lua-engine] stripping (with command strip and flags -S -p) in /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3/lib
  1927. 1580.93 s [pandoc-lua-engine] shrinking RPATHs of ELF executables and libraries in /nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc
  1928. 1580.95 s [pandoc-lua-engine] checking for references to /build/ in /nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc...
  1929. 1580.99 s [pandoc-lua-engine] patching script interpreter paths in /nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc
  1930. 1581.41 s [pandoc-lua-engine:post-build] Uploading to cachix cache "sellout": /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3 /nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc
  1931. 1581.91 s [pandoc-lua-engine:post-build] Nothing to push - all store paths are already on Cachix.
  1932. 1581.94 s [pandoc-lua-engine:post-build] Uploading to the NixCI cache: /nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3 /nix/store/wd3qb19xk64yg131cjkph4v34bwz1gmq-pandoc-lua-engine-0.4.3-doc
  1933. 1582.01 s [pandoc-lua-engine:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1934. 1582.18 s [pandoc-lua-engine:post-build] copying 1 paths...
  1935. 1582.18 s [pandoc-lua-engine:post-build] copying path '/nix/store/40m6lp7v69m0xyc7ax4xpj9wakbz8gyf-pandoc-lua-engine-0.4.3' to 'https://cache.nix-ci.com'...
  1936. 1590.74 s [pandoc-lua-engine:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1937. 1590.87 s [pandoc-lua-engine:post-build] copying 0 paths...
  1938. 1590.91 s Progress: 46 of 53 built (1 building), 375 of 375 downloaded from cache
  1939. 1591.06 s Building /nix/store/qmy7ps3m9d54gh5mmi24jf976jzhgy36-pandoc-cli-3.7.0.2.drv
  1940. 1591.06 s [haskell-language-server] [3 of 6] Compiling Ide.Plugin.Class.ExactPrint ( plugins/hls-class-plugin/src/Ide/Plugin/Class/ExactPrint.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/ExactPrint.p_o )
  1941. 1591.06 s [haskell-language-server] plugins/hls-class-plugin/src/Ide/Plugin/Class/ExactPrint.hs:9:1: warning: [GHC-66111] [-Wunused-imports]
  1942. 1591.06 s [haskell-language-server] The import of ‘Data.Functor.Identity’ is redundant
  1943. 1591.06 s [haskell-language-server] except perhaps to import instances from ‘Data.Functor.Identity’
  1944. 1591.07 s [haskell-language-server] To import instances alone, use: import Data.Functor.Identity()
  1945. 1591.07 s [haskell-language-server] |
  1946. 1591.07 s [haskell-language-server] 9 | import Data.Functor.Identity (Identity)
  1947. 1591.07 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1948. 1591.07 s [haskell-language-server]
  1949. 1591.07 s [haskell-language-server] [4 of 6] Compiling Ide.Plugin.Class.CodeLens ( plugins/hls-class-plugin/src/Ide/Plugin/Class/CodeLens.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/CodeLens.p_o )
  1950. 1591.07 s [haskell-language-server] [5 of 6] Compiling Ide.Plugin.Class.CodeAction ( plugins/hls-class-plugin/src/Ide/Plugin/Class/CodeAction.hs, dist/build/hls-class-plugin/Ide/Plugin/Class/CodeAction.p_o )
  1951. 1591.07 s [haskell-language-server] [6 of 6] Compiling Ide.Plugin.Class ( plugins/hls-class-plugin/src/Ide/Plugin/Class.hs, dist/build/hls-class-plugin/Ide/Plugin/Class.p_o )
  1952. 1591.52 s [haskell-language-server] Preprocessing library 'hls-explicit-fixity-plugin' for haskell-language-server-2.12.0.0...
  1953. 1591.52 s [haskell-language-server] Building library 'hls-explicit-fixity-plugin' for haskell-language-server-2.12.0.0...
  1954. 1591.67 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ExplicitFixity ( plugins/hls-explicit-fixity-plugin/src/Ide/Plugin/ExplicitFixity.hs, dist/build/hls-explicit-fixity-plugin/Ide/Plugin/ExplicitFixity.o, dist/build/hls-explicit-fixity-plugin/Ide/Plugin/ExplicitFixity.dyn_o )
  1955. 1591.93 s [pandoc-cli] Phase: setupCompilerEnvironmentPhase
  1956. 1591.93 s [pandoc-cli] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  1957. 1592.72 s [pandoc-cli] Phase: unpackPhase
  1958. 1592.73 s [pandoc-cli] unpacking source archive /nix/store/l1s1s9sdrxfqabvc0hl1i6jbdyzaj2ci-pandoc-cli-3.7.0.2.tar.gz
  1959. 1592.73 s [pandoc-cli] source root is pandoc-cli-3.7.0.2
  1960. 1592.75 s [pandoc-cli] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-cli-3.7.0.2/src/pandoc.hs"
  1961. 1592.76 s [pandoc-cli] Phase: patchPhase
  1962. 1592.77 s [pandoc-cli] Phase: compileBuildDriverPhase
  1963. 1592.78 s [pandoc-cli] setupCompileFlags: -package-db=/build/tmp.mBYGGjeEv8/setup-package.conf.d -threaded
  1964. 1592.85 s [pandoc-cli] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.mBYGGjeEv8/Main.o )
  1965. 1592.91 s [pandoc-cli] [2 of 2] Linking Setup
  1966. 1594.63 s [pandoc-cli] Phase: updateAutotoolsGnuConfigScriptsPhase
  1967. 1594.65 s [pandoc-cli] Phase: configurePhase
  1968. 1594.65 s [pandoc-cli] configureFlags: --verbose --prefix=/nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --with-gcc=gcc --package-db=/build/tmp.mBYGGjeEv8/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping -fembed_data_files --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib
  1969. 1594.67 s [pandoc-cli] Using Parsec parser
  1970. 1594.67 s [pandoc-cli] Configuring pandoc-cli-3.7.0.2...
  1971. 1594.81 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ExplicitFixity ( plugins/hls-explicit-fixity-plugin/src/Ide/Plugin/ExplicitFixity.hs, dist/build/hls-explicit-fixity-plugin/Ide/Plugin/ExplicitFixity.p_o )
  1972. 1595.48 s [pandoc-cli] Flags chosen: lua=True, nightly=False, server=True
  1973. 1595.95 s [pandoc-cli] Dependency base >=4.12 && <5: using base-4.20.2.0
  1974. 1595.95 s [pandoc-cli] Dependency hslua-cli >=1.4.1 && <1.5: using hslua-cli-1.4.3
  1975. 1595.97 s [pandoc-cli] Dependency pandoc ==3.7.0.2: using pandoc-3.7.0.2
  1976. 1595.97 s [pandoc-cli] Dependency pandoc-lua-engine >=0.4.3 && <0.5: using pandoc-lua-engine-0.4.3
  1977. 1595.97 s [pandoc-cli] Dependency pandoc-server >=0.1.0.9 && <0.2: using pandoc-server-0.1.0.11
  1978. 1595.97 s [pandoc-cli] Dependency safe: using safe-0.3.21
  1979. 1595.97 s [pandoc-cli] Dependency temporary >=1.1 && <1.4: using temporary-1.3
  1980. 1595.97 s [pandoc-cli] Dependency text: using text-2.1.3
  1981. 1595.97 s [pandoc-cli] Dependency wai-extra >=3.0.24: using wai-extra-3.1.18
  1982. 1595.97 s [pandoc-cli] Dependency warp: using warp-3.4.9
  1983. 1595.97 s [pandoc-cli] Source component graph: component exe:pandoc
  1984. 1595.97 s [pandoc-cli] Configured component graph:
  1985. 1595.97 s [pandoc-cli] component pandoc-cli-3.7.0.2-BdFEXtx4yoTCmeDPYT8eTr-pandoc
  1986. 1595.97 s [pandoc-cli] include base-4.20.2.0-64da
  1987. 1595.97 s [pandoc-cli] include hslua-cli-1.4.3-GEWVAFQbzS1ZD0qJxIIXy
  1988. 1595.97 s [pandoc-cli] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  1989. 1595.97 s [pandoc-cli] include pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  1990. 1595.97 s [pandoc-cli] include pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  1991. 1595.97 s [pandoc-cli] include safe-0.3.21-3KkbrJIc4RVHGJea2Lg3Om
  1992. 1595.97 s [pandoc-cli] include temporary-1.3-13ALOC7EiGuL5fcdI6Qhbr
  1993. 1595.97 s [pandoc-cli] include text-2.1.3-c691
  1994. 1595.97 s [pandoc-cli] include wai-extra-3.1.18-FaXDsOLfhm2AqRCck5c6OX
  1995. 1595.97 s [pandoc-cli] include warp-3.4.9-Bcl6gvYN73A3zY8DJaUvNN
  1996. 1595.97 s [pandoc-cli] Linked component graph:
  1997. 1595.97 s [pandoc-cli] unit pandoc-cli-3.7.0.2-BdFEXtx4yoTCmeDPYT8eTr-pandoc
  1998. 1595.97 s [pandoc-cli] include base-4.20.2.0-64da
  1999. 1595.97 s [pandoc-cli] include hslua-cli-1.4.3-GEWVAFQbzS1ZD0qJxIIXy
  2000. 1595.97 s [pandoc-cli] include pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  2001. 1595.97 s [pandoc-cli] include pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  2002. 1595.97 s [pandoc-cli] include pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  2003. 1595.97 s [pandoc-cli] include safe-0.3.21-3KkbrJIc4RVHGJea2Lg3Om
  2004. 1595.97 s [pandoc-cli] include temporary-1.3-13ALOC7EiGuL5fcdI6Qhbr
  2005. 1595.97 s [pandoc-cli] include text-2.1.3-c691
  2006. 1595.97 s [pandoc-cli] include wai-extra-3.1.18-FaXDsOLfhm2AqRCck5c6OX
  2007. 1595.97 s [pandoc-cli] include warp-3.4.9-Bcl6gvYN73A3zY8DJaUvNN
  2008. 1595.97 s [pandoc-cli] Ready component graph:
  2009. 1595.97 s [pandoc-cli] definite pandoc-cli-3.7.0.2-BdFEXtx4yoTCmeDPYT8eTr-pandoc
  2010. 1595.97 s [pandoc-cli] depends base-4.20.2.0-64da
  2011. 1595.97 s [pandoc-cli] depends hslua-cli-1.4.3-GEWVAFQbzS1ZD0qJxIIXy
  2012. 1595.97 s [pandoc-cli] depends pandoc-3.7.0.2-JiBoZy05rqH1rZpfc44nO3
  2013. 1595.97 s [pandoc-cli] depends pandoc-lua-engine-0.4.3-5WfKLRnIaWo35wgF88I2i4
  2014. 1595.97 s [pandoc-cli] depends pandoc-server-0.1.0.11-1fbeQpfbRwBC9PF9PShfbM
  2015. 1595.97 s [pandoc-cli] depends safe-0.3.21-3KkbrJIc4RVHGJea2Lg3Om
  2016. 1595.97 s [pandoc-cli] depends temporary-1.3-13ALOC7EiGuL5fcdI6Qhbr
  2017. 1595.97 s [pandoc-cli] depends text-2.1.3-c691
  2018. 1595.97 s [pandoc-cli] depends wai-extra-3.1.18-FaXDsOLfhm2AqRCck5c6OX
  2019. 1595.97 s [pandoc-cli] depends warp-3.4.9-Bcl6gvYN73A3zY8DJaUvNN
  2020. 1595.97 s [pandoc-cli] Using Cabal-3.12.1.0 compiled by ghc-9.10
  2021. 1595.97 s [pandoc-cli] Using compiler: ghc-9.10.3
  2022. 1595.97 s [pandoc-cli] Using install prefix:
  2023. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2
  2024. 1595.97 s [pandoc-cli] Executables installed in:
  2025. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/bin
  2026. 1595.97 s [pandoc-cli] Libraries installed in:
  2027. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/pandoc-cli-3.7.0.2
  2028. 1595.97 s [pandoc-cli] Dynamic Libraries installed in:
  2029. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  2030. 1595.97 s [pandoc-cli] Private executables installed in:
  2031. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/libexec/x86_64-linux-ghc-9.10.3-05f6/pandoc-cli-3.7.0.2
  2032. 1595.97 s [pandoc-cli] Data files installed in:
  2033. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/share/x86_64-linux-ghc-9.10.3-05f6/pandoc-cli-3.7.0.2
  2034. 1595.97 s [pandoc-cli] Documentation installed in:
  2035. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/share/doc/x86_64-linux-ghc-9.10.3-05f6/pandoc-cli-3.7.0.2
  2036. 1595.97 s [pandoc-cli] Configuration files installed in:
  2037. 1595.97 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/etc
  2038. 1595.97 s [pandoc-cli] No alex found
  2039. 1595.97 s [pandoc-cli] Using ar found on system at:
  2040. 1595.97 s [pandoc-cli] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  2041. 1595.97 s [pandoc-cli] No c2hs found
  2042. 1595.97 s [pandoc-cli] No cpphs found
  2043. 1595.97 s [pandoc-cli] No doctest found
  2044. 1595.97 s [pandoc-cli] Using gcc version 14.3.0 given by user at:
  2045. 1595.97 s [pandoc-cli] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  2046. 1595.97 s [pandoc-cli] Using ghc version 9.10.3 found on system at:
  2047. 1595.97 s [pandoc-cli] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  2048. 1595.97 s [pandoc-cli] Using ghc-pkg version 9.10.3 found on system at:
  2049. 1595.97 s [pandoc-cli] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  2050. 1595.97 s [pandoc-cli] No ghcjs found
  2051. 1595.97 s [pandoc-cli] No ghcjs-pkg found
  2052. 1595.97 s [pandoc-cli] No greencard found
  2053. 1595.97 s [pandoc-cli] Using haddock version 2.31.1 found on system at:
  2054. 1595.97 s [pandoc-cli] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  2055. 1595.97 s [pandoc-cli] No happy found
  2056. 1595.97 s [pandoc-cli] Using haskell-suite found on system at: haskell-suite-dummy-location
  2057. 1595.97 s [pandoc-cli] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  2058. 1595.97 s [pandoc-cli] No hmake found
  2059. 1595.97 s [pandoc-cli] Using hpc version 0.69 found on system at:
  2060. 1595.97 s [pandoc-cli] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  2061. 1595.97 s [pandoc-cli] Using hsc2hs version 0.68.10 found on system at:
  2062. 1595.97 s [pandoc-cli] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  2063. 1595.97 s [pandoc-cli] No hscolour found
  2064. 1595.97 s [pandoc-cli] No jhc found
  2065. 1595.97 s [pandoc-cli] Using ld found on system at:
  2066. 1595.97 s [pandoc-cli] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  2067. 1595.97 s [pandoc-cli] No pkg-config found
  2068. 1595.97 s [pandoc-cli] Using runghc version 9.10.3 found on system at:
  2069. 1595.97 s [pandoc-cli] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  2070. 1595.97 s [pandoc-cli] Using strip version 2.44 found on system at:
  2071. 1595.97 s [pandoc-cli] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  2072. 1595.97 s [pandoc-cli] Using tar found on system at:
  2073. 1595.97 s [pandoc-cli] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  2074. 1595.97 s [pandoc-cli] No uhc found
  2075. 1596.85 s [pandoc-cli] Phase: buildPhase
  2076. 1597.37 s [pandoc-cli] Preprocessing executable 'pandoc' for pandoc-cli-3.7.0.2...
  2077. 1597.37 s [pandoc-cli] Building executable 'pandoc' for pandoc-cli-3.7.0.2...
  2078. 1597.54 s [pandoc-cli] [1 of 3] Compiling PandocCLI.Lua
  2079. 1597.85 s [pandoc-cli] [2 of 3] Compiling PandocCLI.Server
  2080. 1597.87 s [pandoc-cli] [3 of 3] Compiling Main
  2081. 1598.56 s [pandoc-cli] [4 of 4] Linking dist/build/pandoc/pandoc
  2082. 1604.72 s [haskell-language-server] Preprocessing library 'hls-explicit-record-fields-plugin' for haskell-language-server-2.12.0.0...
  2083. 1604.73 s [haskell-language-server] Building library 'hls-explicit-record-fields-plugin' for haskell-language-server-2.12.0.0...
  2084. 1604.86 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ExplicitFields ( plugins/hls-explicit-record-fields-plugin/src/Ide/Plugin/ExplicitFields.hs, dist/build/hls-explicit-record-fields-plugin/Ide/Plugin/ExplicitFields.o, dist/build/hls-explicit-record-fields-plugin/Ide/Plugin/ExplicitFields.dyn_o )
  2085. 1609.80 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.ExplicitFields ( plugins/hls-explicit-record-fields-plugin/src/Ide/Plugin/ExplicitFields.hs, dist/build/hls-explicit-record-fields-plugin/Ide/Plugin/ExplicitFields.p_o )
  2086. 1610.62 s [pandoc-cli] Phase: checkPhase
  2087. 1610.73 s [pandoc-cli] Package has no test suites.
  2088. 1610.74 s [pandoc-cli] Phase: haddockPhase
  2089. 1610.86 s [pandoc-cli] Phase: installPhase
  2090. 1611.07 s [pandoc-cli] Installing executable pandoc in /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/bin
  2091. 1611.07 s [pandoc-cli] Warning: The directory
  2092. 1611.07 s [pandoc-cli] /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/bin is not in
  2093. 1611.07 s [pandoc-cli] the system search path.
  2094. 1617.99 s [pandoc-cli] Phase: fixupPhase
  2095. 1618.01 s [pandoc-cli] shrinking RPATHs of ELF executables and libraries in /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2
  2096. 1618.01 s [pandoc-cli] shrinking /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/bin/pandoc
  2097. 1618.38 s [pandoc-cli] checking for references to /build/ in /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2...
  2098. 1618.65 s [pandoc-cli] gzipping man pages under /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/share/man/
  2099. 1618.68 s [pandoc-cli] patching script interpreter paths in /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2
  2100. 1618.68 s [pandoc-cli] stripping (with command strip and flags -S -p) in /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2/bin
  2101. 1620.22 s [pandoc-cli:post-build] Uploading to cachix cache "sellout": /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2
  2102. 1620.68 s [pandoc-cli:post-build] Nothing to push - all store paths are already on Cachix.
  2103. 1620.70 s [pandoc-cli:post-build] Uploading to the NixCI cache: /nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2
  2104. 1620.77 s [pandoc-cli:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2105. 1620.78 s [pandoc-cli:post-build] copying 1 paths...
  2106. 1620.78 s [pandoc-cli:post-build] copying path '/nix/store/rsk25mlpk4hvq0hfvh4134f33c2hh69l-pandoc-cli-3.7.0.2' to 'https://cache.nix-ci.com'...
  2107. 1703.58 s [pandoc-cli:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2108. 1703.69 s [pandoc-cli:post-build] copying 0 paths...
  2109. 1703.71 s Progress: 47 of 53 built (1 building), 375 of 375 downloaded from cache
  2110. 1703.75 s Building /nix/store/10xzxxdy2m2dv7z9mzid70kwihb0p0z3-shellcheck-0.11.0.drv
  2111. 1703.75 s [haskell-language-server] Preprocessing library for haskell-language-server-2.12.0.0...
  2112. 1703.75 s [haskell-language-server] Building library for haskell-language-server-2.12.0.0...
  2113. 1703.75 s [haskell-language-server] <no location info>: warning: [GHC-42258] [-Wunused-packages]
  2114. 1703.75 s [haskell-language-server] The following packages were specified via -package or -package-id flags,
  2115. 1703.75 s [haskell-language-server] but were not needed for compilation:
  2116. 1703.75 s [haskell-language-server] - ghc-9.10.3 (exposed by flag -package-id ghc-9.10.3-05f6)
  2117. 1703.75 s [haskell-language-server]
  2118. 1703.75 s [haskell-language-server] [1 of 5] Compiling HlsPlugins ( src/HlsPlugins.hs, dist/build/HlsPlugins.o, dist/build/HlsPlugins.dyn_o )
  2119. 1703.75 s [haskell-language-server] [2 of 5] Compiling Paths_haskell_language_server ( dist/build/autogen/Paths_haskell_language_server.hs, dist/build/Paths_haskell_language_server.o, dist/build/Paths_haskell_language_server.dyn_o )
  2120. 1703.75 s [haskell-language-server] [3 of 5] Compiling Ide.Version ( src/Ide/Version.hs, dist/build/Ide/Version.o, dist/build/Ide/Version.dyn_o )
  2121. 1703.75 s [haskell-language-server] [4 of 5] Compiling Ide.Arguments ( src/Ide/Arguments.hs, dist/build/Ide/Arguments.o, dist/build/Ide/Arguments.dyn_o )
  2122. 1703.75 s [haskell-language-server] [5 of 5] Compiling Ide.Main ( src/Ide/Main.hs, dist/build/Ide/Main.o, dist/build/Ide/Main.dyn_o )
  2123. 1703.75 s [haskell-language-server] <no location info>: warning: [GHC-42258] [-Wunused-packages]
  2124. 1703.75 s [haskell-language-server] The following packages were specified via -package or -package-id flags,
  2125. 1703.75 s [haskell-language-server] but were not needed for compilation:
  2126. 1703.75 s [haskell-language-server] - ghc-9.10.3 (exposed by flag -package-id ghc-9.10.3-05f6)
  2127. 1703.75 s [haskell-language-server]
  2128. 1703.75 s [haskell-language-server] [1 of 5] Compiling HlsPlugins ( src/HlsPlugins.hs, dist/build/HlsPlugins.p_o )
  2129. 1703.75 s [haskell-language-server] [2 of 5] Compiling Paths_haskell_language_server ( dist/build/autogen/Paths_haskell_language_server.hs, dist/build/Paths_haskell_language_server.p_o )
  2130. 1703.75 s [haskell-language-server] [3 of 5] Compiling Ide.Version ( src/Ide/Version.hs, dist/build/Ide/Version.p_o )
  2131. 1703.75 s [haskell-language-server] [4 of 5] Compiling Ide.Arguments ( src/Ide/Arguments.hs, dist/build/Ide/Arguments.p_o )
  2132. 1703.75 s [haskell-language-server] [5 of 5] Compiling Ide.Main ( src/Ide/Main.hs, dist/build/Ide/Main.p_o )
  2133. 1703.75 s [haskell-language-server] Preprocessing executable 'haskell-language-server-wrapper' for haskell-language-server-2.12.0.0...
  2134. 1703.75 s [haskell-language-server] Building executable 'haskell-language-server-wrapper' for haskell-language-server-2.12.0.0...
  2135. 1703.75 s [haskell-language-server] [1 of 2] Compiling Main ( exe/Wrapper.hs, dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper-tmp/Main.dyn_o )
  2136. 1703.75 s [haskell-language-server] [2 of 2] Compiling Paths_haskell_language_server ( dist/build/haskell-language-server-wrapper/autogen/Paths_haskell_language_server.hs, dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper-tmp/Paths_haskell_language_server.dyn_o )
  2137. 1703.75 s [haskell-language-server] [3 of 3] Linking dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper
  2138. 1703.75 s [haskell-language-server] Preprocessing executable 'haskell-language-server' for haskell-language-server-2.12.0.0...
  2139. 1703.75 s [haskell-language-server] Building executable 'haskell-language-server' for haskell-language-server-2.12.0.0...
  2140. 1703.75 s [haskell-language-server] [1 of 1] Compiling Main ( exe/Main.hs, dist/build/haskell-language-server/haskell-language-server-tmp/Main.dyn_o )
  2141. 1703.75 s [haskell-language-server] [2 of 2] Linking dist/build/haskell-language-server/haskell-language-server
  2142. 1703.75 s [haskell-language-server] buildPhase completed in 12 minutes 47 seconds
  2143. 1703.75 s [haskell-language-server] Phase: haddockPhase
  2144. 1703.75 s [haskell-language-server] Phase: installPhase
  2145. 1703.75 s [haskell-language-server] Installing internal library hls-alternate-number-format-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-lbCLVSbCdZ3FqNrc3Ycqd-hls-alternate-number-format-plugin
  2146. 1703.75 s [haskell-language-server] Installing internal library hls-cabal-gild-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-LEeumOvn2Jv1hQiEPRcNGI-hls-cabal-gild-plugin
  2147. 1703.75 s [haskell-language-server] Installing internal library hls-ormolu-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-IZJ1EX8F5LoJtqFvzShGq6-hls-ormolu-plugin
  2148. 1703.75 s [haskell-language-server] Installing executable ghcide-test-preprocessor in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2149. 1703.75 s [haskell-language-server] Warning: The directory
  2150. 1703.75 s [haskell-language-server] /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2151. 1703.75 s [haskell-language-server] is not in the system search path.
  2152. 1703.75 s [haskell-language-server] Installing internal library hls-qualify-imported-names-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-Fn39BhuNGdiBbvXGixtLch-hls-qualify-imported-names-plugin
  2153. 1703.75 s [haskell-language-server] Installing internal library hls-code-range-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-EmWDsmQwbRhDvIWD2bJ6Lq-hls-code-range-plugin
  2154. 1703.76 s [haskell-language-server] Installing internal library hls-eval-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-EdJH5FmNArB2ZPttEYhI1C-hls-eval-plugin
  2155. 1703.76 s [haskell-language-server] Installing internal library hls-cabal-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-CUONWhrQPofD1kxwUaCUnG-hls-cabal-plugin
  2156. 1703.76 s [haskell-language-server] Installing internal library hls-explicit-imports-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-CBN2chVajOk9DqQQdOCuUJ-hls-explicit-imports-plugin
  2157. 1703.76 s [haskell-language-server] Installing internal library hls-semantic-tokens-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-AxF3S0YyhKMLn8WxGwdcgB-hls-semantic-tokens-plugin
  2158. 1703.76 s [haskell-language-server] Installing internal library hls-pragmas-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-AkbTMzYbKmL5bYexc097fu-hls-pragmas-plugin
  2159. 1703.76 s [haskell-language-server] Installing internal library ghcide-bench-lib in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-Afoeq0LvsbgDaPgJ3GHZRq-ghcide-bench-lib
  2160. 1703.76 s [haskell-language-server] Installing internal library hls-notes-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-9ZVz3wWZNEBIuRUmMlL8uv-hls-notes-plugin
  2161. 1703.76 s [haskell-language-server] Installing internal library hls-refactor-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-8xVWvGUuuD92rbqUzzeJ4J-hls-refactor-plugin
  2162. 1703.76 s [haskell-language-server] Installing internal library hls-gadt-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-9ol8ZGW0Q7ECT5AHsTLsRi-hls-gadt-plugin
  2163. 1703.76 s [haskell-language-server] Installing internal library hls-overloaded-record-dot-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-8uvzB1h1kiyG153yUU8LUY-hls-overloaded-record-dot-plugin
  2164. 1703.76 s [haskell-language-server] Installing internal library hls-stan-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-8GTZkuArIME6cMP3RqPXJv-hls-stan-plugin
  2165. 1703.76 s [haskell-language-server] Installing internal library hls-cabal-fmt-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-8AdoXxYEO5cCanWfygdVUr-hls-cabal-fmt-plugin
  2166. 1703.76 s [haskell-language-server] Installing internal library hls-signature-help-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-7zu848i8hICKbdu2xwHGrJ-hls-signature-help-plugin
  2167. 1703.76 s [haskell-language-server] Installing internal library hls-change-type-signature-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-7rFw0JBqcFt8IVzA3Wtu3L-hls-change-type-signature-plugin
  2168. 1703.76 s [haskell-language-server] Installing executable ghcide-bench in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2169. 1703.76 s [haskell-language-server] Warning: The directory
  2170. 1703.76 s [haskell-language-server] /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2171. 1703.76 s [haskell-language-server] is not in the system search path.
  2172. 1703.76 s [haskell-language-server] Installing internal library hls-stylish-haskell-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-6iXWahwgJ7MRT3LWTmmWf-hls-stylish-haskell-plugin
  2173. 1703.76 s [haskell-language-server] Installing internal library hls-call-hierarchy-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-4gzAnQrNyDs3l95a1RIXp3-hls-call-hierarchy-plugin
  2174. 1703.76 s [haskell-language-server] Installing internal library hls-rename-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-4LcdTM8XLoPLmKzLe9kPAD-hls-rename-plugin
  2175. 1703.76 s [haskell-language-server] Installing internal library hls-module-name-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-3MR26n87Klm7kSuAuPcv9Z-hls-module-name-plugin
  2176. 1703.76 s [haskell-language-server] Installing internal library hls-fourmolu-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-2vixebIEOHDFPZfAsrm3to-hls-fourmolu-plugin
  2177. 1703.76 s [haskell-language-server] Installing internal library hls-class-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-2p1u5pxqPcwGkmAGWPaoKQ-hls-class-plugin
  2178. 1703.76 s [haskell-language-server] Installing internal library hls-explicit-fixity-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-2fxEIjmDa5C1HMTAt3Epgt-hls-explicit-fixity-plugin
  2179. 1703.76 s [haskell-language-server] Installing internal library hls-explicit-record-fields-plugin in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-121ssoVa2U17a3T0khajQA-hls-explicit-record-fields-plugin
  2180. 1703.76 s [haskell-language-server] Installing library in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/haskell-language-server-2.12.0.0-1StLjRqfbWv7aVO4MeqMRa
  2181. 1703.76 s [haskell-language-server] Installing executable haskell-language-server-wrapper in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2182. 1703.76 s [haskell-language-server] Warning: The directory
  2183. 1703.76 s [haskell-language-server] /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2184. 1703.76 s [haskell-language-server] is not in the system search path.
  2185. 1703.76 s [haskell-language-server] Installing executable haskell-language-server in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2186. 1703.76 s [haskell-language-server] Warning: The directory
  2187. 1703.76 s [haskell-language-server] /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2188. 1703.76 s [haskell-language-server] is not in the system search path.
  2189. 1703.76 s [haskell-language-server] Phase: fixupPhase
  2190. 1703.76 s [haskell-language-server] shrinking RPATHs of ELF executables and libraries in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0
  2191. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin/haskell-language-server-wrapper
  2192. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin/ghcide-test-preprocessor
  2193. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin/.haskell-language-server-9.10.3-unwrapped
  2194. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin/ghcide-bench
  2195. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-8GTZkuArIME6cMP3RqPXJv-hls-stan-plugin-ghc9.10.3.so
  2196. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-1StLjRqfbWv7aVO4MeqMRa-ghc9.10.3.so
  2197. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-8AdoXxYEO5cCanWfygdVUr-hls-cabal-fmt-plugin-ghc9.10.3.so
  2198. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-EdJH5FmNArB2ZPttEYhI1C-hls-eval-plugin-ghc9.10.3.so
  2199. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-8xVWvGUuuD92rbqUzzeJ4J-hls-refactor-plugin-ghc9.10.3.so
  2200. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-3MR26n87Klm7kSuAuPcv9Z-hls-module-name-plugin-ghc9.10.3.so
  2201. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-7zu848i8hICKbdu2xwHGrJ-hls-signature-help-plugin-ghc9.10.3.so
  2202. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-4gzAnQrNyDs3l95a1RIXp3-hls-call-hierarchy-plugin-ghc9.10.3.so
  2203. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-7rFw0JBqcFt8IVzA3Wtu3L-hls-change-type-signature-plugin-ghc9.10.3.so
  2204. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-8uvzB1h1kiyG153yUU8LUY-hls-overloaded-record-dot-plugin-ghc9.10.3.so
  2205. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-lbCLVSbCdZ3FqNrc3Ycqd-hls-alternate-number-format-plugin-ghc9.10.3.so
  2206. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-LEeumOvn2Jv1hQiEPRcNGI-hls-cabal-gild-plugin-ghc9.10.3.so
  2207. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-2fxEIjmDa5C1HMTAt3Epgt-hls-explicit-fixity-plugin-ghc9.10.3.so
  2208. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-9ZVz3wWZNEBIuRUmMlL8uv-hls-notes-plugin-ghc9.10.3.so
  2209. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-6iXWahwgJ7MRT3LWTmmWf-hls-stylish-haskell-plugin-ghc9.10.3.so
  2210. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-2vixebIEOHDFPZfAsrm3to-hls-fourmolu-plugin-ghc9.10.3.so
  2211. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-IZJ1EX8F5LoJtqFvzShGq6-hls-ormolu-plugin-ghc9.10.3.so
  2212. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-4LcdTM8XLoPLmKzLe9kPAD-hls-rename-plugin-ghc9.10.3.so
  2213. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-CBN2chVajOk9DqQQdOCuUJ-hls-explicit-imports-plugin-ghc9.10.3.so
  2214. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-CUONWhrQPofD1kxwUaCUnG-hls-cabal-plugin-ghc9.10.3.so
  2215. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-AxF3S0YyhKMLn8WxGwdcgB-hls-semantic-tokens-plugin-ghc9.10.3.so
  2216. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-2p1u5pxqPcwGkmAGWPaoKQ-hls-class-plugin-ghc9.10.3.so
  2217. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-9ol8ZGW0Q7ECT5AHsTLsRi-hls-gadt-plugin-ghc9.10.3.so
  2218. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-EmWDsmQwbRhDvIWD2bJ6Lq-hls-code-range-plugin-ghc9.10.3.so
  2219. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-Fn39BhuNGdiBbvXGixtLch-hls-qualify-imported-names-plugin-ghc9.10.3.so
  2220. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-AkbTMzYbKmL5bYexc097fu-hls-pragmas-plugin-ghc9.10.3.so
  2221. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-Afoeq0LvsbgDaPgJ3GHZRq-ghcide-bench-lib-ghc9.10.3.so
  2222. 1703.76 s [haskell-language-server] shrinking /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHShaskell-language-server-2.12.0.0-121ssoVa2U17a3T0khajQA-hls-explicit-record-fields-plugin-ghc9.10.3.so
  2223. 1703.81 s [shellcheck] Phase: unpackPhase
  2224. 1703.81 s [shellcheck] unpacking source archive /nix/store/0y569php6xr1v629bbggizl1ba1mrf5b-ShellCheck-0.11.0.tar.gz
  2225. 1703.82 s [shellcheck] source root is ShellCheck-0.11.0
  2226. 1703.82 s [shellcheck] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "ShellCheck-0.11.0/test/shellcheck.hs"
  2227. 1703.83 s [shellcheck] Phase: patchPhase
  2228. 1703.83 s [shellcheck] Phase: updateAutotoolsGnuConfigScriptsPhase
  2229. 1703.84 s [shellcheck] Phase: configurePhase
  2230. 1703.85 s [shellcheck] no configure script, doing nothing
  2231. 1703.85 s [shellcheck] Phase: buildPhase
  2232. 1703.87 s [haskell-language-server] checking for references to /build/ in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0...
  2233. 1703.94 s [shellcheck] Phase: installPhase
  2234. 1703.97 s [shellcheck] Phase: fixupPhase
  2235. 1704.00 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin
  2236. 1704.00 s [shellcheck] shrinking /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin/bin/shellcheck
  2237. 1704.01 s [shellcheck] checking for references to /build/ in /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin...
  2238. 1704.02 s [haskell-language-server] patching script interpreter paths in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0
  2239. 1704.03 s [shellcheck] patching script interpreter paths in /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin
  2240. 1704.03 s [haskell-language-server] /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin/haskell-language-server: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2241. 1704.03 s [shellcheck] stripping (with command strip and flags -S -p) in /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin/bin
  2242. 1704.05 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/wnrx5kpnb68pxkjx89wh402zzik90ykj-shellcheck-0.11.0-man
  2243. 1704.05 s [haskell-language-server] stripping (with command strip and flags -S -p) in /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/lib /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin
  2244. 1704.05 s [shellcheck] checking for references to /build/ in /nix/store/wnrx5kpnb68pxkjx89wh402zzik90ykj-shellcheck-0.11.0-man...
  2245. 1704.06 s [shellcheck] gzipping man pages under /nix/store/wnrx5kpnb68pxkjx89wh402zzik90ykj-shellcheck-0.11.0-man/share/man/
  2246. 1704.07 s [shellcheck] patching script interpreter paths in /nix/store/wnrx5kpnb68pxkjx89wh402zzik90ykj-shellcheck-0.11.0-man
  2247. 1704.08 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/k11wy84pjb36rcpmz327ph29m2a1c92s-shellcheck-0.11.0-doc
  2248. 1704.08 s [shellcheck] checking for references to /build/ in /nix/store/k11wy84pjb36rcpmz327ph29m2a1c92s-shellcheck-0.11.0-doc...
  2249. 1704.10 s [shellcheck] patching script interpreter paths in /nix/store/k11wy84pjb36rcpmz327ph29m2a1c92s-shellcheck-0.11.0-doc
  2250. 1704.10 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/0lmcmi3d6zdmqm19mqr9kx9wl2gd1p6w-shellcheck-0.11.0
  2251. 1704.10 s [shellcheck] checking for references to /build/ in /nix/store/0lmcmi3d6zdmqm19mqr9kx9wl2gd1p6w-shellcheck-0.11.0...
  2252. 1704.11 s [shellcheck] patching script interpreter paths in /nix/store/0lmcmi3d6zdmqm19mqr9kx9wl2gd1p6w-shellcheck-0.11.0
  2253. 1704.21 s [shellcheck:post-build] Uploading to cachix cache "sellout": /nix/store/0lmcmi3d6zdmqm19mqr9kx9wl2gd1p6w-shellcheck-0.11.0 /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin /nix/store/k11wy84pjb36rcpmz327ph29m2a1c92s-shellcheck-0.11.0-doc /nix/store/wnrx5kpnb68pxkjx89wh402zzik90ykj-shellcheck-0.11.0-man
  2254. 1704.68 s [shellcheck:post-build] Nothing to push - all store paths are already on Cachix.
  2255. 1704.70 s [shellcheck:post-build] Uploading to the NixCI cache: /nix/store/0lmcmi3d6zdmqm19mqr9kx9wl2gd1p6w-shellcheck-0.11.0 /nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin /nix/store/k11wy84pjb36rcpmz327ph29m2a1c92s-shellcheck-0.11.0-doc /nix/store/wnrx5kpnb68pxkjx89wh402zzik90ykj-shellcheck-0.11.0-man
  2256. 1704.84 s [shellcheck:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2257. 1704.87 s [shellcheck:post-build] copying 1 paths...
  2258. 1704.87 s [shellcheck:post-build] copying path '/nix/store/42acbjqxrq13cwjccjnqjs6ih4s3v5cf-shellcheck-0.11.0-bin' to 'https://cache.nix-ci.com'...
  2259. 1707.32 s [shellcheck:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2260. 1707.43 s [shellcheck:post-build] copying 0 paths...
  2261. 1707.45 s Progress: 48 of 53 built (1 building), 375 of 375 downloaded from cache
  2262. 1707.50 s Building /nix/store/na71b1qblfcv0x84nz68yybh61b6qjlv-bash-language-server-5.6.0.drv
  2263. 1707.50 s [haskell-language-server] rewriting symlink /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0/bin/haskell-language-server-9.10.3 to be relative to /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0
  2264. 1707.50 s [haskell-language-server] fixupPhase completed in 43 seconds
  2265. 1708.54 s [haskell-language-server:post-build] Uploading to cachix cache "sellout": /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0
  2266. 1709.05 s [haskell-language-server:post-build] Nothing to push - all store paths are already on Cachix.
  2267. 1709.07 s [haskell-language-server:post-build] Uploading to the NixCI cache: /nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0
  2268. 1709.12 s [haskell-language-server:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2269. 1709.17 s [haskell-language-server:post-build] copying 1 paths...
  2270. 1709.17 s [haskell-language-server:post-build] copying path '/nix/store/c94n8ga308kw0sr6rixn32qmfwjg69zf-haskell-language-server-2.12.0.0' to 'https://cache.nix-ci.com'...
  2271. 1736.75 s [haskell-language-server:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2272. 1736.89 s [haskell-language-server:post-build] copying 0 paths...
  2273. 1736.92 s Progress: 49 of 53 built (1 building), 375 of 375 downloaded from cache
  2274. 1736.92 s [bash-language-server] Using versionCheckHook
  2275. 1736.92 s [bash-language-server] Phase: unpackPhase
  2276. 1736.92 s [bash-language-server] unpacking source archive /nix/store/lxydhrakpk9ccbjzavdgm3f3imkypnw2-source
  2277. 1736.92 s [bash-language-server] source root is source
  2278. 1736.92 s [bash-language-server] Phase: patchPhase
  2279. 1736.92 s [bash-language-server] Phase: updateAutotoolsGnuConfigScriptsPhase
  2280. 1736.92 s [bash-language-server] Phase: configurePhase
  2281. 1736.92 s [bash-language-server] no configure script, doing nothing
  2282. 1736.92 s [bash-language-server] Executing pnpmConfigHook
  2283. 1736.92 s [bash-language-server] Found 'pnpm' with version '10.28.0'
  2284. 1736.92 s [bash-language-server] Using fetcherVersion: 3
  2285. 1736.92 s [bash-language-server] Configuring pnpm store
  2286. 1736.92 s [bash-language-server] /build /build/source
  2287. 1736.92 s [bash-language-server] /build/source
  2288. 1736.92 s [bash-language-server] Installing dependencies
  2289. 1736.92 s [bash-language-server] Lockfile is up to date, resolution step is skipped
  2290. 1736.92 s [bash-language-server] Progress: resolved 1, reused 0, downloaded 0, added 0
  2291. 1736.92 s [bash-language-server] . | +416
  2292. 1736.92 s [bash-language-server] Progress: resolved 1, reused 0, downloaded 0, added 0
  2293. 1736.92 s [bash-language-server] Progress: resolved 416, reused 104, downloaded 0, added 0
  2294. 1736.92 s [bash-language-server] Progress: resolved 416, reused 415, downloaded 0, added 91
  2295. 1736.92 s [bash-language-server] Progress: resolved 416, reused 416, downloaded 0, added 400
  2296. 1736.92 s [bash-language-server] Progress: resolved 416, reused 416, downloaded 0, added 416, done
  2297. 1736.92 s [bash-language-server] Done in 1.3s using pnpm v10.28.0
  2298. 1736.92 s [bash-language-server] Patching scripts
  2299. 1736.92 s [bash-language-server] patching script interpreter paths in node_modules/@types node_modules/@typescript-eslint node_modules/cross-spawn node_modules/eslint node_modules/eslint-config-prettier node_modules/eslint-plugin-jest node_modules/eslint-plugin-prettier node_modules/eslint-plugin-simple-import-sort node_modules/eslint-plugin-sort-class-members node_modules/jest node_modules/prettier node_modules/ts-jest node_modules/typescript node_modules/vscode-languageserver node_modules/vscode-languageserver-textdocument node_modules/.bin node_modules/.modules.yaml node_modules/.pnpm node_modules/.pnpm-workspace-state-v1.json
  2300. 1736.92 s [bash-language-server] node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2301. 1736.92 s [bash-language-server] node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2302. 1736.92 s [bash-language-server] node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2303. 1736.92 s [bash-language-server] node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2304. 1736.92 s [bash-language-server] node_modules/.bin/installServerIntoExtension: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2305. 1736.92 s [bash-language-server] node_modules/.bin/ts-jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2306. 1736.92 s [bash-language-server] node_modules/.bin/prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2307. 1736.92 s [bash-language-server] node_modules/.bin/eslint-config-prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2308. 1736.92 s [bash-language-server] node_modules/.pnpm/semver@6.3.1/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2309. 1736.92 s [bash-language-server] node_modules/.pnpm/vscode-languageserver@8.0.2/node_modules/vscode-languageserver/bin/installServerIntoExtension: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2310. 1736.92 s [bash-language-server] node_modules/.pnpm/ts-api-utils@1.3.0_typescript@5.6.3/node_modules/ts-api-utils/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2311. 1736.92 s [bash-language-server] node_modules/.pnpm/ts-api-utils@1.3.0_typescript@5.6.3/node_modules/ts-api-utils/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2312. 1736.92 s [bash-language-server] node_modules/.pnpm/@babel+core@7.22.6/node_modules/@babel/core/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2313. 1736.92 s [bash-language-server] node_modules/.pnpm/@babel+core@7.22.6/node_modules/@babel/core/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2314. 1736.92 s [bash-language-server] node_modules/.pnpm/@babel+core@7.22.6/node_modules/@babel/core/node_modules/.bin/json5: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2315. 1736.92 s [bash-language-server] node_modules/.pnpm/eslint-plugin-jest@28.11.0_@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+p_bba564ecab3f9dda53acf7b3e4516a01/node_modules/eslint-plugin-jest/node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2316. 1736.92 s [bash-language-server] node_modules/.pnpm/eslint-plugin-jest@28.11.0_@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+p_bba564ecab3f9dda53acf7b3e4516a01/node_modules/eslint-plugin-jest/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2317. 1736.92 s [bash-language-server] node_modules/.pnpm/@types+babel__core@7.20.1/node_modules/@types/babel__core/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2318. 1736.92 s [bash-language-server] node_modules/.pnpm/flat-cache@3.0.4/node_modules/flat-cache/node_modules/.bin/rimraf: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2319. 1736.92 s [bash-language-server] node_modules/.pnpm/resolve@1.22.2/node_modules/resolve/bin/resolve: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2320. 1736.92 s [bash-language-server] node_modules/.pnpm/jake@10.9.2/node_modules/jake/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2321. 1736.93 s [bash-language-server] node_modules/.pnpm/jake@10.9.2/node_modules/jake/bin/bash_completion.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/bash"
  2322. 1736.93 s [bash-language-server] node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2323. 1736.93 s [bash-language-server] node_modules/.pnpm/esprima@4.0.1/node_modules/esprima/bin/esvalidate.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2324. 1736.93 s [bash-language-server] node_modules/.pnpm/esprima@4.0.1/node_modules/esprima/bin/esparse.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2325. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/bin/eslint.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2326. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/node_modules/.bin/js-yaml: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2327. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@9.1.0_eslint@8.57.1__eslint@8.57.1_prettier@2.8.8/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2328. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@9.1.0_eslint@8.57.1__eslint@8.57.1_prettier@2.8.8/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2329. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@9.1.0_eslint@8.57.1__eslint@8.57.1_prettier@2.8.8/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2330. 1736.93 s [bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@5.2.1/node_modules/istanbul-lib-instrument/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2331. 1736.93 s [bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@5.2.1/node_modules/istanbul-lib-instrument/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2332. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/utils/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2333. 1736.93 s [bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@6.0.0/node_modules/istanbul-lib-instrument/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2334. 1736.93 s [bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@6.0.0/node_modules/istanbul-lib-instrument/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2335. 1736.93 s [bash-language-server] node_modules/.pnpm/ejs@3.1.10/node_modules/ejs/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2336. 1736.93 s [bash-language-server] node_modules/.pnpm/ejs@3.1.10/node_modules/ejs/node_modules/.bin/jake: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2337. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+generator@7.22.5/node_modules/@babel/generator/node_modules/.bin/jsesc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2338. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+template@7.22.15/node_modules/@babel/template/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2339. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@8.57.1/node_modules/eslint-config-prettier/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2340. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@8.57.1/node_modules/eslint-config-prettier/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2341. 1736.93 s [bash-language-server] node_modules/.pnpm/make-dir@3.1.0/node_modules/make-dir/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2342. 1736.93 s [bash-language-server] node_modules/.pnpm/@istanbuljs+load-nyc-config@1.1.0/node_modules/@istanbuljs/load-nyc-config/node_modules/.bin/js-yaml: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2343. 1736.93 s [bash-language-server] node_modules/.pnpm/espree@9.6.1/node_modules/espree/node_modules/.bin/acorn: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2344. 1736.93 s [bash-language-server] node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2345. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+generator@7.23.0/node_modules/@babel/generator/node_modules/.bin/jsesc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2346. 1736.93 s [bash-language-server] node_modules/.pnpm/rimraf@3.0.2/node_modules/rimraf/bin.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2347. 1736.93 s [bash-language-server] node_modules/.pnpm/jsesc@2.5.2/node_modules/jsesc/bin/jsesc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2348. 1736.93 s [bash-language-server] node_modules/.pnpm/@eslint+eslintrc@2.1.4/node_modules/@eslint/eslintrc/node_modules/.bin/js-yaml: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2349. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+helper-compilation-targets@7.22.6_@babel+core@7.22.6/node_modules/@babel/helper-compilation-targets/node_modules/.bin/browserslist: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2350. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+helper-compilation-targets@7.22.6_@babel+core@7.22.6/node_modules/@babel/helper-compilation-targets/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2351. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+parser@7.22.6/node_modules/@babel/parser/bin/babel-parser.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2352. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+traverse@7.23.2/node_modules/@babel/traverse/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2353. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+type-utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/type-utils/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2354. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+type-utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/type-utils/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2355. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+type-utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/type-utils/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2356. 1736.93 s [bash-language-server] node_modules/.pnpm/jest@29.7.0_@types+node@18.19.86/node_modules/jest/bin/jest.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2357. 1736.93 s [bash-language-server] node_modules/.pnpm/jest@29.7.0_@types+node@18.19.86/node_modules/jest/node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2358. 1736.93 s [bash-language-server] node_modules/.pnpm/jest@29.7.0_@types+node@18.19.86/node_modules/jest/node_modules/.bin/import-local-fixture: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2359. 1736.93 s [bash-language-server] node_modules/.pnpm/@babel+parser@7.23.0/node_modules/@babel/parser/bin/babel-parser.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2360. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+parser@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/parser/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2361. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+parser@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/parser/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2362. 1736.93 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+parser@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/parser/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2363. 1736.93 s [bash-language-server] node_modules/.pnpm/jest-resolve@29.7.0/node_modules/jest-resolve/node_modules/.bin/resolve: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2364. 1736.93 s [bash-language-server] node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.9.0/node_modules/acorn-jsx/node_modules/.bin/acorn: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2365. 1736.93 s [bash-language-server] node_modules/.pnpm/@nicolo-ribaudo+semver-v6@6.3.3/node_modules/@nicolo-ribaudo/semver-v6/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2366. 1736.93 s [bash-language-server] node_modules/.pnpm/browserslist@4.21.9/node_modules/browserslist/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2367. 1736.93 s [bash-language-server] node_modules/.pnpm/browserslist@4.21.9/node_modules/browserslist/node_modules/.bin/update-browserslist-db: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2368. 1736.93 s [bash-language-server] node_modules/.pnpm/prettier@2.8.8/node_modules/prettier/bin-prettier.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2369. 1736.93 s [bash-language-server] node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2370. 1736.93 s [bash-language-server] node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2371. 1736.93 s [bash-language-server] node_modules/.pnpm/editorconfig@2.0.1/node_modules/editorconfig/bin/editorconfig: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2372. 1736.93 s [bash-language-server] node_modules/.pnpm/editorconfig@2.0.1/node_modules/editorconfig/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2373. 1736.93 s [bash-language-server] node_modules/.pnpm/import-local@3.1.0/node_modules/import-local/fixtures/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2374. 1736.93 s [bash-language-server] node_modules/.pnpm/eslint-plugin-sort-class-members@1.21.0_eslint@8.57.1/node_modules/eslint-plugin-sort-class-members/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2375. 1736.93 s [bash-language-server] node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2376. 1736.93 s [bash-language-server] node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml/node_modules/.bin/esvalidate: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2377. 1736.95 s [bash-language-server] node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml/node_modules/.bin/esparse: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2378. 1736.96 s [bash-language-server] node_modules/.pnpm/eslint-plugin-simple-import-sort@12.1.1_eslint@8.57.1/node_modules/eslint-plugin-simple-import-sort/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2379. 1736.97 s [bash-language-server] node_modules/.pnpm/create-jest@29.7.0_@types+node@18.19.86/node_modules/create-jest/bin/create-jest.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2380. 1736.98 s [bash-language-server] node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2381. 1736.99 s [bash-language-server] node_modules/.pnpm/acorn@8.9.0/node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2382. 1737.00 s [bash-language-server] node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.19.86/node_modules/jest-cli/bin/jest.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2383. 1737.01 s [bash-language-server] node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.19.86/node_modules/jest-cli/node_modules/.bin/create-jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2384. 1737.02 s [bash-language-server] node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.19.86/node_modules/jest-cli/node_modules/.bin/import-local-fixture: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2385. 1737.03 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.6.3/node_modules/@typescript-eslint/typescript-estree/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2386. 1737.04 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.6.3/node_modules/@typescript-eslint/typescript-estree/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2387. 1737.05 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.6.3/node_modules/@typescript-eslint/typescript-estree/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2388. 1737.06 s [bash-language-server] node_modules/.pnpm/update-browserslist-db@1.0.11_browserslist@4.21.9/node_modules/update-browserslist-db/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2389. 1737.07 s [bash-language-server] node_modules/.pnpm/update-browserslist-db@1.0.11_browserslist@4.21.9/node_modules/update-browserslist-db/node_modules/.bin/browserslist: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2390. 1737.08 s [bash-language-server] node_modules/.pnpm/@babel+template@7.22.5/node_modules/@babel/template/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2391. 1737.09 s [bash-language-server] node_modules/.pnpm/semver@7.7.1/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2392. 1737.10 s [bash-language-server] node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/node_modules/.bin/node-which: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2393. 1737.12 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+parser@7.18.0_eslint@8.57.1__e6014347be2ddc1aabad24015a3e65d1/node_modules/@typescript-eslint/eslint-plugin/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2394. 1737.13 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+parser@7.18.0_eslint@8.57.1__e6014347be2ddc1aabad24015a3e65d1/node_modules/@typescript-eslint/eslint-plugin/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2395. 1737.14 s [bash-language-server] node_modules/.pnpm/@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+parser@7.18.0_eslint@8.57.1__e6014347be2ddc1aabad24015a3e65d1/node_modules/@typescript-eslint/eslint-plugin/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2396. 1737.15 s [bash-language-server] node_modules/.pnpm/exit@0.1.2/node_modules/exit/test/fixtures/create-files.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/bash"
  2397. 1737.16 s [bash-language-server] node_modules/.pnpm/which@2.0.2/node_modules/which/bin/node-which: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2398. 1737.17 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/qbj1w0y8ilv183jhdv2ws6dfhzph680p-nodejs-22.22.2/bin/node"
  2399. 1737.18 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/ejs: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2400. 1737.19 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2401. 1737.20 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2402. 1737.22 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2403. 1737.23 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2404. 1737.24 s [bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/json5: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2405. 1737.25 s [bash-language-server] node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@8.57.1/node_modules/@eslint-community/eslint-utils/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2406. 1737.26 s [bash-language-server] node_modules/.pnpm/jest-snapshot@29.7.0/node_modules/jest-snapshot/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2407. 1737.27 s [bash-language-server] Finished pnpmConfigHook
  2408. 1737.27 s [bash-language-server] Phase: buildPhase
  2409. 1737.56 s [bash-language-server]
  2410. 1737.56 s [bash-language-server] > @ compile /build/source
  2411. 1737.56 s [bash-language-server] > tsc -b server
  2412. 1737.56 s [bash-language-server]
  2413. 1739.49 s [bash-language-server] Phase: installPhase
  2414. 1739.86 s [bash-language-server] Lockfile is up to date, resolution step is skipped
  2415. 1739.89 s [bash-language-server] Already up to date
  2416. 1740.16 s [bash-language-server]
  2417. 1740.16 s [bash-language-server] devDependencies:
  2418. 1740.16 s [bash-language-server] - @types/jest 29.5.14
  2419. 1740.16 s [bash-language-server] - @types/node 18.19.86
  2420. 1740.16 s [bash-language-server] - @typescript-eslint/eslint-plugin 7.18.0
  2421. 1740.16 s [bash-language-server] - @typescript-eslint/parser 7.18.0
  2422. 1740.16 s [bash-language-server] - cross-spawn 7.0.6
  2423. 1740.16 s [bash-language-server] - eslint 8.57.1
  2424. 1740.16 s [bash-language-server] - eslint-config-prettier 9.1.0
  2425. 1740.16 s [bash-language-server] - eslint-plugin-jest 28.11.0
  2426. 1740.16 s [bash-language-server] - eslint-plugin-prettier 4.2.1
  2427. 1740.16 s [bash-language-server] - eslint-plugin-simple-import-sort 12.1.1
  2428. 1740.16 s [bash-language-server] - eslint-plugin-sort-class-members 1.21.0
  2429. 1740.16 s [bash-language-server] - jest 29.7.0
  2430. 1740.16 s [bash-language-server] - prettier 2.8.8
  2431. 1740.16 s [bash-language-server] - ts-jest 29.3.2
  2432. 1740.16 s [bash-language-server] - typescript 5.6.3
  2433. 1740.16 s [bash-language-server] - vscode-languageserver 8.0.2
  2434. 1740.16 s [bash-language-server] - vscode-languageserver-textdocument 1.0.12
  2435. 1740.16 s [bash-language-server]
  2436. 1740.37 s [bash-language-server] Phase: fixupPhase
  2437. 1740.39 s [bash-language-server] shrinking RPATHs of ELF executables and libraries in /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0
  2438. 1740.39 s [bash-language-server] shrinking /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0/bin/bash-language-server
  2439. 1740.50 s [bash-language-server] checking for references to /build/ in /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0...
  2440. 1740.65 s [bash-language-server] patching script interpreter paths in /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0
  2441. 1740.66 s [bash-language-server] /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0/lib/bash-language-server/server/node_modules/.bin/installServerIntoExtension: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2442. 1740.67 s [bash-language-server] /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0/lib/bash-language-server/server/node_modules/.bin/editorconfig: interpreter directive changed from "#!/bin/sh" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/sh"
  2443. 1740.68 s [bash-language-server] /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0/lib/bash-language-server/server/src/get-options.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/3hgg7pr65imdrifqqh3flg3arvkc2r22-bash-5.3p3/bin/bash"
  2444. 1741.12 s [bash-language-server] Phase: installCheckPhase
  2445. 1741.13 s [bash-language-server] Executing versionCheckPhase
  2446. 1741.35 s [bash-language-server] Did not find version 5.6.0 in the output of the command /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0/bin/bash-language-server --help
  2447. 1741.35 s [bash-language-server] Usage:
  2448. 1741.35 s [bash-language-server] bash-language-server start Start listening on stdin/stdout
  2449. 1741.35 s [bash-language-server] bash-language-server -h, --help Display this help and exit
  2450. 1741.35 s [bash-language-server] bash-language-server -v, --version Print the version and exit
  2451. 1741.35 s [bash-language-server]
  2452. 1741.35 s [bash-language-server] Environment variables:
  2453. 1741.35 s [bash-language-server] BASH_IDE_LOG_LEVEL Set the log level (default: info)
  2454. 1741.35 s [bash-language-server]
  2455. 1741.35 s [bash-language-server] Further documentation: https://github.com/bash-lsp/bash-language-server
  2456. 1741.35 s [bash-language-server] (node:1257) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
  2457. 1741.35 s [bash-language-server] (Use `bash-language-server --trace-deprecation ...` to show where the warning was created)
  2458. 1741.53 s [bash-language-server] Successfully managed to find version 5.6.0 in the output of the command /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0/bin/bash-language-server --version
  2459. 1741.53 s [bash-language-server] 5.6.0
  2460. 1741.53 s [bash-language-server] (node:1268) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
  2461. 1741.53 s [bash-language-server] (Use `bash-language-server --trace-deprecation ...` to show where the warning was created)
  2462. 1741.53 s [bash-language-server] Finished versionCheckPhase
  2463. 1741.53 s [bash-language-server] no Makefile or custom installCheckPhase, doing nothing
  2464. 1741.97 s [bash-language-server:post-build] Uploading to cachix cache "sellout": /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0
  2465. 1742.42 s [bash-language-server:post-build] Nothing to push - all store paths are already on Cachix.
  2466. 1742.45 s [bash-language-server:post-build] Uploading to the NixCI cache: /nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0
  2467. 1742.51 s [bash-language-server:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2468. 1742.53 s [bash-language-server:post-build] copying 1 paths...
  2469. 1742.53 s [bash-language-server:post-build] copying path '/nix/store/wv7hbfyvnms0157izi6l64dgfrfllqzk-bash-language-server-5.6.0' to 'https://cache.nix-ci.com'...
  2470. 1744.42 s [bash-language-server:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2471. 1744.55 s [bash-language-server:post-build] copying 0 paths...
  2472. 1744.57 s Progress: 50 of 53 built, 375 of 375 downloaded from cache
  2473. 1744.64 s Building /nix/store/zyxicd0liv81yslrfa6dab201msi5mja-project-manager-path-for-duoids.drv
  2474. 1744.74 s [project-manager-path-for-duoids] created 346 symlinks in user environment
  2475. 1744.81 s [project-manager-path-for-duoids:post-build] Uploading to cachix cache "sellout": /nix/store/1drjlq9sq4ss40gjq9fdih54yrj55abx-project-manager-path-for-duoids
  2476. 1745.27 s [project-manager-path-for-duoids:post-build] Nothing to push - all store paths are already on Cachix.
  2477. 1745.29 s [project-manager-path-for-duoids:post-build] Uploading to the NixCI cache: /nix/store/1drjlq9sq4ss40gjq9fdih54yrj55abx-project-manager-path-for-duoids
  2478. 1745.35 s [project-manager-path-for-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2479. 1745.40 s [project-manager-path-for-duoids:post-build] copying 0 paths...
  2480. 1745.47 s [project-manager-path-for-duoids:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2481. 1745.68 s [project-manager-path-for-duoids:post-build] copying 0 paths...
  2482. 1745.72 s Progress: 51 of 53 built, 375 of 375 downloaded from cache
  2483. 1745.83 s Building /nix/store/lzqf1n6pcicir9nw2wd8hbc9s8pywvcb-ghc-shell-for-packages-0.drv
  2484. 1746.86 s [ghc-shell-for-packages:post-build] Uploading to cachix cache "sellout": /nix/store/655wgqsaddnl8vcyrvxcqz4skja3xfq8-ghc-shell-for-packages-0
  2485. 1747.45 s [ghc-shell-for-packages:post-build] Pushing 1 paths (795 are already present) using zstd to cache sellout ⏳
  2486. 1747.45 s [ghc-shell-for-packages:post-build]
  2487. 1747.78 s [ghc-shell-for-packages:post-build] Pushing /nix/store/655wgqsaddnl8vcyrvxcqz4skja3xfq8-ghc-shell-for-packages-0 (336.00 B)
  2488. 1748.57 s [ghc-shell-for-packages:post-build]
  2489. 1748.57 s [ghc-shell-for-packages:post-build] All done.
  2490. 1748.59 s [ghc-shell-for-packages:post-build] Uploading to the NixCI cache: /nix/store/655wgqsaddnl8vcyrvxcqz4skja3xfq8-ghc-shell-for-packages-0
  2491. 1748.64 s [ghc-shell-for-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2492. 1748.70 s [ghc-shell-for-packages:post-build] copying 1 paths...
  2493. 1748.70 s [ghc-shell-for-packages:post-build] copying path '/nix/store/655wgqsaddnl8vcyrvxcqz4skja3xfq8-ghc-shell-for-packages-0' to 'https://cache.nix-ci.com'...
  2494. 1748.91 s [ghc-shell-for-packages:post-build] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2495. 1749.23 s [ghc-shell-for-packages:post-build] copying 1 paths...
  2496. 1749.23 s [ghc-shell-for-packages:post-build] copying path '/nix/store/lzqf1n6pcicir9nw2wd8hbc9s8pywvcb-ghc-shell-for-packages-0.drv' to 'https://cache.nix-ci.com'...
  2497. 1749.42 s Progress: 52 of 53 built, 375 of 375 downloaded from cache
  2498. 1749.43 s Progress: 53 of 53 built, 375 of 375 downloaded from cache
  2499. 1749.43 s /nix/store/655wgqsaddnl8vcyrvxcqz4skja3xfq8-ghc-shell-for-packages-0
  2500. 1749.52 s Build succeeded.