build devShells.x86_64-linux.ghc9103

Reproduce this run
  1. 1174.53 s [algebraic-graphs] ============ Symmetric.Relation.induce ============
  2. 1174.53 s [algebraic-graphs] OK: induce (const True ) x == x
  3. 1174.53 s [algebraic-graphs] OK: induce (const False) x == empty
  4. 1174.53 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  5. 1174.53 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  6. 1174.53 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  7. 1174.53 s [algebraic-graphs]
  8. 1174.53 s [algebraic-graphs] ============ Symmetric.Relation.induceJust ============
  9. 1174.53 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  10. 1174.53 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  11. 1174.53 s [algebraic-graphs] OK: induceJust . gmap Just == id
  12. 1174.53 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  13. 1174.53 s [algebraic-graphs]
  14. 1174.53 s [algebraic-graphs] ============ Example.Todo (Holiday) ============
  15. 1174.53 s [algebraic-graphs] OK: A todo list is semantically Maybe [a]
  16. 1174.53 s [algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
  17. 1174.53 s [algebraic-graphs] OK: The connect operator (*) adds dependency between items
  18. 1174.53 s [algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
  19. 1174.53 s [algebraic-graphs] OK: Introduce item priority to schedule the todo list
  20. 1174.53 s [algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
  21. 1174.53 s [algebraic-graphs]
  22. 1174.53 s [algebraic-graphs] ============ Example.Todo (Commandline) ============
  23. 1174.53 s [algebraic-graphs] OK: The pull connect operator maintains command line semantics
  24. 1174.53 s [algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
  25. 1174.53 s [algebraic-graphs] OK: The usual connect operator breaks semantics
  26. 1174.53 s [algebraic-graphs] OK: Transform command lines by adding optimisation flag
  27. 1174.53 s [algebraic-graphs]
  28. 1174.53 s [algebraic-graphs] ============ Typed ============
  29. 1174.53 s [algebraic-graphs]
  30. 1174.53 s [algebraic-graphs] ============ Typed.fromAdjacencyMap ============
  31. 1174.53 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
  32. 1174.53 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
  33. 1174.53 s [algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
  34. 1174.53 s [algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
  35. 1174.53 s [algebraic-graphs]
  36. 1174.53 s [algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
  37. 1174.53 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
  38. 1174.53 s [algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
  39. 1174.53 s [algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
  40. 1174.53 s [algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
  41. 1174.53 s [algebraic-graphs]
  42. 1174.53 s [algebraic-graphs] ============ Typed.dfsForest ============
  43. 1174.53 s [algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
  44. 1174.53 s [algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
  45. 1174.53 s [haskell-language-server] Preprocessing library 'ghcide-bench-lib' for haskell-language-server-2.12.0.0...
  46. 1174.53 s [haskell-language-server] Building library 'ghcide-bench-lib' for haskell-language-server-2.12.0.0...
  47. 1174.53 s [haskell-language-server] [1 of 2] Compiling Experiments.Types ( ghcide-bench/src/Experiments/Types.hs, dist/build/ghcide-bench-lib/Experiments/Types.o, dist/build/ghcide-bench-lib/Experiments/Types.dyn_o )
  48. 1174.53 s [haskell-language-server] [2 of 2] Compiling Experiments ( ghcide-bench/src/Experiments.hs, dist/build/ghcide-bench-lib/Experiments.o, dist/build/ghcide-bench-lib/Experiments.dyn_o )
  49. 1174.53 s [haskell-language-server] ghcide-bench/src/Experiments.hs:345:1: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  50. 1174.53 s [haskell-language-server] Pattern match(es) are non-exhaustive
  51. 1174.53 s [haskell-language-server] In a pattern binding:
  52. 1174.53 s [haskell-language-server] Patterns of type ‘ParserResult Config’ not matched:
  53. 1174.53 s [haskell-language-server] Failure _
  54. 1174.53 s [haskell-language-server] CompletionInvoked _
  55. 1174.53 s [haskell-language-server] |
  56. 1174.53 s [haskell-language-server] 345 | Success defConfig = execParserPure defaultPrefs (info configP fullDesc) []
  57. 1174.53 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  58. 1174.53 s [haskell-language-server]
  59. 1174.53 s [haskell-language-server] ghcide-bench/src/Experiments.hs:453:42: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  60. 1174.53 s [haskell-language-server] Pattern match(es) are non-exhaustive
  61. 1174.53 s [haskell-language-server] In a lambda abstraction:
  62. 1174.53 s [haskell-language-server] Patterns of type ‘Maybe Handle’, ‘Maybe Handle’, ‘Maybe Handle’,
  63. 1174.53 s [haskell-language-server] ‘ProcessHandle’ not matched:
  64. 1174.53 s [haskell-language-server] Nothing _ _ _
  65. 1174.53 s [haskell-language-server] (Just _) Nothing _ _
  66. 1174.53 s [haskell-language-server] (Just _) (Just _) Nothing _
  67. 1174.53 s [haskell-language-server] |
  68. 1174.53 s [haskell-language-server] 453 | run sess = withCreateProcess p $ \(Just inH) (Just outH) (Just errH) pH -> do
  69. 1174.53 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  70. 1174.53 s [haskell-language-server]
  71. 1174.53 s [haskell-language-server] ghcide-bench/src/Experiments.hs:630:37: warning: [GHC-63394] [-Wx-partial]
  72. 1174.53 s [haskell-language-server] In the use of ‘head’
  73. 1174.53 s [haskell-language-server] (imported from Data.List, but defined in GHC.Internal.List):
  74. 1174.53 s [haskell-language-server] "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"."
  75. 1174.53 s [haskell-language-server] |
  76. 1174.53 s [haskell-language-server] 630 | let DocumentPositions{..} = head docs
  77. 1174.53 s [haskell-language-server] | ^^^^
  78. 1174.53 s [haskell-language-server]
  79. 1174.53 s [haskell-language-server] [1 of 2] Compiling Experiments.Types ( ghcide-bench/src/Experiments/Types.hs, dist/build/ghcide-bench-lib/Experiments/Types.p_o )
  80. 1174.53 s [haskell-language-server] [2 of 2] Compiling Experiments ( ghcide-bench/src/Experiments.hs, dist/build/ghcide-bench-lib/Experiments.p_o )
  81. 1174.53 s [haskell-language-server] ghcide-bench/src/Experiments.hs:345:1: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  82. 1174.53 s [haskell-language-server] Pattern match(es) are non-exhaustive
  83. 1174.53 s [haskell-language-server] In a pattern binding:
  84. 1174.53 s [haskell-language-server] Patterns of type ‘ParserResult Config’ not matched:
  85. 1174.53 s [haskell-language-server] Failure _
  86. 1174.53 s [haskell-language-server] CompletionInvoked _
  87. 1174.53 s [haskell-language-server] |
  88. 1174.53 s [haskell-language-server] 345 | Success defConfig = execParserPure defaultPrefs (info configP fullDesc) []
  89. 1174.53 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  90. 1174.53 s [haskell-language-server]
  91. 1174.53 s [haskell-language-server] ghcide-bench/src/Experiments.hs:453:42: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  92. 1174.53 s [haskell-language-server] Pattern match(es) are non-exhaustive
  93. 1174.53 s [haskell-language-server] In a lambda abstraction:
  94. 1174.53 s [haskell-language-server] Patterns of type ‘Maybe Handle’, ‘Maybe Handle’, ‘Maybe Handle’,
  95. 1174.53 s [haskell-language-server] ‘ProcessHandle’ not matched:
  96. 1174.53 s [haskell-language-server] Nothing _ _ _
  97. 1174.53 s [haskell-language-server] (Just _) Nothing _ _
  98. 1174.53 s [algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
  99. 1174.53 s [algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
  100. 1174.53 s [algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
  101. 1174.53 s [algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
  102. 1174.53 s [algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
  103. 1174.53 s [algebraic-graphs]
  104. 1174.53 s [algebraic-graphs] ============ Typed.dfsForestFrom ============
  105. 1174.53 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
  106. 1174.53 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
  107. 1174.53 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
  108. 1174.53 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
  109. 1174.53 s [algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
  110. 1174.53 s [algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
  111. 1174.53 s [algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
  112. 1174.53 s [algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
  113. 1174.53 s [algebraic-graphs] OK: dfsForestFrom % x $ [] == []
  114. 1174.53 s [algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
  115. 1174.53 s [algebraic-graphs]
  116. 1174.53 s [algebraic-graphs] ============ Typed.dfs ============
  117. 1174.53 s [algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
  118. 1174.53 s [algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
  119. 1174.53 s [algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
  120. 1174.53 s [algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
  121. 1174.53 s [algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
  122. 1174.53 s [algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
  123. 1174.53 s [algebraic-graphs] OK: dfs % x $ [] == []
  124. 1174.53 s [algebraic-graphs]
  125. 1174.53 s [algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
  126. 1174.53 s [algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
  127. 1174.53 s [algebraic-graphs]
  128. 1174.53 s [algebraic-graphs] ============ Typed.topSort ============
  129. 1174.53 s [algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
  130. 1174.53 s [algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
  131. 1174.53 s [algebraic-graphs]
  132. 1174.53 s [algebraic-graphs] ============ Graph.Undirected ============
  133. 1174.53 s [algebraic-graphs] OK: Axioms of undirected graphs
  134. 1174.53 s [algebraic-graphs]
  135. 1174.53 s [algebraic-graphs] ============ Graph.Undirected.Show ============
  136. 1174.53 s [algebraic-graphs] OK: show (empty ) == "empty"
  137. 1174.53 s [algebraic-graphs] OK: show (1 ) == "vertex 1"
  138. 1174.53 s [algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
  139. 1174.53 s [algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
  140. 1174.53 s [algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
  141. 1174.53 s [algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
  142. 1174.53 s [algebraic-graphs]
  143. 1174.53 s [algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
  144. 1174.53 s [algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
  145. 1174.53 s [algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
  146. 1174.53 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
  147. 1174.53 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
  148. 1174.53 s [algebraic-graphs]
  149. 1174.53 s [algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
  150. 1174.53 s [algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
  151. 1174.53 s [algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
  152. 1174.53 s [algebraic-graphs]
  153. 1174.53 s [algebraic-graphs] ============ Graph.Undirected.toUndirected ============
  154. 1174.53 s [algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
  155. 1174.53 s [algebraic-graphs] OK: toUndirected . fromUndirected == id
  156. 1174.53 s [algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
  157. 1174.53 s [algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
  158. 1174.53 s [algebraic-graphs]
  159. 1174.53 s [algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
  160. 1174.53 s [algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
  161. 1174.53 s [algebraic-graphs] OK: toUndirected . fromUndirected == id
  162. 1174.53 s [algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
  163. 1174.53 s [algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
  164. 1174.53 s [algebraic-graphs]
  165. 1174.53 s [algebraic-graphs] ============ Graph.Undirected.complement ================
  166. 1174.53 s [algebraic-graphs] OK: complement empty == empty
  167. 1174.53 s [algebraic-graphs] OK: complement (vertex x) == vertex x
  168. 1174.53 s [algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
  169. 1174.53 s [algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
  170. 1174.53 s [algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
  171. 1174.53 s [algebraic-graphs] OK: complement . complement == id
  172. 1174.53 s [algebraic-graphs]
  173. 1174.53 s [algebraic-graphs] ============ Graph.Undirected.Ord ============
  174. 1174.53 s [algebraic-graphs] OK: vertex 1 < vertex 2
  175. 1174.53 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  176. 1174.53 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  177. 1174.53 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  178. 1174.54 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  179. 1174.54 s [algebraic-graphs] OK: edge 2 1 < edge 1 3
  180. 1174.54 s [algebraic-graphs] OK: edge 1 2 == edge 2 1
  181. 1174.54 s [algebraic-graphs] OK: x <= x + y
  182. 1174.54 s [algebraic-graphs] OK: x + y <= x * y
  183. 1174.54 s [algebraic-graphs]
  184. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.empty ============
  185. 1174.54 s [algebraic-graphs] OK: isEmpty empty == True
  186. 1174.54 s [algebraic-graphs] OK: hasVertex x empty == False
  187. 1174.54 s [algebraic-graphs] OK: vertexCount empty == 0
  188. 1174.54 s [algebraic-graphs] OK: edgeCount empty == 0
  189. 1174.54 s [algebraic-graphs]
  190. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.vertex ============
  191. 1174.54 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  192. 1174.54 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  193. 1174.54 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  194. 1174.54 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  195. 1174.54 s [algebraic-graphs]
  196. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.edge ============
  197. 1174.54 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  198. 1174.54 s [algebraic-graphs] OK: edge x y == edge y x
  199. 1174.54 s [haskell-language-server] (Just _) (Just _) Nothing _
  200. 1174.54 s [haskell-language-server] |
  201. 1174.54 s [haskell-language-server] 453 | run sess = withCreateProcess p $ \(Just inH) (Just outH) (Just errH) pH -> do
  202. 1174.54 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  203. 1174.54 s [haskell-language-server]
  204. 1174.54 s [haskell-language-server] ghcide-bench/src/Experiments.hs:630:37: warning: [GHC-63394] [-Wx-partial]
  205. 1174.54 s [haskell-language-server] In the use of ‘head’
  206. 1174.54 s [haskell-language-server] (imported from Data.List, but defined in GHC.Internal.List):
  207. 1174.54 s [haskell-language-server] "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"."
  208. 1174.54 s [haskell-language-server] |
  209. 1174.54 s [haskell-language-server] 630 | let DocumentPositions{..} = head docs
  210. 1174.54 s [haskell-language-server] | ^^^^
  211. 1174.54 s [haskell-language-server]
  212. 1174.54 s [haskell-language-server] Preprocessing library 'hls-stylish-haskell-plugin' for haskell-language-server-2.12.0.0...
  213. 1174.54 s [haskell-language-server] Building library 'hls-stylish-haskell-plugin' for haskell-language-server-2.12.0.0...
  214. 1174.54 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 )
  215. 1174.54 s [haskell-language-server] plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs:28:1: warning: [GHC-66111] [-Wunused-imports]
  216. 1174.54 s [haskell-language-server] The import of ‘System.Directory’ is redundant
  217. 1174.54 s [haskell-language-server] except perhaps to import instances from ‘System.Directory’
  218. 1174.54 s [haskell-language-server] To import instances alone, use: import System.Directory()
  219. 1174.54 s [haskell-language-server] |
  220. 1174.54 s [haskell-language-server] 28 | import System.Directory
  221. 1174.54 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  222. 1174.54 s [haskell-language-server]
  223. 1174.54 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 )
  224. 1174.54 s [haskell-language-server] plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs:28:1: warning: [GHC-66111] [-Wunused-imports]
  225. 1174.54 s [haskell-language-server] The import of ‘System.Directory’ is redundant
  226. 1174.54 s [haskell-language-server] except perhaps to import instances from ‘System.Directory’
  227. 1174.54 s [haskell-language-server] To import instances alone, use: import System.Directory()
  228. 1174.54 s [haskell-language-server] |
  229. 1174.54 s [haskell-language-server] 28 | import System.Directory
  230. 1174.54 s [haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  231. 1174.54 s [haskell-language-server]
  232. 1174.54 s [haskell-language-server] Preprocessing library 'hls-eval-plugin' for haskell-language-server-2.12.0.0...
  233. 1174.54 s [haskell-language-server] Building library 'hls-eval-plugin' for haskell-language-server-2.12.0.0...
  234. 1174.54 s [haskell-language-server] [ 1 of 10] Compiling Ide.Plugin.Eval.Config ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Config.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Config.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Config.dyn_o )
  235. 1174.54 s [haskell-language-server] [ 2 of 10] Compiling Ide.Plugin.Eval.Parse.Option ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Option.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Option.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Option.dyn_o )
  236. 1174.54 s [haskell-language-server] [ 3 of 10] Compiling Ide.Plugin.Eval.Util ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Util.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Util.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Util.dyn_o )
  237. 1174.54 s [haskell-language-server] [ 4 of 10] Compiling Ide.Plugin.Eval.GHC ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/GHC.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/GHC.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/GHC.dyn_o )
  238. 1174.54 s [haskell-language-server] [ 5 of 10] Compiling Ide.Plugin.Eval.Types ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Types.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Types.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Types.dyn_o )
  239. 1174.54 s [algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
  240. 1174.54 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  241. 1174.54 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  242. 1174.54 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  243. 1174.54 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  244. 1174.54 s [algebraic-graphs]
  245. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.overlay ============
  246. 1174.54 s [algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
  247. 1174.54 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  248. 1174.54 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  249. 1174.54 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  250. 1174.54 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  251. 1174.54 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  252. 1174.54 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  253. 1174.54 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  254. 1174.54 s [algebraic-graphs]
  255. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.connect ============
  256. 1174.54 s [algebraic-graphs] OK: connect x y == connect y x
  257. 1174.54 s [algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
  258. 1174.54 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  259. 1174.54 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  260. 1174.54 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  261. 1174.54 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  262. 1174.54 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  263. 1174.54 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
  264. 1174.54 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  265. 1174.54 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  266. 1174.54 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  267. 1174.54 s [algebraic-graphs]
  268. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.vertices ============
  269. 1174.54 s [algebraic-graphs] OK: vertices [] == empty
  270. 1174.54 s [algebraic-graphs] OK: vertices [x] == vertex x
  271. 1174.54 s [algebraic-graphs] OK: vertices == overlays . map vertex
  272. 1174.54 s [algebraic-graphs] OK: hasVertex x . vertices == elem x
  273. 1174.54 s [algebraic-graphs] OK: vertexCount . vertices == length . nub
  274. 1174.54 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  275. 1174.54 s [algebraic-graphs]
  276. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.edges ============
  277. 1174.54 s [algebraic-graphs] OK: edges [] == empty
  278. 1174.54 s [algebraic-graphs] OK: edges [(x,y)] == edge x y
  279. 1174.54 s [algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
  280. 1174.54 s [algebraic-graphs]
  281. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.overlays ============
  282. 1174.54 s [algebraic-graphs] OK: overlays [] == empty
  283. 1174.54 s [algebraic-graphs] OK: overlays [x] == x
  284. 1174.54 s [algebraic-graphs] OK: overlays [x,y] == overlay x y
  285. 1174.54 s [algebraic-graphs] OK: overlays == foldr overlay empty
  286. 1174.54 s [algebraic-graphs] OK: isEmpty . overlays == all isEmpty
  287. 1174.54 s [algebraic-graphs]
  288. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.connects ============
  289. 1174.54 s [algebraic-graphs] OK: connects [] == empty
  290. 1174.54 s [algebraic-graphs] OK: connects [x] == x
  291. 1174.54 s [algebraic-graphs] OK: connects [x,y] == connect x y
  292. 1174.54 s [algebraic-graphs] OK: connects == foldr connect empty
  293. 1174.54 s [algebraic-graphs] OK: isEmpty . connects == all isEmpty
  294. 1174.54 s [algebraic-graphs] OK: connects == connects . reverse
  295. 1174.54 s [algebraic-graphs]
  296. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
  297. 1174.54 s [algebraic-graphs] OK: isSubgraphOf empty x == True
  298. 1174.54 s [algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
  299. 1174.54 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  300. 1174.54 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  301. 1174.54 s [algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
  302. 1174.54 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  303. 1174.54 s [algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
  304. 1174.54 s [algebraic-graphs]
  305. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.path ============
  306. 1174.54 s [algebraic-graphs] OK: path [] == empty
  307. 1174.54 s [algebraic-graphs] OK: path [x] == vertex x
  308. 1174.54 s [algebraic-graphs] OK: path [x,y] == edge x y
  309. 1174.54 s [algebraic-graphs] OK: path == path . reverse
  310. 1174.54 s [algebraic-graphs]
  311. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.circuit ============
  312. 1174.54 s [algebraic-graphs] OK: circuit [] == empty
  313. 1174.54 s [algebraic-graphs] OK: circuit [x] == edge x x
  314. 1174.54 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  315. 1174.54 s [algebraic-graphs] OK: circuit == circuit . reverse
  316. 1174.54 s [algebraic-graphs]
  317. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.clique ============
  318. 1174.54 s [algebraic-graphs] OK: clique [] == empty
  319. 1174.54 s [algebraic-graphs] OK: clique [x] == vertex x
  320. 1174.54 s [algebraic-graphs] OK: clique [x,y] == edge x y
  321. 1174.54 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  322. 1174.54 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  323. 1174.54 s [algebraic-graphs] OK: clique == clique . reverse
  324. 1174.54 s [algebraic-graphs]
  325. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.biclique ============
  326. 1174.54 s [algebraic-graphs] OK: biclique [] [] == empty
  327. 1174.54 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  328. 1174.54 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  329. 1174.54 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  330. 1174.54 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  331. 1174.54 s [algebraic-graphs]
  332. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.star ============
  333. 1174.54 s [algebraic-graphs] OK: star x [] == vertex x
  334. 1174.54 s [algebraic-graphs] OK: star x [y] == edge x y
  335. 1174.54 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  336. 1174.54 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  337. 1174.54 s [algebraic-graphs]
  338. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.stars ============
  339. 1174.54 s [algebraic-graphs] OK: stars [] == empty
  340. 1174.54 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  341. 1174.54 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  342. 1174.54 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  343. 1174.54 s [haskell-language-server] [ 6 of 10] Compiling Ide.Plugin.Eval.Rules ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Rules.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Rules.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Rules.dyn_o )
  344. 1174.54 s [haskell-language-server] [ 7 of 10] Compiling Ide.Plugin.Eval.Parse.Comments ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Comments.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Comments.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Comments.dyn_o )
  345. 1174.54 s [haskell-language-server] [ 8 of 10] Compiling Ide.Plugin.Eval.Code ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Code.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Code.dyn_o )
  346. 1174.54 s [haskell-language-server] plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs:88:18: warning: [GHC-63394] [-Wx-partial]
  347. 1174.54 s [haskell-language-server] In the use of ‘head’
  348. 1174.54 s [haskell-language-server] (imported from Prelude, but defined in GHC.Internal.List):
  349. 1174.54 s [haskell-language-server] "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"."
  350. 1174.54 s [haskell-language-server] |
  351. 1174.54 s [haskell-language-server] 88 | evalPrint <- head <$> runDecls ("evalPrint x = P.writeFile " <> show temp <> " (P.show x)")
  352. 1174.54 s [haskell-language-server] | ^^^^
  353. 1174.54 s [haskell-language-server]
  354. 1174.54 s [haskell-language-server] [ 9 of 10] Compiling Ide.Plugin.Eval.Handlers ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Handlers.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Handlers.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Handlers.dyn_o )
  355. 1174.54 s [haskell-language-server] [10 of 10] Compiling Ide.Plugin.Eval ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval.dyn_o )
  356. 1174.54 s [haskell-language-server] [ 1 of 10] Compiling Ide.Plugin.Eval.Config ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Config.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Config.p_o )
  357. 1174.54 s [haskell-language-server] [ 2 of 10] Compiling Ide.Plugin.Eval.Parse.Option ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Option.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Option.p_o )
  358. 1174.54 s [haskell-language-server] [ 3 of 10] Compiling Ide.Plugin.Eval.Util ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Util.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Util.p_o )
  359. 1174.54 s [haskell-language-server] [ 4 of 10] Compiling Ide.Plugin.Eval.GHC ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/GHC.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/GHC.p_o )
  360. 1174.54 s [haskell-language-server] [ 5 of 10] Compiling Ide.Plugin.Eval.Types ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Types.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Types.p_o )
  361. 1174.54 s [haskell-language-server] [ 6 of 10] Compiling Ide.Plugin.Eval.Rules ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Rules.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Rules.p_o )
  362. 1174.54 s [haskell-language-server] [ 7 of 10] Compiling Ide.Plugin.Eval.Parse.Comments ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Comments.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Comments.p_o )
  363. 1174.54 s [haskell-language-server] [ 8 of 10] Compiling Ide.Plugin.Eval.Code ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Code.p_o )
  364. 1174.54 s [haskell-language-server] plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs:88:18: warning: [GHC-63394] [-Wx-partial]
  365. 1174.54 s [haskell-language-server] In the use of ‘head’
  366. 1174.54 s [haskell-language-server] (imported from Prelude, but defined in GHC.Internal.List):
  367. 1174.54 s [haskell-language-server] "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"."
  368. 1174.54 s [haskell-language-server] |
  369. 1174.54 s [haskell-language-server] 88 | evalPrint <- head <$> runDecls ("evalPrint x = P.writeFile " <> show temp <> " (P.show x)")
  370. 1174.54 s [haskell-language-server] | ^^^^
  371. 1174.54 s [haskell-language-server]
  372. 1174.54 s [haskell-language-server] [ 9 of 10] Compiling Ide.Plugin.Eval.Handlers ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Handlers.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Handlers.p_o )
  373. 1174.54 s [haskell-language-server] [10 of 10] Compiling Ide.Plugin.Eval ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval.p_o )
  374. 1174.54 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  375. 1174.54 s [algebraic-graphs] OK: stars . adjacencyList == id
  376. 1174.54 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  377. 1174.54 s [algebraic-graphs]
  378. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.tree ============
  379. 1174.54 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  380. 1174.54 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  381. 1174.54 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  382. 1174.54 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  383. 1174.54 s [algebraic-graphs]
  384. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.forest ============
  385. 1174.54 s [algebraic-graphs] OK: forest [] == empty
  386. 1174.54 s [algebraic-graphs] OK: forest [x] == tree x
  387. 1174.54 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  388. 1174.54 s [algebraic-graphs] OK: forest == overlays . map tree
  389. 1174.54 s [algebraic-graphs]
  390. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.removeVertex ============
  391. 1174.54 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  392. 1174.54 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  393. 1174.54 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  394. 1174.54 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  395. 1174.54 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  396. 1174.54 s [algebraic-graphs]
  397. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.removeEdge ============
  398. 1174.54 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  399. 1174.54 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  400. 1174.54 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  401. 1174.54 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  402. 1174.54 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  403. 1174.54 s [algebraic-graphs] OK: removeEdge x y == removeEdge y x
  404. 1174.54 s [algebraic-graphs]
  405. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
  406. 1174.54 s [algebraic-graphs] OK: replaceVertex x x == id
  407. 1174.54 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  408. 1174.54 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  409. 1174.54 s [algebraic-graphs]
  410. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
  411. 1174.54 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  412. 1174.54 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  413. 1174.54 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  414. 1174.54 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  415. 1174.54 s [algebraic-graphs]
  416. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.gmap ============
  417. 1174.54 s [algebraic-graphs] OK: gmap f empty == empty
  418. 1174.54 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  419. 1174.54 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  420. 1174.54 s [algebraic-graphs] OK: gmap id == id
  421. 1174.54 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  422. 1174.54 s [algebraic-graphs]
  423. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.induce ============
  424. 1174.54 s [algebraic-graphs] OK: induce (const True ) x == x
  425. 1174.54 s [algebraic-graphs] OK: induce (const False) x == empty
  426. 1174.54 s [algebraic-graphs] OK: induce (/= x) == removeVertex x
  427. 1174.54 s [algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
  428. 1174.54 s [algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
  429. 1174.54 s [algebraic-graphs]
  430. 1174.54 s [algebraic-graphs] ============ Graph.Undirected.induceJust ============
  431. 1174.54 s [algebraic-graphs] OK: induceJust (vertex Nothing) == empty
  432. 1174.54 s [algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
  433. 1174.54 s [algebraic-graphs] OK: induceJust . gmap Just == id
  434. 1174.54 s [algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
  435. 1174.54 s [algebraic-graphs] Test suite main: PASS
  436. 1174.54 s [algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
  437. 1174.54 s [algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
  438. 1174.54 s [haskell-language-server] Preprocessing library 'hls-gadt-plugin' for haskell-language-server-2.12.0.0...
  439. 1174.54 s [haskell-language-server] Building library 'hls-gadt-plugin' for haskell-language-server-2.12.0.0...
  440. 1174.54 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 )
  441. 1174.54 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 )
  442. 1174.54 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 )
  443. 1174.54 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 )
  444. 1174.54 s [haskell-language-server] Preprocessing library 'hls-cabal-gild-plugin' for haskell-language-server-2.12.0.0...
  445. 1174.54 s [haskell-language-server] Building library 'hls-cabal-gild-plugin' for haskell-language-server-2.12.0.0...
  446. 1174.54 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalGild ( plugins/hls-cabal-gild-plugin/src/Ide/Plugin/CabalGild.hs, dist/build/hls-cabal-gild-plugin/Ide/Plugin/CabalGild.o, dist/build/hls-cabal-gild-plugin/Ide/Plugin/CabalGild.dyn_o )
  447. 1174.54 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalGild ( plugins/hls-cabal-gild-plugin/src/Ide/Plugin/CabalGild.hs, dist/build/hls-cabal-gild-plugin/Ide/Plugin/CabalGild.p_o )
  448. 1174.54 s [haskell-language-server] Preprocessing library 'hls-explicit-record-fields-plugin' for haskell-language-server-2.12.0.0...
  449. 1174.54 s [haskell-language-server] Building library 'hls-explicit-record-fields-plugin' for haskell-language-server-2.12.0.0...
  450. 1174.54 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 )
  451. 1174.54 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 )
  452. 1174.54 s [haskell-language-server] Preprocessing library 'hls-semantic-tokens-plugin' for haskell-language-server-2.12.0.0...
  453. 1174.54 s [haskell-language-server] Building library 'hls-semantic-tokens-plugin' for haskell-language-server-2.12.0.0...
  454. 1174.54 s [haskell-language-server] <no location info>: warning: [GHC-42258] [-Wunused-packages]
  455. 1174.54 s [haskell-language-server] The following packages were specified via -package or -package-id flags,
  456. 1174.54 s [haskell-language-server] but were not needed for compilation:
  457. 1174.54 s [haskell-language-server] - syb-0.7.2.4 (exposed by flag -package-id syb-0.7.2.4-4DQrK89tOsuFUDVxKdoNj)
  458. 1174.54 s [haskell-language-server]
  459. 1174.54 s [haskell-language-server] [1 of 8] Compiling Ide.Plugin.SemanticTokens.Types ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Types.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Types.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Types.dyn_o )
  460. 1174.54 s [haskell-language-server] [2 of 8] Compiling Ide.Plugin.SemanticTokens.Tokenize ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Tokenize.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Tokenize.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Tokenize.dyn_o )
  461. 1174.54 s [haskell-language-server] [3 of 8] Compiling Ide.Plugin.SemanticTokens.SemanticConfig ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/SemanticConfig.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/SemanticConfig.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/SemanticConfig.dyn_o )
  462. 1174.54 s [haskell-language-server] [4 of 8] Compiling Ide.Plugin.SemanticTokens.Utils ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Utils.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Utils.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Utils.dyn_o )
  463. 1174.54 s [haskell-language-server] [5 of 8] Compiling Ide.Plugin.SemanticTokens.Mappings ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Mappings.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Mappings.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Mappings.dyn_o )
  464. 1174.54 s [haskell-language-server] [6 of 8] Compiling Ide.Plugin.SemanticTokens.Query ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Query.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Query.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Query.dyn_o )
  465. 1174.54 s [haskell-language-server] [7 of 8] Compiling Ide.Plugin.SemanticTokens.Internal ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Internal.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Internal.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Internal.dyn_o )
  466. 1174.54 s [haskell-language-server] [8 of 8] Compiling Ide.Plugin.SemanticTokens ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens.dyn_o )
  467. 1174.54 s [haskell-language-server] <no location info>: warning: [GHC-42258] [-Wunused-packages]
  468. 1174.54 s [haskell-language-server] The following packages were specified via -package or -package-id flags,
  469. 1174.54 s [haskell-language-server] but were not needed for compilation:
  470. 1174.54 s [haskell-language-server] - syb-0.7.2.4 (exposed by flag -package-id syb-0.7.2.4-4DQrK89tOsuFUDVxKdoNj)
  471. 1174.54 s [haskell-language-server]
  472. 1174.54 s [haskell-language-server] [1 of 8] Compiling Ide.Plugin.SemanticTokens.Types ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Types.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Types.p_o )
  473. 1174.54 s [haskell-language-server] [2 of 8] Compiling Ide.Plugin.SemanticTokens.Tokenize ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Tokenize.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Tokenize.p_o )
  474. 1174.54 s [haskell-language-server] [3 of 8] Compiling Ide.Plugin.SemanticTokens.SemanticConfig ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/SemanticConfig.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/SemanticConfig.p_o )
  475. 1174.54 s [haskell-language-server] [4 of 8] Compiling Ide.Plugin.SemanticTokens.Utils ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Utils.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Utils.p_o )
  476. 1174.54 s [haskell-language-server] [5 of 8] Compiling Ide.Plugin.SemanticTokens.Mappings ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Mappings.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Mappings.p_o )
  477. 1174.54 s [haskell-language-server] [6 of 8] Compiling Ide.Plugin.SemanticTokens.Query ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Query.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Query.p_o )
  478. 1174.54 s [haskell-language-server] [7 of 8] Compiling Ide.Plugin.SemanticTokens.Internal ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Internal.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Internal.p_o )
  479. 1174.54 s [haskell-language-server] [8 of 8] Compiling Ide.Plugin.SemanticTokens ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens.p_o )
  480. 1174.54 s [algebraic-graphs] checkPhase completed in 4 minutes 4 seconds
  481. 1174.54 s [algebraic-graphs] Phase: haddockPhase
  482. 1174.66 s [algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
  483. 1174.67 s [algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
  484. 1174.86 s [algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing )
  485. 1175.13 s [pandoc-lua-engine] Phase: setupCompilerEnvironmentPhase
  486. 1175.13 s [pandoc-lua-engine] Build with /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3.
  487. 1175.23 s [algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing )
  488. 1175.25 s [pandoc-server] Phase: setupCompilerEnvironmentPhase
  489. 1175.25 s [pandoc-server] Build with /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3.
  490. 1175.32 s [algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing )
  491. 1175.45 s [algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing )
  492. 1175.48 s [algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing )
  493. 1175.64 s [algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing )
  494. 1175.76 s [pandoc-lua-engine] Phase: unpackPhase
  495. 1175.76 s [pandoc-lua-engine] unpacking source archive /nix/store/zx6z7rsf1lwrwkbcq94jg1dgi1fp9jls-pandoc-lua-engine-0.4.3.tar.gz
  496. 1175.77 s [pandoc-lua-engine] source root is pandoc-lua-engine-0.4.3
  497. 1175.77 s [algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing )
  498. 1175.78 s [pandoc-lua-engine] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-lua-engine-0.4.3/test/writer-template.out.txt"
  499. 1175.78 s [pandoc-lua-engine] Phase: patchPhase
  500. 1175.79 s [pandoc-lua-engine] Replace Cabal file with edited version from mirror://hackage/pandoc-lua-engine-0.4.3/revision/2.cabal.
  501. 1175.80 s [pandoc-lua-engine] Phase: compileBuildDriverPhase
  502. 1175.80 s [pandoc-lua-engine] setupCompileFlags: -package-db=/build/tmp.mZRQqMKVCC/setup-package.conf.d -threaded
  503. 1175.85 s [pandoc-lua-engine] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.mZRQqMKVCC/Main.o )
  504. 1175.88 s [pandoc-server] Phase: unpackPhase
  505. 1175.88 s [pandoc-server] unpacking source archive /nix/store/4kqsjsplqpsanrihsxp1wxshjqr4snkl-pandoc-server-0.1.0.11.tar.gz
  506. 1175.89 s [pandoc-server] source root is pandoc-server-0.1.0.11
  507. 1175.90 s [pandoc-server] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-server-0.1.0.11/src/Text/Pandoc/Server.hs"
  508. 1175.90 s [pandoc-lua-engine] [2 of 2] Linking Setup
  509. 1175.90 s [pandoc-server] Phase: patchPhase
  510. 1175.91 s [pandoc-server] Phase: compileBuildDriverPhase
  511. 1175.91 s [pandoc-server] setupCompileFlags: -package-db=/build/tmp.Gjf2aNl68j/setup-package.conf.d -threaded
  512. 1175.93 s [algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing )
  513. 1175.97 s [pandoc-server] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.Gjf2aNl68j/Main.o )
  514. 1176.02 s [pandoc-server] [2 of 2] Linking Setup
  515. 1176.03 s [algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing )
  516. 1176.30 s [algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing )
  517. 1176.37 s [algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing )
  518. 1176.49 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning: [GHC-63394] [-Wx-partial]
  519. 1176.49 s [algebraic-graphs] In the use of ‘head’
  520. 1176.49 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  521. 1176.49 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"."
  522. 1176.49 s [algebraic-graphs] |
  523. 1176.49 s [algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
  524. 1176.49 s [algebraic-graphs] | ^^^^
  525. 1176.49 s [algebraic-graphs]
  526. 1176.50 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning: [GHC-63394] [-Wx-partial]
  527. 1176.50 s [algebraic-graphs] In the use of ‘tail’
  528. 1176.50 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  529. 1176.50 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"."
  530. 1176.50 s [algebraic-graphs] |
  531. 1176.50 s [algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
  532. 1176.50 s [algebraic-graphs] | ^^^^
  533. 1176.50 s [algebraic-graphs]
  534. 1176.50 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning: [GHC-63394] [-Wx-partial]
  535. 1176.50 s [algebraic-graphs] In the use of ‘head’
  536. 1176.50 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  537. 1176.50 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"."
  538. 1176.50 s [algebraic-graphs] |
  539. 1176.50 s [algebraic-graphs] 395 | p_v = fst $ head bnd
  540. 1176.50 s [algebraic-graphs] | ^^^^
  541. 1176.50 s [algebraic-graphs]
  542. 1176.50 s [algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning: [GHC-63394] [-Wx-partial]
  543. 1176.50 s [algebraic-graphs] In the use of ‘tail’
  544. 1176.50 s [algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
  545. 1176.50 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"."
  546. 1176.50 s [algebraic-graphs] |
  547. 1176.50 s [algebraic-graphs] 397 | bnd' = tail bnd
  548. 1176.50 s [algebraic-graphs] | ^^^^
  549. 1176.50 s [algebraic-graphs]
  550. 1176.50 s [algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing )
  551. 1176.57 s [algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing )
  552. 1176.73 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  553. 1176.73 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  554. 1176.73 s [algebraic-graphs] will become an error in a future GHC release.
  555. 1176.73 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  556. 1176.73 s [algebraic-graphs] |
  557. 1176.73 s [algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
  558. 1176.73 s [algebraic-graphs] | ^
  559. 1176.73 s [algebraic-graphs]
  560. 1176.73 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  561. 1176.73 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  562. 1176.73 s [algebraic-graphs] will become an error in a future GHC release.
  563. 1176.73 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  564. 1176.73 s [algebraic-graphs] |
  565. 1176.73 s [algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
  566. 1176.73 s [algebraic-graphs] | ^
  567. 1176.73 s [algebraic-graphs]
  568. 1176.73 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  569. 1176.73 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  570. 1176.73 s [algebraic-graphs] will become an error in a future GHC release.
  571. 1176.73 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  572. 1176.73 s [algebraic-graphs] |
  573. 1176.73 s [algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
  574. 1176.74 s [algebraic-graphs] | ^
  575. 1176.74 s [algebraic-graphs]
  576. 1176.74 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  577. 1176.74 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  578. 1176.74 s [algebraic-graphs] will become an error in a future GHC release.
  579. 1176.74 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  580. 1176.74 s [algebraic-graphs] |
  581. 1176.74 s [algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
  582. 1176.74 s [algebraic-graphs] | ^
  583. 1176.74 s [algebraic-graphs]
  584. 1176.74 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  585. 1176.74 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  586. 1176.74 s [algebraic-graphs] will become an error in a future GHC release.
  587. 1176.74 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  588. 1176.74 s [algebraic-graphs] |
  589. 1176.74 s [algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
  590. 1176.74 s [algebraic-graphs] | ^
  591. 1176.74 s [algebraic-graphs]
  592. 1176.74 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  593. 1176.74 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  594. 1176.74 s [algebraic-graphs] will become an error in a future GHC release.
  595. 1176.74 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  596. 1176.74 s [algebraic-graphs] |
  597. 1176.74 s [algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
  598. 1176.74 s [algebraic-graphs] | ^
  599. 1176.74 s [algebraic-graphs]
  600. 1176.74 s [algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  601. 1176.74 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  602. 1176.74 s [algebraic-graphs] will become an error in a future GHC release.
  603. 1176.74 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  604. 1176.74 s [algebraic-graphs] |
  605. 1176.74 s [algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
  606. 1176.74 s [algebraic-graphs] | ^
  607. 1176.74 s [algebraic-graphs]
  608. 1176.75 s [algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing )
  609. 1176.86 s [algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing )
  610. 1176.95 s [algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing )
  611. 1177.20 s [algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing )
  612. 1177.31 s [pandoc-lua-engine] Phase: updateAutotoolsGnuConfigScriptsPhase
  613. 1177.32 s [pandoc-lua-engine] Phase: configurePhase
  614. 1177.33 s [pandoc-lua-engine] configureFlags: --verbose --prefix=/nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc/share/doc/pandoc-lua-engine-0.4.3 --with-gcc=gcc --package-db=/build/tmp.mZRQqMKVCC/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/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
  615. 1177.34 s [pandoc-lua-engine] Using Parsec parser
  616. 1177.34 s [pandoc-lua-engine] Configuring pandoc-lua-engine-0.4.3...
  617. 1177.36 s [algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing )
  618. 1177.44 s [pandoc-server] Phase: updateAutotoolsGnuConfigScriptsPhase
  619. 1177.45 s [pandoc-server] Phase: configurePhase
  620. 1177.46 s [pandoc-server] configureFlags: --verbose --prefix=/nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc/share/doc/pandoc-server-0.1.0.11 --with-gcc=gcc --package-db=/build/tmp.Gjf2aNl68j/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/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
  621. 1177.47 s [pandoc-server] Using Parsec parser
  622. 1177.47 s [pandoc-server] Configuring pandoc-server-0.1.0.11...
  623. 1177.51 s [algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing )
  624. 1177.52 s [algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing )
  625. 1177.56 s [algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing )
  626. 1177.59 s [algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  627. 1177.59 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  628. 1177.59 s [algebraic-graphs] will become an error in a future GHC release.
  629. 1177.59 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  630. 1177.59 s [algebraic-graphs] |
  631. 1177.59 s [algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
  632. 1177.59 s [algebraic-graphs] | ^
  633. 1177.59 s [algebraic-graphs]
  634. 1177.59 s [algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing )
  635. 1177.61 s [algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  636. 1177.61 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  637. 1177.61 s [algebraic-graphs] will become an error in a future GHC release.
  638. 1177.61 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  639. 1177.61 s [algebraic-graphs] |
  640. 1177.61 s [algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
  641. 1177.61 s [algebraic-graphs] | ^
  642. 1177.61 s [algebraic-graphs]
  643. 1177.61 s [algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning: [GHC-58520] [-Wtype-equality-requires-operators]
  644. 1177.62 s [algebraic-graphs] The use of ‘~’ without TypeOperators
  645. 1177.62 s [algebraic-graphs] will become an error in a future GHC release.
  646. 1177.62 s [algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
  647. 1177.62 s [algebraic-graphs] |
  648. 1177.62 s [algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
  649. 1177.62 s [algebraic-graphs] | ^
  650. 1177.62 s [algebraic-graphs]
  651. 1177.62 s [algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing )
  652. 1177.79 s [algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing )
  653. 1177.89 s [algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing )
  654. 1177.91 s [algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing )
  655. 1177.93 s [algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing )
  656. 1177.95 s [algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing )
  657. 1177.97 s [algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing )
  658. 1178.00 s [algebraic-graphs] Haddock coverage:
  659. 1178.00 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  660. 1178.00 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
  661. 1178.00 s [algebraic-graphs] * in ‘Data.Map.Internal’
  662. 1178.00 s [algebraic-graphs] * in ‘Data.Set.Internal’
  663. 1178.00 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  664. 1178.00 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  665. 1178.00 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
  666. 1178.02 s [algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
  667. 1178.02 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  668. 1178.02 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
  669. 1178.02 s [algebraic-graphs] * in ‘Data.IntMap.Internal’
  670. 1178.02 s [algebraic-graphs] * in ‘Data.IntSet.Internal’
  671. 1178.02 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  672. 1178.02 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  673. 1178.02 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
  674. 1178.04 s [algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
  675. 1178.05 s [algebraic-graphs] Warning: 'nub' is out of scope.
  676. 1178.05 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  677. 1178.05 s [algebraic-graphs] Warning: 'sort' is out of scope.
  678. 1178.05 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  679. 1178.05 s [algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
  680. 1178.05 s [algebraic-graphs] Missing documentation for:
  681. 1178.05 s [algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
  682. 1178.05 s [algebraic-graphs] Warning: 'List' is ambiguous. It is defined
  683. 1178.05 s [algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
  684. 1178.05 s [algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
  685. 1178.05 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  686. 1178.05 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  687. 1178.05 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
  688. 1178.05 s [algebraic-graphs] Warning: 'IsList' is out of scope.
  689. 1178.05 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  690. 1178.05 s [algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
  691. 1178.05 s [algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
  692. 1178.05 s [algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
  693. 1178.05 s [algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
  694. 1178.05 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  695. 1178.05 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  696. 1178.05 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
  697. 1178.07 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  698. 1178.07 s [algebraic-graphs] * at src/Algebra/Graph.hs:316:1
  699. 1178.07 s [algebraic-graphs] * in ‘Data.Set.Internal’
  700. 1178.07 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  701. 1178.07 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  702. 1178.07 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
  703. 1178.08 s [algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
  704. 1178.08 s [algebraic-graphs] Warning: 'mplus' is out of scope.
  705. 1178.08 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  706. 1178.09 s [algebraic-graphs] Warning: 'vertexCount' is out of scope.
  707. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  708. 1178.09 s [algebraic-graphs] Warning: 'hasVertex' is out of scope.
  709. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  710. 1178.09 s [algebraic-graphs] Warning: 'vertexSet' is out of scope.
  711. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  712. 1178.09 s [algebraic-graphs] Warning: 'isEmpty' is out of scope.
  713. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  714. 1178.09 s [algebraic-graphs] Warning: 'edgeList' is out of scope.
  715. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  716. 1178.09 s [algebraic-graphs] Warning: 'adjacencyList' is out of scope.
  717. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  718. 1178.09 s [algebraic-graphs] Warning: 'box' is out of scope.
  719. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  720. 1178.09 s [algebraic-graphs] Warning: 'edgeCount' is out of scope.
  721. 1178.09 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  722. 1178.10 s [algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
  723. 1178.10 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  724. 1178.10 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  725. 1178.10 s [algebraic-graphs] * in ‘Data.Map.Internal’
  726. 1178.10 s [algebraic-graphs] * in ‘Data.Set.Internal’
  727. 1178.10 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  728. 1178.10 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  729. 1178.10 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  730. 1178.11 s [algebraic-graphs] Warning: 'nub' is out of scope.
  731. 1178.11 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  732. 1178.11 s [algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
  733. 1178.11 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
  734. 1178.11 s [algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
  735. 1178.11 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  736. 1178.11 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  737. 1178.11 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
  738. 1178.12 s [algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
  739. 1178.13 s [algebraic-graphs] Warning: 'isRight' is out of scope.
  740. 1178.13 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  741. 1178.13 s [algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
  742. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
  743. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
  744. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  745. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  746. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
  747. 1178.13 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  748. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  749. 1178.13 s [algebraic-graphs] * in ‘Data.Set.Internal’
  750. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  751. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  752. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
  753. 1178.13 s [algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
  754. 1178.13 s [algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
  755. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
  756. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
  757. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  758. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  759. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
  760. 1178.13 s [algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
  761. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
  762. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
  763. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  764. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  765. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
  766. 1178.13 s [algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
  767. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
  768. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
  769. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  770. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  771. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
  772. 1178.13 s [algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
  773. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
  774. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
  775. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  776. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  777. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
  778. 1178.13 s [algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
  779. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
  780. 1178.13 s [algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
  781. 1178.13 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  782. 1178.13 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  783. 1178.13 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
  784. 1178.14 s [algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
  785. 1178.14 s [algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
  786. 1178.14 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
  787. 1178.14 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
  788. 1178.14 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  789. 1178.14 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  790. 1178.14 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
  791. 1178.14 s [algebraic-graphs] Warning: 'isEmpty' is out of scope.
  792. 1178.14 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  793. 1178.14 s [algebraic-graphs] Warning: 'empty' is out of scope.
  794. 1178.14 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  795. 1178.14 s [algebraic-graphs] Warning: 'vertexList' is out of scope.
  796. 1178.14 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  797. 1178.15 s [algebraic-graphs] Warning: 'edges' is out of scope.
  798. 1178.15 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  799. 1178.15 s [algebraic-graphs] Warning: 'adjacencyList' is out of scope.
  800. 1178.15 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  801. 1178.15 s [algebraic-graphs] Warning: 'stars' is out of scope.
  802. 1178.15 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  803. 1178.15 s [algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
  804. 1178.16 s [algebraic-graphs] Warning: 'nub' is out of scope.
  805. 1178.16 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  806. 1178.16 s [algebraic-graphs] Warning: 'sort' is out of scope.
  807. 1178.16 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  808. 1178.16 s [algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
  809. 1178.16 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
  810. 1178.16 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
  811. 1178.16 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  812. 1178.16 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  813. 1178.16 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
  814. 1178.16 s [algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
  815. 1178.16 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
  816. 1178.16 s [algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
  817. 1178.16 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  818. 1178.16 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  819. 1178.16 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
  820. 1178.17 s [algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
  821. 1178.17 s [algebraic-graphs] Missing documentation for:
  822. 1178.17 s [algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
  823. 1178.17 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  824. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
  825. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
  826. 1178.17 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  827. 1178.17 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  828. 1178.17 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
  829. 1178.17 s [algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
  830. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
  831. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
  832. 1178.17 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  833. 1178.17 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  834. 1178.17 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
  835. 1178.17 s [algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
  836. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
  837. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
  838. 1178.17 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  839. 1178.17 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  840. 1178.17 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
  841. 1178.17 s [algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
  842. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
  843. 1178.17 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
  844. 1178.17 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  845. 1178.17 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  846. 1178.17 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
  847. 1178.17 s [pandoc-lua-engine] Dependency aeson: using aeson-2.2.3.0
  848. 1178.17 s [pandoc-lua-engine] Dependency base >=4.12 && <5: using base-4.20.2.0
  849. 1178.17 s [pandoc-lua-engine] Dependency bytestring >=0.9 && <0.13: using bytestring-0.12.2.0
  850. 1178.17 s [pandoc-lua-engine] Dependency citeproc >=0.8 && <0.10: using citeproc-0.9.0.1
  851. 1178.17 s [pandoc-lua-engine] Dependency containers >=0.6.0.1 && <0.9: using containers-0.7
  852. 1178.17 s [pandoc-lua-engine] Dependency crypton >=0.30 && <1.1: using crypton-1.0.4
  853. 1178.17 s [pandoc-lua-engine] Dependency data-default >=0.4 && <0.9: using data-default-0.8.0.1
  854. 1178.17 s [pandoc-lua-engine] Dependency doclayout >=0.5 && <0.6: using doclayout-0.5.0.1
  855. 1178.17 s [pandoc-lua-engine] Dependency doctemplates >=0.11 && <0.12: using doctemplates-0.11.0.1
  856. 1178.17 s [pandoc-lua-engine] Dependency exceptions >=0.8 && <0.11: using exceptions-0.10.9
  857. 1178.17 s [pandoc-lua-engine] Dependency hslua >=2.3 && <2.5: using hslua-2.3.1
  858. 1178.17 s [pandoc-lua-engine] Dependency hslua-module-doclayout >=1.2 && <1.3: using
  859. 1178.17 s [pandoc-lua-engine] hslua-module-doclayout-1.2.0.1
  860. 1178.17 s [pandoc-lua-engine] Dependency hslua-module-path >=1.1 && <1.2: using hslua-module-path-1.1.1
  861. 1178.17 s [pandoc-lua-engine] Dependency hslua-module-system >=1.1 && <1.3: using hslua-module-system-1.1.3
  862. 1178.17 s [pandoc-lua-engine] Dependency hslua-module-text >=1.1 && <1.2: using hslua-module-text-1.1.1
  863. 1178.17 s [pandoc-lua-engine] Dependency hslua-module-version >=1.1 && <1.2: using
  864. 1178.17 s [pandoc-lua-engine] hslua-module-version-1.1.1
  865. 1178.17 s [pandoc-lua-engine] Dependency hslua-module-zip >=1.1.3 && <1.2: using hslua-module-zip-1.1.4
  866. 1178.17 s [pandoc-lua-engine] Dependency hslua-repl >=0.1.1 && <0.2: using hslua-repl-0.1.2
  867. 1178.17 s [pandoc-lua-engine] Dependency lpeg >=1.1 && <1.2: using lpeg-1.1.0
  868. 1178.17 s [pandoc-lua-engine] Dependency mtl >=2.2 && <2.4: using mtl-2.3.1
  869. 1178.17 s [pandoc-lua-engine] Dependency pandoc >=3.7 && <3.8: using pandoc-3.7.0.2
  870. 1178.17 s [pandoc-lua-engine] Dependency pandoc-lua-marshal >=0.3 && <0.4: using pandoc-lua-marshal-0.3.1
  871. 1178.17 s [pandoc-lua-engine] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
  872. 1178.17 s [pandoc-lua-engine] Dependency parsec >=3.1 && <3.2: using parsec-3.1.18.0
  873. 1178.17 s [pandoc-lua-engine] Dependency text >=1.1.1 && <2.2: using text-2.1.3
  874. 1178.17 s [pandoc-lua-engine] Dependency base >=4.12 && <5: using base-4.20.2.0
  875. 1178.17 s [pandoc-lua-engine] Dependency bytestring: using bytestring-0.12.2.0
  876. 1178.17 s [pandoc-lua-engine] Dependency data-default: using data-default-0.8.0.1
  877. 1178.17 s [pandoc-lua-engine] Dependency directory: using directory-1.3.8.5
  878. 1178.17 s [pandoc-lua-engine] Dependency exceptions >=0.8 && <0.11: using exceptions-0.10.9
  879. 1178.17 s [pandoc-lua-engine] Dependency filepath: using filepath-1.5.4.0
  880. 1178.17 s [pandoc-lua-engine] Dependency hslua >=2.3 && <2.5: using hslua-2.3.1
  881. 1178.17 s [pandoc-lua-engine] Dependency pandoc: using pandoc-3.7.0.2
  882. 1178.17 s [pandoc-lua-engine] Dependency pandoc-lua-engine: using pandoc-lua-engine-0.4.3
  883. 1178.17 s [pandoc-lua-engine] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
  884. 1178.17 s [pandoc-lua-engine] Dependency tasty: using tasty-1.5.3
  885. 1178.17 s [pandoc-lua-engine] Dependency tasty-golden: using tasty-golden-2.3.5
  886. 1178.17 s [pandoc-lua-engine] Dependency tasty-hunit: using tasty-hunit-0.10.2
  887. 1178.17 s [pandoc-lua-engine] Dependency tasty-lua >=1.1 && <1.2: using tasty-lua-1.1.2
  888. 1178.17 s [pandoc-lua-engine] Dependency text >=1.1.1 && <2.2: using text-2.1.3
  889. 1178.17 s [pandoc-lua-engine] Source component graph:
  890. 1178.17 s [pandoc-lua-engine] component lib
  891. 1178.17 s [pandoc-lua-engine] component test:test-pandoc-lua-engine dependency lib
  892. 1178.17 s [pandoc-lua-engine] Configured component graph:
  893. 1178.17 s [pandoc-lua-engine] component pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  894. 1178.17 s [pandoc-lua-engine] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
  895. 1178.17 s [pandoc-lua-engine] include base-4.20.2.0-acb8
  896. 1178.17 s [pandoc-lua-engine] include bytestring-0.12.2.0-04d5
  897. 1178.17 s [pandoc-lua-engine] include citeproc-0.9.0.1-DGjZWk97dAqLu5JPkrzNQH
  898. 1178.17 s [pandoc-lua-engine] include containers-0.7-a3f6
  899. 1178.17 s [pandoc-lua-engine] include crypton-1.0.4-5iUP1fuV9nO64XZJT1F5E7
  900. 1178.17 s [pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  901. 1178.17 s [pandoc-lua-engine] include doclayout-0.5.0.1-2QwCUNCmEm01FCKwH9l5Ui
  902. 1178.17 s [pandoc-lua-engine] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
  903. 1178.17 s [pandoc-lua-engine] include exceptions-0.10.9-0130
  904. 1178.17 s [pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
  905. 1178.17 s [pandoc-lua-engine] include hslua-module-doclayout-1.2.0.1-KXu7zXAhK3h85G7RkBJsuZ
  906. 1178.17 s [pandoc-lua-engine] include hslua-module-path-1.1.1-IAgUxSqc4pZDHGn3yNAkwV
  907. 1178.17 s [pandoc-lua-engine] include hslua-module-system-1.1.3-29Tt1UxbHEv2JSKgrsV82X
  908. 1178.17 s [pandoc-lua-engine] include hslua-module-text-1.1.1-E0D9NifM42sFpWHXJFaqCg
  909. 1178.17 s [pandoc-lua-engine] include hslua-module-version-1.1.1-FyWN9p27qn56ooG8Zt42PN
  910. 1178.17 s [pandoc-lua-engine] include hslua-module-zip-1.1.4-DkUgaAIlv8MDh7tn9CIUZ3
  911. 1178.17 s [pandoc-lua-engine] include hslua-repl-0.1.2-4LecQgluZRM5h2R4OZQvKE
  912. 1178.17 s [pandoc-lua-engine] include lpeg-1.1.0-wPlPBI6E32Bs1DZfZyhVf
  913. 1178.17 s [pandoc-lua-engine] include mtl-2.3.1-0163
  914. 1178.17 s [pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  915. 1178.17 s [pandoc-lua-engine] include pandoc-lua-marshal-0.3.1-Dj373jh12pPEFkVyt3xyk0
  916. 1178.17 s [pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  917. 1178.17 s [pandoc-lua-engine] include parsec-3.1.18.0-bc09
  918. 1178.17 s [pandoc-lua-engine] include text-2.1.3-e138
  919. 1178.17 s [pandoc-lua-engine] component pandoc-lua-engine-0.4.3-GFTUE2cThrfAY9HQNTR8hv-test-pandoc-lua-engine
  920. 1178.17 s [pandoc-lua-engine] include base-4.20.2.0-acb8
  921. 1178.17 s [pandoc-lua-engine] include bytestring-0.12.2.0-04d5
  922. 1178.17 s [pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  923. 1178.17 s [pandoc-lua-engine] include directory-1.3.8.5-e377
  924. 1178.17 s [pandoc-lua-engine] include exceptions-0.10.9-0130
  925. 1178.17 s [pandoc-lua-engine] include filepath-1.5.4.0-c4eb
  926. 1178.17 s [pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
  927. 1178.17 s [pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  928. 1178.17 s [pandoc-lua-engine] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  929. 1178.17 s [pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  930. 1178.17 s [pandoc-lua-engine] include tasty-1.5.3-6VVnV2MAaEEboaUHJkYU4
  931. 1178.17 s [pandoc-lua-engine] include tasty-golden-2.3.5-ImVFdafZxiKCbwMSngPa79
  932. 1178.17 s [pandoc-lua-engine] include tasty-hunit-0.10.2-2JVNHJhSfnl5p1jLlZfoyf
  933. 1178.17 s [pandoc-lua-engine] include tasty-lua-1.1.2-HIl06gBFQBCL7HlR8CA6f8
  934. 1178.17 s [pandoc-lua-engine] include text-2.1.3-e138
  935. 1178.17 s [pandoc-lua-engine] Linked component graph:
  936. 1178.17 s [pandoc-lua-engine] unit pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  937. 1178.17 s [pandoc-lua-engine] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
  938. 1178.17 s [pandoc-lua-engine] include base-4.20.2.0-acb8
  939. 1178.17 s [pandoc-lua-engine] include bytestring-0.12.2.0-04d5
  940. 1178.17 s [pandoc-lua-engine] include citeproc-0.9.0.1-DGjZWk97dAqLu5JPkrzNQH
  941. 1178.17 s [pandoc-lua-engine] include containers-0.7-a3f6
  942. 1178.17 s [pandoc-lua-engine] include crypton-1.0.4-5iUP1fuV9nO64XZJT1F5E7
  943. 1178.17 s [pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  944. 1178.17 s [pandoc-lua-engine] include doclayout-0.5.0.1-2QwCUNCmEm01FCKwH9l5Ui
  945. 1178.17 s [pandoc-lua-engine] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
  946. 1178.17 s [pandoc-lua-engine] include exceptions-0.10.9-0130
  947. 1178.17 s [pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
  948. 1178.17 s [pandoc-lua-engine] include hslua-module-doclayout-1.2.0.1-KXu7zXAhK3h85G7RkBJsuZ
  949. 1178.17 s [pandoc-lua-engine] include hslua-module-path-1.1.1-IAgUxSqc4pZDHGn3yNAkwV
  950. 1178.17 s [pandoc-lua-engine] include hslua-module-system-1.1.3-29Tt1UxbHEv2JSKgrsV82X
  951. 1178.17 s [pandoc-lua-engine] include hslua-module-text-1.1.1-E0D9NifM42sFpWHXJFaqCg
  952. 1178.17 s [pandoc-lua-engine] include hslua-module-version-1.1.1-FyWN9p27qn56ooG8Zt42PN
  953. 1178.17 s [pandoc-lua-engine] include hslua-module-zip-1.1.4-DkUgaAIlv8MDh7tn9CIUZ3
  954. 1178.17 s [pandoc-lua-engine] include hslua-repl-0.1.2-4LecQgluZRM5h2R4OZQvKE
  955. 1178.17 s [pandoc-lua-engine] include lpeg-1.1.0-wPlPBI6E32Bs1DZfZyhVf
  956. 1178.17 s [pandoc-lua-engine] include mtl-2.3.1-0163
  957. 1178.17 s [pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  958. 1178.17 s [pandoc-lua-engine] include pandoc-lua-marshal-0.3.1-Dj373jh12pPEFkVyt3xyk0
  959. 1178.17 s [pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  960. 1178.17 s [pandoc-lua-engine] include parsec-3.1.18.0-bc09
  961. 1178.17 s [pandoc-lua-engine] include text-2.1.3-e138
  962. 1178.17 s [pandoc-lua-engine] Text.Pandoc.Lua=pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98:Text.Pandoc.Lua
  963. 1178.17 s [pandoc-lua-engine] unit pandoc-lua-engine-0.4.3-GFTUE2cThrfAY9HQNTR8hv-test-pandoc-lua-engine
  964. 1178.17 s [pandoc-lua-engine] include base-4.20.2.0-acb8
  965. 1178.17 s [pandoc-lua-engine] include bytestring-0.12.2.0-04d5
  966. 1178.17 s [pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  967. 1178.18 s [pandoc-lua-engine] include directory-1.3.8.5-e377
  968. 1178.18 s [pandoc-lua-engine] include exceptions-0.10.9-0130
  969. 1178.18 s [pandoc-lua-engine] include filepath-1.5.4.0-c4eb
  970. 1178.18 s [pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
  971. 1178.18 s [pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  972. 1178.18 s [pandoc-lua-engine] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  973. 1178.18 s [pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  974. 1178.18 s [pandoc-lua-engine] include tasty-1.5.3-6VVnV2MAaEEboaUHJkYU4
  975. 1178.18 s [pandoc-lua-engine] include tasty-golden-2.3.5-ImVFdafZxiKCbwMSngPa79
  976. 1178.18 s [pandoc-lua-engine] include tasty-hunit-0.10.2-2JVNHJhSfnl5p1jLlZfoyf
  977. 1178.18 s [pandoc-lua-engine] include tasty-lua-1.1.2-HIl06gBFQBCL7HlR8CA6f8
  978. 1178.18 s [pandoc-lua-engine] include text-2.1.3-e138
  979. 1178.18 s [pandoc-lua-engine] Ready component graph:
  980. 1178.18 s [pandoc-lua-engine] definite pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  981. 1178.18 s [pandoc-lua-engine] depends aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
  982. 1178.18 s [pandoc-lua-engine] depends base-4.20.2.0-acb8
  983. 1178.18 s [pandoc-lua-engine] depends bytestring-0.12.2.0-04d5
  984. 1178.18 s [pandoc-lua-engine] depends citeproc-0.9.0.1-DGjZWk97dAqLu5JPkrzNQH
  985. 1178.18 s [pandoc-lua-engine] depends containers-0.7-a3f6
  986. 1178.18 s [pandoc-lua-engine] depends crypton-1.0.4-5iUP1fuV9nO64XZJT1F5E7
  987. 1178.18 s [pandoc-lua-engine] depends data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  988. 1178.18 s [pandoc-lua-engine] depends doclayout-0.5.0.1-2QwCUNCmEm01FCKwH9l5Ui
  989. 1178.18 s [pandoc-lua-engine] depends doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
  990. 1178.18 s [pandoc-lua-engine] depends exceptions-0.10.9-0130
  991. 1178.18 s [pandoc-lua-engine] depends hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
  992. 1178.18 s [pandoc-lua-engine] depends hslua-module-doclayout-1.2.0.1-KXu7zXAhK3h85G7RkBJsuZ
  993. 1178.18 s [pandoc-lua-engine] depends hslua-module-path-1.1.1-IAgUxSqc4pZDHGn3yNAkwV
  994. 1178.18 s [pandoc-lua-engine] depends hslua-module-system-1.1.3-29Tt1UxbHEv2JSKgrsV82X
  995. 1178.18 s [pandoc-lua-engine] depends hslua-module-text-1.1.1-E0D9NifM42sFpWHXJFaqCg
  996. 1178.18 s [pandoc-lua-engine] depends hslua-module-version-1.1.1-FyWN9p27qn56ooG8Zt42PN
  997. 1178.18 s [pandoc-lua-engine] depends hslua-module-zip-1.1.4-DkUgaAIlv8MDh7tn9CIUZ3
  998. 1178.18 s [pandoc-lua-engine] depends hslua-repl-0.1.2-4LecQgluZRM5h2R4OZQvKE
  999. 1178.18 s [pandoc-lua-engine] depends lpeg-1.1.0-wPlPBI6E32Bs1DZfZyhVf
  1000. 1178.18 s [pandoc-lua-engine] depends mtl-2.3.1-0163
  1001. 1178.18 s [pandoc-lua-engine] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  1002. 1178.18 s [algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
  1003. 1178.18 s [algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
  1004. 1178.18 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
  1005. 1178.18 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1006. 1178.18 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1007. 1178.18 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
  1008. 1178.18 s [algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
  1009. 1178.18 s [algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
  1010. 1178.18 s [algebraic-graphs] * at src/Algebra/Graph.hs:482:1
  1011. 1178.18 s [algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
  1012. 1178.18 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1013. 1178.18 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1014. 1178.18 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
  1015. 1178.19 s [algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
  1016. 1178.19 s [algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
  1017. 1178.19 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
  1018. 1178.19 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
  1019. 1178.19 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1020. 1178.19 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1021. 1178.19 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
  1022. 1178.19 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1023. 1178.19 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
  1024. 1178.19 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1025. 1178.19 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1026. 1178.19 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1027. 1178.19 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
  1028. 1178.20 s [algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
  1029. 1178.20 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1030. 1178.20 s [algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
  1031. 1178.21 s [algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
  1032. 1178.21 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
  1033. 1178.21 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
  1034. 1178.21 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1035. 1178.21 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1036. 1178.21 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
  1037. 1178.21 s [algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
  1038. 1178.21 s [algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
  1039. 1178.21 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
  1040. 1178.21 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1041. 1178.21 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1042. 1178.21 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
  1043. 1178.21 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1044. 1178.21 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
  1045. 1178.21 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1046. 1178.21 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1047. 1178.21 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1048. 1178.21 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
  1049. 1178.22 s [algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
  1050. 1178.23 s [algebraic-graphs] Warning: 'vertexList' is out of scope.
  1051. 1178.23 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1052. 1178.24 s [algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
  1053. 1178.25 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1054. 1178.25 s [algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
  1055. 1178.25 s [algebraic-graphs] * in ‘Data.Map.Internal’
  1056. 1178.25 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1057. 1178.25 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1058. 1178.25 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
  1059. 1178.25 s [pandoc-lua-engine] depends pandoc-lua-marshal-0.3.1-Dj373jh12pPEFkVyt3xyk0
  1060. 1178.25 s [pandoc-lua-engine] depends pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  1061. 1178.25 s [pandoc-lua-engine] depends parsec-3.1.18.0-bc09
  1062. 1178.25 s [pandoc-lua-engine] depends text-2.1.3-e138
  1063. 1178.25 s [pandoc-lua-engine] definite pandoc-lua-engine-0.4.3-GFTUE2cThrfAY9HQNTR8hv-test-pandoc-lua-engine
  1064. 1178.25 s [pandoc-lua-engine] depends base-4.20.2.0-acb8
  1065. 1178.25 s [pandoc-lua-engine] depends bytestring-0.12.2.0-04d5
  1066. 1178.25 s [pandoc-lua-engine] depends data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  1067. 1178.25 s [pandoc-lua-engine] depends directory-1.3.8.5-e377
  1068. 1178.25 s [pandoc-lua-engine] depends exceptions-0.10.9-0130
  1069. 1178.25 s [pandoc-lua-engine] depends filepath-1.5.4.0-c4eb
  1070. 1178.25 s [pandoc-lua-engine] depends hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
  1071. 1178.25 s [pandoc-lua-engine] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  1072. 1178.25 s [pandoc-lua-engine] depends pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  1073. 1178.25 s [pandoc-lua-engine] depends pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  1074. 1178.25 s [pandoc-lua-engine] depends tasty-1.5.3-6VVnV2MAaEEboaUHJkYU4
  1075. 1178.25 s [pandoc-lua-engine] depends tasty-golden-2.3.5-ImVFdafZxiKCbwMSngPa79
  1076. 1178.25 s [pandoc-lua-engine] depends tasty-hunit-0.10.2-2JVNHJhSfnl5p1jLlZfoyf
  1077. 1178.25 s [pandoc-lua-engine] depends tasty-lua-1.1.2-HIl06gBFQBCL7HlR8CA6f8
  1078. 1178.25 s [pandoc-lua-engine] depends text-2.1.3-e138
  1079. 1178.25 s [pandoc-lua-engine] Using Cabal-3.12.1.0 compiled by ghc-9.10
  1080. 1178.25 s [pandoc-lua-engine] Using compiler: ghc-9.10.3
  1081. 1178.25 s [pandoc-lua-engine] Using install prefix:
  1082. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
  1083. 1178.25 s [pandoc-lua-engine] Executables installed in:
  1084. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/bin
  1085. 1178.25 s [pandoc-lua-engine] Libraries installed in:
  1086. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  1087. 1178.25 s [pandoc-lua-engine] Dynamic Libraries installed in:
  1088. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702
  1089. 1178.25 s [pandoc-lua-engine] Private executables installed in:
  1090. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/libexec/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3
  1091. 1178.25 s [pandoc-lua-engine] Data files installed in:
  1092. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/share/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3
  1093. 1178.25 s [pandoc-lua-engine] Documentation installed in:
  1094. 1178.25 s [pandoc-lua-engine] /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc/share/doc/pandoc-lua-engine-0.4.3
  1095. 1178.25 s [pandoc-lua-engine] Configuration files installed in:
  1096. 1178.25 s [pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/etc
  1097. 1178.25 s [pandoc-lua-engine] No alex found
  1098. 1178.25 s [pandoc-lua-engine] Using ar found on system at:
  1099. 1178.25 s [pandoc-lua-engine] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  1100. 1178.25 s [pandoc-lua-engine] No c2hs found
  1101. 1178.25 s [pandoc-lua-engine] No cpphs found
  1102. 1178.25 s [pandoc-lua-engine] No doctest found
  1103. 1178.25 s [pandoc-lua-engine] Using gcc version 14.3.0 given by user at:
  1104. 1178.25 s [pandoc-lua-engine] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  1105. 1178.25 s [pandoc-lua-engine] Using ghc version 9.10.3 found on system at:
  1106. 1178.25 s [pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc
  1107. 1178.25 s [pandoc-lua-engine] Using ghc-pkg version 9.10.3 found on system at:
  1108. 1178.25 s [pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc-pkg-9.10.3
  1109. 1178.25 s [pandoc-lua-engine] No ghcjs found
  1110. 1178.25 s [pandoc-lua-engine] No ghcjs-pkg found
  1111. 1178.25 s [pandoc-lua-engine] No greencard found
  1112. 1178.25 s [pandoc-lua-engine] Using haddock version 2.31.1 found on system at:
  1113. 1178.25 s [pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/haddock-ghc-9.10.3
  1114. 1178.25 s [pandoc-lua-engine] No happy found
  1115. 1178.25 s [pandoc-lua-engine] Using haskell-suite found on system at: haskell-suite-dummy-location
  1116. 1178.25 s [pandoc-lua-engine] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  1117. 1178.25 s [pandoc-lua-engine] No hmake found
  1118. 1178.25 s [pandoc-lua-engine] Using hpc version 0.69 found on system at:
  1119. 1178.25 s [pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hpc-ghc-9.10.3
  1120. 1178.25 s [pandoc-lua-engine] Using hsc2hs version 0.68.10 found on system at:
  1121. 1178.25 s [pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  1122. 1178.25 s [pandoc-lua-engine] Using hscolour version 1.25 found on system at:
  1123. 1178.25 s [pandoc-lua-engine] /nix/store/7bd6y873jzkh9wkxhgl2a0za0kfjv1c7-hscolour-1.25/bin/HsColour
  1124. 1178.25 s [pandoc-lua-engine] No jhc found
  1125. 1178.25 s [pandoc-lua-engine] Using ld found on system at:
  1126. 1178.25 s [pandoc-lua-engine] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  1127. 1178.25 s [pandoc-lua-engine] No pkg-config found
  1128. 1178.25 s [pandoc-lua-engine] Using runghc version 9.10.3 found on system at:
  1129. 1178.25 s [pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/runghc-9.10.3
  1130. 1178.25 s [pandoc-lua-engine] Using strip version 2.44 found on system at:
  1131. 1178.25 s [pandoc-lua-engine] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  1132. 1178.25 s [pandoc-lua-engine] Using tar found on system at:
  1133. 1178.25 s [pandoc-lua-engine] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  1134. 1178.25 s [pandoc-lua-engine] No uhc found
  1135. 1178.25 s [algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
  1136. 1178.25 s [algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
  1137. 1178.25 s [algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
  1138. 1178.25 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1139. 1178.25 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1140. 1178.25 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
  1141. 1178.26 s [algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
  1142. 1178.26 s [algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
  1143. 1178.26 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
  1144. 1178.26 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
  1145. 1178.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1146. 1178.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1147. 1178.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
  1148. 1178.26 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1149. 1178.26 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
  1150. 1178.26 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1151. 1178.26 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1152. 1178.26 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1153. 1178.26 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
  1154. 1178.27 s [algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
  1155. 1178.27 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
  1156. 1178.27 s [algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
  1157. 1178.27 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1158. 1178.27 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1159. 1178.27 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
  1160. 1178.27 s [algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
  1161. 1178.27 s [algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
  1162. 1178.28 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
  1163. 1178.28 s [algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
  1164. 1178.28 s [algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
  1165. 1178.28 s [algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
  1166. 1178.28 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1167. 1178.28 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1168. 1178.28 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
  1169. 1178.28 s [algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
  1170. 1178.28 s [algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
  1171. 1178.28 s [algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
  1172. 1178.28 s [algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
  1173. 1178.28 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1174. 1178.28 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1175. 1178.28 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
  1176. 1178.28 s [algebraic-graphs] Warning: 'Graph' is out of scope.
  1177. 1178.28 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1178. 1178.28 s [algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
  1179. 1178.30 s [algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
  1180. 1178.30 s [algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
  1181. 1178.30 s [algebraic-graphs] * in ‘Data.Set.Internal’
  1182. 1178.30 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1183. 1178.30 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1184. 1178.30 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
  1185. 1178.30 s [algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
  1186. 1178.35 s [pandoc-server] Dependency aeson >=2.0 && <2.3: using aeson-2.2.3.0
  1187. 1178.35 s [pandoc-server] Dependency base >=4.12 && <5: using base-4.20.2.0
  1188. 1178.35 s [pandoc-server] Dependency base64-bytestring >=0.1 && <1.3: using base64-bytestring-1.2.1.0
  1189. 1178.35 s [pandoc-server] Dependency bytestring >=0.9 && <0.13: using bytestring-0.12.2.0
  1190. 1178.35 s [pandoc-server] Dependency containers >=0.6.0.1 && <0.9: using containers-0.7
  1191. 1178.35 s [pandoc-server] Dependency data-default >=0.4 && <0.9: using data-default-0.8.0.1
  1192. 1178.35 s [pandoc-server] Dependency doctemplates >=0.11 && <0.12: using doctemplates-0.11.0.1
  1193. 1178.35 s [pandoc-server] Dependency pandoc >=3.5 && <3.8: using pandoc-3.7.0.2
  1194. 1178.35 s [pandoc-server] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
  1195. 1178.35 s [pandoc-server] Dependency servant-server >=0.19 && <0.21: using servant-server-0.20.3.0
  1196. 1178.35 s [pandoc-server] Dependency skylighting >=0.13 && <0.15: using skylighting-0.14.7
  1197. 1178.35 s [pandoc-server] Dependency text >=1.1.1.0 && <2.2: using text-2.1.3
  1198. 1178.35 s [pandoc-server] Dependency unicode-collation >=0.1.1 && <0.2: using unicode-collation-0.1.3.6
  1199. 1178.35 s [pandoc-server] Dependency wai >=3.2 && <3.3: using wai-3.2.4
  1200. 1178.35 s [pandoc-server] Dependency wai-cors >=0.2.7 && <0.3: using wai-cors-0.2.7
  1201. 1178.35 s [pandoc-server] Source component graph: component lib
  1202. 1178.35 s [pandoc-server] Configured component graph:
  1203. 1178.35 s [pandoc-server] component pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  1204. 1178.35 s [pandoc-server] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
  1205. 1178.35 s [pandoc-server] include base-4.20.2.0-acb8
  1206. 1178.35 s [pandoc-server] include base64-bytestring-1.2.1.0-E5ZfzePNySX5CsTeWj14Td
  1207. 1178.35 s [pandoc-server] include bytestring-0.12.2.0-04d5
  1208. 1178.35 s [pandoc-server] include containers-0.7-a3f6
  1209. 1178.35 s [pandoc-server] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  1210. 1178.35 s [pandoc-server] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
  1211. 1178.35 s [pandoc-server] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  1212. 1178.35 s [pandoc-server] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  1213. 1178.35 s [pandoc-server] include servant-server-0.20.3.0-IdiJIYs0tbwJrOGDFEDPbL
  1214. 1178.35 s [pandoc-server] include skylighting-0.14.7-6PsYF2CGn49DOgxUNP80FT
  1215. 1178.35 s [pandoc-server] include text-2.1.3-e138
  1216. 1178.35 s [pandoc-server] include unicode-collation-0.1.3.6-4OUa81BJpQbALGYESd1KVs
  1217. 1178.35 s [pandoc-server] include wai-3.2.4-Do1EstC38Y52Aaiy4h448u
  1218. 1178.35 s [pandoc-server] include wai-cors-0.2.7-EGkQ4Ro3X0X3pFUFHIHBNy
  1219. 1178.35 s [pandoc-server] Linked component graph:
  1220. 1178.35 s [pandoc-server] unit pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  1221. 1178.35 s [pandoc-server] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
  1222. 1178.35 s [pandoc-server] include base-4.20.2.0-acb8
  1223. 1178.35 s [pandoc-server] include base64-bytestring-1.2.1.0-E5ZfzePNySX5CsTeWj14Td
  1224. 1178.35 s [pandoc-server] include bytestring-0.12.2.0-04d5
  1225. 1178.35 s [pandoc-server] include containers-0.7-a3f6
  1226. 1178.35 s [pandoc-server] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  1227. 1178.35 s [pandoc-server] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
  1228. 1178.35 s [pandoc-server] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  1229. 1178.35 s [pandoc-server] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  1230. 1178.35 s [pandoc-server] include servant-server-0.20.3.0-IdiJIYs0tbwJrOGDFEDPbL
  1231. 1178.35 s [pandoc-server] include skylighting-0.14.7-6PsYF2CGn49DOgxUNP80FT
  1232. 1178.35 s [pandoc-server] include text-2.1.3-e138
  1233. 1178.35 s [pandoc-server] include unicode-collation-0.1.3.6-4OUa81BJpQbALGYESd1KVs
  1234. 1178.35 s [pandoc-server] include wai-3.2.4-Do1EstC38Y52Aaiy4h448u
  1235. 1178.35 s [pandoc-server] include wai-cors-0.2.7-EGkQ4Ro3X0X3pFUFHIHBNy
  1236. 1178.35 s [pandoc-server] Text.Pandoc.Server=pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq:Text.Pandoc.Server
  1237. 1178.35 s [pandoc-server] Ready component graph:
  1238. 1178.35 s [pandoc-server] definite pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  1239. 1178.35 s [pandoc-server] depends aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
  1240. 1178.35 s [pandoc-server] depends base-4.20.2.0-acb8
  1241. 1178.35 s [pandoc-server] depends base64-bytestring-1.2.1.0-E5ZfzePNySX5CsTeWj14Td
  1242. 1178.35 s [pandoc-server] depends bytestring-0.12.2.0-04d5
  1243. 1178.35 s [pandoc-server] depends containers-0.7-a3f6
  1244. 1178.35 s [pandoc-server] depends data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
  1245. 1178.35 s [pandoc-server] depends doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
  1246. 1178.35 s [pandoc-server] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  1247. 1178.35 s [pandoc-server] depends pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
  1248. 1178.35 s [pandoc-server] depends servant-server-0.20.3.0-IdiJIYs0tbwJrOGDFEDPbL
  1249. 1178.35 s [pandoc-server] depends skylighting-0.14.7-6PsYF2CGn49DOgxUNP80FT
  1250. 1178.35 s [pandoc-server] depends text-2.1.3-e138
  1251. 1178.35 s [pandoc-server] depends unicode-collation-0.1.3.6-4OUa81BJpQbALGYESd1KVs
  1252. 1178.35 s [pandoc-server] depends wai-3.2.4-Do1EstC38Y52Aaiy4h448u
  1253. 1178.35 s [pandoc-server] depends wai-cors-0.2.7-EGkQ4Ro3X0X3pFUFHIHBNy
  1254. 1178.35 s [pandoc-server] Using Cabal-3.12.1.0 compiled by ghc-9.10
  1255. 1178.35 s [pandoc-server] Using compiler: ghc-9.10.3
  1256. 1178.35 s [pandoc-server] Using install prefix:
  1257. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
  1258. 1178.35 s [pandoc-server] Executables installed in:
  1259. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/bin
  1260. 1178.35 s [pandoc-server] Libraries installed in:
  1261. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  1262. 1178.35 s [pandoc-server] Dynamic Libraries installed in:
  1263. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702
  1264. 1178.35 s [pandoc-server] Private executables installed in:
  1265. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/libexec/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11
  1266. 1178.35 s [pandoc-server] Data files installed in:
  1267. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/share/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11
  1268. 1178.35 s [pandoc-server] Documentation installed in:
  1269. 1178.35 s [pandoc-server] /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc/share/doc/pandoc-server-0.1.0.11
  1270. 1178.35 s [pandoc-server] Configuration files installed in:
  1271. 1178.35 s [pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/etc
  1272. 1178.35 s [pandoc-server] No alex found
  1273. 1178.35 s [pandoc-server] Using ar found on system at:
  1274. 1178.35 s [pandoc-server] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  1275. 1178.35 s [pandoc-server] No c2hs found
  1276. 1178.35 s [pandoc-server] No cpphs found
  1277. 1178.35 s [pandoc-server] No doctest found
  1278. 1178.35 s [pandoc-server] Using gcc version 14.3.0 given by user at:
  1279. 1178.35 s [pandoc-server] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  1280. 1178.35 s [pandoc-server] Using ghc version 9.10.3 found on system at:
  1281. 1178.35 s [pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc
  1282. 1178.35 s [pandoc-server] Using ghc-pkg version 9.10.3 found on system at:
  1283. 1178.35 s [pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc-pkg-9.10.3
  1284. 1178.35 s [pandoc-server] No ghcjs found
  1285. 1178.36 s [pandoc-server] No ghcjs-pkg found
  1286. 1178.36 s [pandoc-server] No greencard found
  1287. 1178.36 s [pandoc-server] Using haddock version 2.31.1 found on system at:
  1288. 1178.36 s [pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/haddock-ghc-9.10.3
  1289. 1178.36 s [pandoc-server] No happy found
  1290. 1178.36 s [pandoc-server] Using haskell-suite found on system at: haskell-suite-dummy-location
  1291. 1178.36 s [pandoc-server] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  1292. 1178.36 s [pandoc-server] No hmake found
  1293. 1178.36 s [pandoc-server] Using hpc version 0.69 found on system at:
  1294. 1178.36 s [pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hpc-ghc-9.10.3
  1295. 1178.36 s [pandoc-server] Using hsc2hs version 0.68.10 found on system at:
  1296. 1178.36 s [pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  1297. 1178.36 s [pandoc-server] Using hscolour version 1.25 found on system at:
  1298. 1178.36 s [pandoc-server] /nix/store/7bd6y873jzkh9wkxhgl2a0za0kfjv1c7-hscolour-1.25/bin/HsColour
  1299. 1178.36 s [pandoc-server] No jhc found
  1300. 1178.36 s [pandoc-server] Using ld found on system at:
  1301. 1178.36 s [pandoc-server] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  1302. 1178.36 s [pandoc-server] No pkg-config found
  1303. 1178.36 s [pandoc-server] Using runghc version 9.10.3 found on system at:
  1304. 1178.36 s [pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/runghc-9.10.3
  1305. 1178.36 s [pandoc-server] Using strip version 2.44 found on system at:
  1306. 1178.36 s [pandoc-server] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  1307. 1178.36 s [pandoc-server] Using tar found on system at:
  1308. 1178.36 s [pandoc-server] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  1309. 1178.36 s [pandoc-server] No uhc found
  1310. 1178.39 s [algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
  1311. 1178.39 s [algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
  1312. 1178.39 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
  1313. 1178.39 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
  1314. 1178.39 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1315. 1178.39 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1316. 1178.39 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
  1317. 1178.39 s [algebraic-graphs] Warning: 'Transitive' is out of scope.
  1318. 1178.39 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1319. 1178.39 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
  1320. 1178.40 s [algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
  1321. 1178.40 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
  1322. 1178.40 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
  1323. 1178.40 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1324. 1178.40 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1325. 1178.40 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
  1326. 1178.40 s [algebraic-graphs] Warning: 'Reflexive' is out of scope.
  1327. 1178.40 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1328. 1178.40 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
  1329. 1178.40 s [algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
  1330. 1178.40 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
  1331. 1178.40 s [algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
  1332. 1178.40 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1333. 1178.40 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1334. 1178.40 s [algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
  1335. 1178.40 s [algebraic-graphs] Warning: 'Preorder' is out of scope.
  1336. 1178.40 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1337. 1178.40 s [algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
  1338. 1178.40 s [algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
  1339. 1178.40 s [algebraic-graphs] Missing documentation for:
  1340. 1178.40 s [algebraic-graphs] Module header
  1341. 1178.40 s [algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
  1342. 1178.40 s [algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
  1343. 1178.40 s [algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
  1344. 1178.40 s [algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
  1345. 1178.40 s [algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
  1346. 1178.40 s [algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
  1347. 1178.40 s [algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
  1348. 1178.40 s [algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
  1349. 1178.40 s [algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
  1350. 1178.40 s [algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
  1351. 1178.40 s [algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
  1352. 1178.40 s [algebraic-graphs] by specifying the type/value namespace explicitly.
  1353. 1178.40 s [algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
  1354. 1178.40 s [algebraic-graphs] Warning: 'array' is out of scope.
  1355. 1178.40 s [algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
  1356. 1178.40 s [algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
  1357. 1178.40 s [algebraic-graphs] Missing documentation for:
  1358. 1178.40 s [algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
  1359. 1178.50 s [pandoc-lua-engine] Phase: buildPhase
  1360. 1178.62 s [pandoc-server] Phase: buildPhase
  1361. 1178.62 s [pandoc-lua-engine] Preprocessing library for pandoc-lua-engine-0.4.3...
  1362. 1178.62 s [pandoc-lua-engine] Building library for pandoc-lua-engine-0.4.3...
  1363. 1178.66 s [algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
  1364. 1178.66 s [algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
  1365. 1178.67 s [algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
  1366. 1178.67 s [algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
  1367. 1178.69 s [algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
  1368. 1178.69 s [algebraic-graphs] - Algebra.Graph.Rep_Graph
  1369. 1178.70 s [algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
  1370. 1178.70 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
  1371. 1178.70 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
  1372. 1178.71 s [algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
  1373. 1178.71 s [algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
  1374. 1178.72 s [algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
  1375. 1178.72 s [algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
  1376. 1178.73 s [pandoc-server] Preprocessing library for pandoc-server-0.1.0.11...
  1377. 1178.73 s [pandoc-server] Building library for pandoc-server-0.1.0.11...
  1378. 1178.77 s [algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
  1379. 1178.77 s [algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
  1380. 1178.78 s [algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
  1381. 1178.78 s [algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
  1382. 1178.79 s [algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
  1383. 1178.79 s [algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
  1384. 1178.84 s [pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
  1385. 1178.93 s [pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
  1386. 1179.75 s [pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
  1387. 1179.75 s [pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
  1388. 1179.87 s [pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
  1389. 1179.87 s [pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
  1390. 1179.87 s [pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
  1391. 1179.87 s [pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
  1392. 1179.87 s [pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
  1393. 1179.87 s [pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
  1394. 1179.88 s [pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
  1395. 1179.90 s [pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
  1396. 1179.97 s [pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
  1397. 1179.99 s [pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
  1398. 1180.83 s [pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
  1399. 1180.83 s [pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
  1400. 1180.83 s [pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
  1401. 1180.93 s [pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
  1402. 1180.93 s [pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
  1403. 1180.93 s [pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
  1404. 1181.10 s [haskell-language-server] Preprocessing library 'hls-cabal-fmt-plugin' for haskell-language-server-2.12.0.0...
  1405. 1181.10 s [haskell-language-server] Building library 'hls-cabal-fmt-plugin' for haskell-language-server-2.12.0.0...
  1406. 1181.23 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 )
  1407. 1181.58 s [pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
  1408. 1182.31 s [pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
  1409. 1182.31 s [pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
  1410. 1182.31 s [pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
  1411. 1182.31 s [pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
  1412. 1182.31 s [pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
  1413. 1182.31 s [pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
  1414. 1182.31 s [pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
  1415. 1182.33 s [pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
  1416. 1182.33 s [pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
  1417. 1182.33 s [pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
  1418. 1182.33 s [pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
  1419. 1183.08 s [pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
  1420. 1183.22 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 )
  1421. 1183.67 s [pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
  1422. 1183.67 s [pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
  1423. 1183.67 s [pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
  1424. 1183.93 s [pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
  1425. 1183.99 s [pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
  1426. 1184.07 s [pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
  1427. 1184.34 s [pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
  1428. 1184.41 s [pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
  1429. 1184.88 s [pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
  1430. 1185.43 s [algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/,
  1431. 1185.45 s [algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
  1432. 1185.50 s [algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
  1433. 1185.51 s [algebraic-graphs] Phase: installPhase
  1434. 1185.59 s [algebraic-graphs] Installing library in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/algebraic-graphs-0.7-Dzdl7vkJHJu5iSqEy4BAAW
  1435. 1185.61 s [pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
  1436. 1185.61 s [pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
  1437. 1185.61 s [pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
  1438. 1185.61 s [pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
  1439. 1185.65 s [pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
  1440. 1185.65 s [pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
  1441. 1185.65 s [pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
  1442. 1185.65 s [pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
  1443. 1185.65 s [pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
  1444. 1185.99 s [pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
  1445. 1186.26 s [pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
  1446. 1186.34 s [pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
  1447. 1186.59 s [algebraic-graphs] Phase: fixupPhase
  1448. 1186.62 s [algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7
  1449. 1186.62 s [algebraic-graphs] shrinking /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHSalgebraic-graphs-0.7-Dzdl7vkJHJu5iSqEy4BAAW-ghc9.10.3.so
  1450. 1186.76 s [algebraic-graphs] checking for references to /build/ in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7...
  1451. 1186.80 s [algebraic-graphs] patching script interpreter paths in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7
  1452. 1186.81 s [algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/lib
  1453. 1187.05 s [pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
  1454. 1187.05 s [pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
  1455. 1187.05 s [pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
  1456. 1187.26 s [algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
  1457. 1187.29 s [algebraic-graphs] checking for references to /build/ in /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc...
  1458. 1187.33 s [algebraic-graphs] patching script interpreter paths in /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
  1459. 1187.34 s [pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
  1460. 1187.34 s [pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
  1461. 1187.34 s [pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
  1462. 1187.58 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7 /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
  1463. 1188.19 s [post-build-hook] Pushing 2 paths (70 are already present) using zstd to cache sellout ⏳
  1464. 1188.19 s [post-build-hook]
  1465. 1188.55 s [post-build-hook] Pushing /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc (10.41 MiB)
  1466. 1188.61 s [post-build-hook] Pushing /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7 (25.15 MiB)
  1467. 1189.83 s [post-build-hook]
  1468. 1189.83 s [post-build-hook] All done.
  1469. 1189.85 s [post-build-hook] Uploading to the NixCI cache: /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7 /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
  1470. 1189.89 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1471. 1189.91 s [post-build-hook] copying 2 paths...
  1472. 1189.91 s [post-build-hook] copying path '/nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
  1473. 1191.32 s [post-build-hook] copying path '/nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
  1474. 1198.34 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1475. 1198.54 s [post-build-hook] copying 1 paths...
  1476. 1198.54 s [post-build-hook] copying path '/nix/store/3dzyv0l64zb1w9qnlwdm3m9yb2dpp3pw-algebraic-graphs-0.7.drv' to 'https://cache.nix-ci.com'...
  1477. 1198.70 s Progress: 47 of 58 built (3 building), 771 of 771 downloaded from cache
  1478. 1198.78 s Building ghc-9.10.3-with-packages
  1479. 1198.78 s [haskell-language-server] Preprocessing library 'hls-module-name-plugin' for haskell-language-server-2.12.0.0...
  1480. 1198.78 s [haskell-language-server] Building library 'hls-module-name-plugin' for haskell-language-server-2.12.0.0...
  1481. 1198.78 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 )
  1482. 1198.78 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 )
  1483. 1198.78 s [pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
  1484. 1198.78 s [pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
  1485. 1198.78 s [pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
  1486. 1198.78 s [pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
  1487. 1198.78 s [pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
  1488. 1198.78 s [pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
  1489. 1198.78 s [pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
  1490. 1198.78 s [pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
  1491. 1198.78 s [pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
  1492. 1198.78 s [pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
  1493. 1198.78 s [pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
  1494. 1198.78 s [pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
  1495. 1198.78 s [pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
  1496. 1198.78 s [pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
  1497. 1198.78 s [pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
  1498. 1198.78 s [pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
  1499. 1198.78 s [pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
  1500. 1198.78 s [pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
  1501. 1198.78 s [pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
  1502. 1198.78 s [pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
  1503. 1198.78 s [pandoc-server] Phase: checkPhase
  1504. 1198.78 s [pandoc-server] Package has no test suites.
  1505. 1198.78 s [pandoc-server] Phase: haddockPhase
  1506. 1198.78 s [pandoc-server] Preprocessing library for pandoc-server-0.1.0.11...
  1507. 1198.78 s [pandoc-server] Running Haddock on library for pandoc-server-0.1.0.11...
  1508. 1198.78 s [pandoc-server] Warning: The documentation for the following packages are not installed. No
  1509. 1198.78 s [pandoc-server] links will be generated to these packages: attoparsec-0.14.4,
  1510. 1198.78 s [pandoc-server] attoparsec-0.14.4, libyaml-clib-0.2.5, pandoc-3.7.0.2, pandoc-3.7.0.2,
  1511. 1198.78 s [pandoc-server] vector-0.13.2.0
  1512. 1198.78 s [pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
  1513. 1198.78 s [pandoc-server] Haddock coverage:
  1514. 1198.78 s [pandoc-server] 0% ( 0 / 7) in 'Text.Pandoc.Server'
  1515. 1198.78 s [pandoc-server] Missing documentation for:
  1516. 1198.78 s [pandoc-server] Module header
  1517. 1198.78 s [pandoc-server] app (src/Text/Pandoc/Server.hs:200)
  1518. 1198.78 s [pandoc-server] API (src/Text/Pandoc/Server.hs:186)
  1519. 1198.78 s [pandoc-server] ServerOpts (src/Text/Pandoc/Server.hs:55)
  1520. 1198.78 s [pandoc-server] Params (src/Text/Pandoc/Server.hs:125)
  1521. 1198.78 s [pandoc-server] Blob (src/Text/Pandoc/Server.hs:112)
  1522. 1198.78 s [pandoc-server] parseServerOptsFromArgs (src/Text/Pandoc/Server.hs:99)
  1523. 1198.78 s [pandoc-server] Warning: Text.Pandoc.Server: could not find link destinations for:
  1524. 1198.78 s [pandoc-server] - Text.Pandoc.App.Opt.Opt
  1525. 1198.78 s [pandoc-server] - Text.Pandoc.Server.Output
  1526. 1198.86 s [ghc-9.10.3-with-packages] /nix/store/5cywz807jgyxilkmix7rwpy7501a4jr4-doctest-0.24.2/nix-support:
  1527. 1198.86 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1528. 1198.87 s [ghc-9.10.3-with-packages] /nix/store/q9bmv83s4921kh6z965q0v2glgm742gx-ghc-compat-plugin-0.1.0.1/nix-support:
  1529. 1198.87 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1530. 1198.87 s [ghc-9.10.3-with-packages] /nix/store/6s0czylb98l3w1dfdbw1lz6d0xz5dik2-hedgehog-1.5/nix-support:
  1531. 1198.87 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1532. 1198.88 s [ghc-9.10.3-with-packages] /nix/store/pfbygc0j19l5ynwc43cywq6g43s3dbsi-Cabal-3.12.1.0/nix-support:
  1533. 1198.88 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1534. 1198.91 s [pandoc-lua-engine] Preprocessing test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
  1535. 1198.91 s [pandoc-lua-engine] Building test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
  1536. 1198.92 s [ghc-9.10.3-with-packages] /nix/store/09796ziywv1s52214c383r9k7v4i34ww-cabal-doctest-1.0.12/nix-support:
  1537. 1198.92 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1538. 1198.94 s [ghc-9.10.3-with-packages] /nix/store/n9czvz6jy51zq5sbza2vagdx5ar7nq9f-temporary-1.3/nix-support:
  1539. 1198.94 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1540. 1198.94 s [ghc-9.10.3-with-packages] /nix/store/n9czvz6jy51zq5sbza2vagdx5ar7nq9f-temporary-1.3/nix-support:
  1541. 1198.94 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1542. 1198.94 s [ghc-9.10.3-with-packages] /nix/store/yv1515y35b5d87px2xnywdrzl57bzj36-ansi-terminal-1.1.3/nix-support:
  1543. 1198.94 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1544. 1198.95 s [ghc-9.10.3-with-packages] /nix/store/yv1515y35b5d87px2xnywdrzl57bzj36-ansi-terminal-1.1.3/nix-support:
  1545. 1198.95 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1546. 1198.95 s [ghc-9.10.3-with-packages] /nix/store/sjm0zblwxqfdk46ck7qrjg10f19k2b3q-async-2.2.5/nix-support:
  1547. 1198.95 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1548. 1198.95 s [ghc-9.10.3-with-packages] /nix/store/sjm0zblwxqfdk46ck7qrjg10f19k2b3q-async-2.2.5/nix-support:
  1549. 1198.95 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1550. 1198.95 s [ghc-9.10.3-with-packages] /nix/store/mrh8y1rc5sfl36wh0q014barx02dk48a-barbies-2.1.1.0/nix-support:
  1551. 1198.95 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1552. 1198.96 s [ghc-9.10.3-with-packages] /nix/store/mrh8y1rc5sfl36wh0q014barx02dk48a-barbies-2.1.1.0/nix-support:
  1553. 1198.96 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1554. 1198.96 s [ghc-9.10.3-with-packages] /nix/store/nwqnn7mc9y6m6qhlf4b04dm8b694ihir-concurrent-output-1.10.21/nix-support:
  1555. 1198.96 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1556. 1198.97 s [ghc-9.10.3-with-packages] /nix/store/nwqnn7mc9y6m6qhlf4b04dm8b694ihir-concurrent-output-1.10.21/nix-support:
  1557. 1198.97 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1558. 1198.97 s [ghc-9.10.3-with-packages] /nix/store/c0kvhsdh044cby9s385kdp6fzrwnx0b2-lifted-async-0.10.2.7/nix-support:
  1559. 1198.97 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1560. 1198.98 s [ghc-9.10.3-with-packages] /nix/store/c0kvhsdh044cby9s385kdp6fzrwnx0b2-lifted-async-0.10.2.7/nix-support:
  1561. 1198.98 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1562. 1198.98 s [ghc-9.10.3-with-packages] /nix/store/88zzrq6z3q2i7raa4bqrfzp2xm1spfzs-mmorph-1.2.1/nix-support:
  1563. 1198.98 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1564. 1198.98 s [ghc-9.10.3-with-packages] /nix/store/88zzrq6z3q2i7raa4bqrfzp2xm1spfzs-mmorph-1.2.1/nix-support:
  1565. 1198.98 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1566. 1198.98 s [ghc-9.10.3-with-packages] /nix/store/g2qvb2hxv61dkd7kcwl314bfkn49w353-monad-control-1.0.3.1/nix-support:
  1567. 1198.98 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1568. 1198.98 s [ghc-9.10.3-with-packages] /nix/store/g2qvb2hxv61dkd7kcwl314bfkn49w353-monad-control-1.0.3.1/nix-support:
  1569. 1198.98 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1570. 1198.99 s [ghc-9.10.3-with-packages] /nix/store/6cndgccwks6pzgpp40sd3yqj1gwrwcpc-pretty-show-1.10/nix-support:
  1571. 1198.99 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1572. 1198.99 s [ghc-9.10.3-with-packages] /nix/store/6cndgccwks6pzgpp40sd3yqj1gwrwcpc-pretty-show-1.10/nix-support:
  1573. 1198.99 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1574. 1198.99 s [ghc-9.10.3-with-packages] /nix/store/cbkpv0a2jd34ji7dmwlcs5079p09clw9-primitive-0.9.1.0/nix-support:
  1575. 1198.99 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1576. 1199.00 s [ghc-9.10.3-with-packages] /nix/store/cbkpv0a2jd34ji7dmwlcs5079p09clw9-primitive-0.9.1.0/nix-support:
  1577. 1199.00 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1578. 1199.00 s [ghc-9.10.3-with-packages] /nix/store/8l34z8pqyxz1a375p2mjy2x9pl7qwv9j-random-1.2.1.3/nix-support:
  1579. 1199.00 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1580. 1199.00 s [ghc-9.10.3-with-packages] /nix/store/8l34z8pqyxz1a375p2mjy2x9pl7qwv9j-random-1.2.1.3/nix-support:
  1581. 1199.00 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1582. 1199.00 s [ghc-9.10.3-with-packages] /nix/store/h9ngfa8xz6vn23w9hbg6hfcciqp1618a-resourcet-1.3.0/nix-support:
  1583. 1199.00 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1584. 1199.00 s [ghc-9.10.3-with-packages] /nix/store/h9ngfa8xz6vn23w9hbg6hfcciqp1618a-resourcet-1.3.0/nix-support:
  1585. 1199.00 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1586. 1199.01 s [ghc-9.10.3-with-packages] /nix/store/7vn9fv3b7f0ajmhrb61h3cnsym1y3n3f-safe-exceptions-0.1.7.4/nix-support:
  1587. 1199.01 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1588. 1199.01 s [ghc-9.10.3-with-packages] /nix/store/7vn9fv3b7f0ajmhrb61h3cnsym1y3n3f-safe-exceptions-0.1.7.4/nix-support:
  1589. 1199.01 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1590. 1199.01 s [pandoc-lua-engine] [1 of 5] Compiling Tests.Lua
  1591. 1199.01 s [ghc-9.10.3-with-packages] /nix/store/na9f6zzz8s1k6g1id7dcffl0gi7r7cjj-transformers-base-0.4.6/nix-support:
  1592. 1199.01 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1593. 1199.01 s [ghc-9.10.3-with-packages] /nix/store/na9f6zzz8s1k6g1id7dcffl0gi7r7cjj-transformers-base-0.4.6/nix-support:
  1594. 1199.01 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1595. 1199.01 s [ghc-9.10.3-with-packages] /nix/store/25k1v3pwwy7x5gym9q9dhviv0csxvvmn-wl-pprint-annotated-0.1.0.1/nix-support:
  1596. 1199.01 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1597. 1199.02 s [ghc-9.10.3-with-packages] /nix/store/25k1v3pwwy7x5gym9q9dhviv0csxvvmn-wl-pprint-annotated-0.1.0.1/nix-support:
  1598. 1199.02 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1599. 1199.02 s [ghc-9.10.3-with-packages] /nix/store/039jxih833h0ava16hkazxrcsv703sfj-Cabal-syntax-3.12.1.0/nix-support:
  1600. 1199.02 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1601. 1199.04 s [ghc-9.10.3-with-packages] /nix/store/039jxih833h0ava16hkazxrcsv703sfj-Cabal-syntax-3.12.1.0/nix-support:
  1602. 1199.04 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1603. 1199.05 s [ghc-9.10.3-with-packages] /nix/store/8gj8b8i9s12rdfbqmdph9s03wnpqh44d-ansi-terminal-types-1.1.3/nix-support:
  1604. 1199.05 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1605. 1199.05 s [ghc-9.10.3-with-packages] /nix/store/8gj8b8i9s12rdfbqmdph9s03wnpqh44d-ansi-terminal-types-1.1.3/nix-support:
  1606. 1199.05 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1607. 1199.06 s [ghc-9.10.3-with-packages] /nix/store/m2gbv27qwdgpizs36ysfzkc543z73msp-hashable-1.5.0.0/nix-support:
  1608. 1199.06 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1609. 1199.06 s [ghc-9.10.3-with-packages] /nix/store/m2gbv27qwdgpizs36ysfzkc543z73msp-hashable-1.5.0.0/nix-support:
  1610. 1199.06 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1611. 1199.06 s [ghc-9.10.3-with-packages] /nix/store/k735nrbnq1v6hqj9l4aqf84zvqnc17fb-distributive-0.6.2.1/nix-support:
  1612. 1199.06 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1613. 1199.06 s [ghc-9.10.3-with-packages] /nix/store/k735nrbnq1v6hqj9l4aqf84zvqnc17fb-distributive-0.6.2.1/nix-support:
  1614. 1199.06 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1615. 1199.07 s [ghc-9.10.3-with-packages] /nix/store/qlaran7276vq5yfddk8gjyb0bbl7463d-constraints-0.14.2/nix-support:
  1616. 1199.07 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1617. 1199.07 s [ghc-9.10.3-with-packages] /nix/store/qlaran7276vq5yfddk8gjyb0bbl7463d-constraints-0.14.2/nix-support:
  1618. 1199.07 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1619. 1199.07 s [ghc-9.10.3-with-packages] /nix/store/anslqcpw3nb5ij1vvfxxqb4m5q9x9jkp-lifted-base-0.2.3.12/nix-support:
  1620. 1199.07 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1621. 1199.08 s [ghc-9.10.3-with-packages] /nix/store/anslqcpw3nb5ij1vvfxxqb4m5q9x9jkp-lifted-base-0.2.3.12/nix-support:
  1622. 1199.08 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1623. 1199.08 s [ghc-9.10.3-with-packages] /nix/store/yf7r6nnmfc4mwj08iavfcxpp70mj6mkq-transformers-compat-0.7.2/nix-support:
  1624. 1199.08 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1625. 1199.08 s [ghc-9.10.3-with-packages] /nix/store/yf7r6nnmfc4mwj08iavfcxpp70mj6mkq-transformers-compat-0.7.2/nix-support:
  1626. 1199.08 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1627. 1199.09 s [ghc-9.10.3-with-packages] /nix/store/v6jdycf0p0gypqgg67hc7k45i6p25cwj-splitmix-0.1.3.1/nix-support:
  1628. 1199.09 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1629. 1199.09 s [ghc-9.10.3-with-packages] /nix/store/v6jdycf0p0gypqgg67hc7k45i6p25cwj-splitmix-0.1.3.1/nix-support:
  1630. 1199.09 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1631. 1199.09 s [ghc-9.10.3-with-packages] /nix/store/3d0qs4aijgblg7mvsxzr2b168hmncirn-unliftio-core-0.2.1.0/nix-support:
  1632. 1199.09 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1633. 1199.09 s [ghc-9.10.3-with-packages] /nix/store/3d0qs4aijgblg7mvsxzr2b168hmncirn-unliftio-core-0.2.1.0/nix-support:
  1634. 1199.09 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1635. 1199.10 s [ghc-9.10.3-with-packages] /nix/store/kspxaj152b3jyd5yfwmkb8fi5l571rms-base-orphans-0.9.3/nix-support:
  1636. 1199.10 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1637. 1199.10 s [ghc-9.10.3-with-packages] /nix/store/kspxaj152b3jyd5yfwmkb8fi5l571rms-base-orphans-0.9.3/nix-support:
  1638. 1199.10 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1639. 1199.10 s [ghc-9.10.3-with-packages] /nix/store/c1ickhy1b9cnskfyjr6bhh9xbczy60w0-tagged-0.8.9/nix-support:
  1640. 1199.10 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1641. 1199.10 s [ghc-9.10.3-with-packages] /nix/store/c1ickhy1b9cnskfyjr6bhh9xbczy60w0-tagged-0.8.9/nix-support:
  1642. 1199.10 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1643. 1199.10 s [ghc-9.10.3-with-packages] /nix/store/rwvnxl3wi6qdd2mffsl3rymh0infb7nh-boring-0.2.2/nix-support:
  1644. 1199.10 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1645. 1199.11 s [ghc-9.10.3-with-packages] /nix/store/rwvnxl3wi6qdd2mffsl3rymh0infb7nh-boring-0.2.2/nix-support:
  1646. 1199.11 s [ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
  1647. 1199.98 s [ghc-9.10.3-with-packages] Warning: include-dirs: /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-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-e377/include doesn't exist or isn't a directory
  1648. 1201.39 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages
  1649. 1202.21 s [post-build-hook] Pushing 1 paths (152 are already present) using zstd to cache sellout ⏳
  1650. 1202.21 s [post-build-hook]
  1651. 1203.64 s [post-build-hook] Pushing /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages (5.54 MiB)
  1652. 1215.41 s [post-build-hook]
  1653. 1215.41 s [post-build-hook] All done.
  1654. 1215.43 s [post-build-hook] Uploading to the NixCI cache: /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages
  1655. 1215.48 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1656. 1215.64 s [post-build-hook] copying 1 paths...
  1657. 1215.64 s [post-build-hook] copying path '/nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages' to 'https://cache.nix-ci.com'...
  1658. 1216.89 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1659. 1217.09 s [post-build-hook] copying 1 paths...
  1660. 1217.09 s [post-build-hook] copying path '/nix/store/0h5sbj8f13cma0bykd9dqf2b4786c45f-ghc-9.10.3-with-packages.drv' to 'https://cache.nix-ci.com'...
  1661. 1217.25 s Progress: 48 of 57 built (3 building), 771 of 771 downloaded from cache
  1662. 1217.25 s [haskell-language-server] Preprocessing library 'hls-qualify-imported-names-plugin' for haskell-language-server-2.12.0.0...
  1663. 1217.25 s [haskell-language-server] Building library 'hls-qualify-imported-names-plugin' for haskell-language-server-2.12.0.0...
  1664. 1217.25 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.QualifyImportedNames ( plugins/hls-qualify-imported-names-plugin/src/Ide/Plugin/QualifyImportedNames.hs, dist/build/hls-qualify-imported-names-plugin/Ide/Plugin/QualifyImportedNames.o, dist/build/hls-qualify-imported-names-plugin/Ide/Plugin/QualifyImportedNames.dyn_o )
  1665. 1217.25 s [haskell-language-server] [1 of 1] Compiling Ide.Plugin.QualifyImportedNames ( plugins/hls-qualify-imported-names-plugin/src/Ide/Plugin/QualifyImportedNames.hs, dist/build/hls-qualify-imported-names-plugin/Ide/Plugin/QualifyImportedNames.p_o )
  1666. 1217.25 s [haskell-language-server] Preprocessing executable 'ghcide-bench' for haskell-language-server-2.12.0.0...
  1667. 1217.25 s [haskell-language-server] Building executable 'ghcide-bench' for haskell-language-server-2.12.0.0...
  1668. 1217.25 s [haskell-language-server] [1 of 1] Compiling Main ( ghcide-bench/exe/Main.hs, dist/build/ghcide-bench/ghcide-bench-tmp/Main.dyn_o )
  1669. 1217.25 s [haskell-language-server] [2 of 2] Linking dist/build/ghcide-bench/ghcide-bench
  1670. 1217.25 s [haskell-language-server] Preprocessing library 'hls-rename-plugin' for haskell-language-server-2.12.0.0...
  1671. 1217.25 s [haskell-language-server] Building library 'hls-rename-plugin' for haskell-language-server-2.12.0.0...
  1672. 1217.25 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 )
  1673. 1217.25 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 )
  1674. 1217.25 s [pandoc-lua-engine] [2 of 5] Compiling Tests.Lua.Module
  1675. 1217.25 s [pandoc-lua-engine] [3 of 5] Compiling Tests.Lua.Reader
  1676. 1217.25 s [pandoc-lua-engine] [4 of 5] Compiling Tests.Lua.Writer
  1677. 1217.25 s [pandoc-lua-engine] [5 of 5] Compiling Main
  1678. 1217.25 s [pandoc-lua-engine] [6 of 6] Linking dist/build/test-pandoc-lua-engine/test-pandoc-lua-engine
  1679. 1217.25 s [pandoc-lua-engine] buildPhase completed in 32 seconds
  1680. 1217.25 s [pandoc-lua-engine] Phase: checkPhase
  1681. 1217.25 s [pandoc-lua-engine] Running 1 test suites...
  1682. 1217.25 s [pandoc-lua-engine] Test suite test-pandoc-lua-engine: RUNNING...
  1683. 1217.25 s [pandoc-lua-engine] pandoc Lua engine
  1684. 1217.25 s [pandoc-lua-engine] Lua filters
  1685. 1217.25 s [pandoc-lua-engine] macro expansion via filter: OK
  1686. 1217.25 s [pandoc-lua-engine] convert all plains to paras: OK
  1687. 1217.25 s [pandoc-lua-engine] convert display math to inline math: OK (0.02s)
  1688. 1217.25 s [pandoc-lua-engine] make hello world document: OK
  1689. 1217.25 s [pandoc-lua-engine] implicit doc filter: OK
  1690. 1217.25 s [pandoc-lua-engine] parse raw markdown blocks: OK
  1691. 1217.25 s [pandoc-lua-engine] allow shorthand functions for quote types: OK
  1692. 1217.25 s [pandoc-lua-engine] Count inlines via metatable catch-all: OK
  1693. 1217.25 s [pandoc-lua-engine] Count blocks via Block-specific catch-all: OK
  1694. 1217.25 s [pandoc-lua-engine] Smart constructors: OK
  1695. 1217.25 s [pandoc-lua-engine] Convert header upper case: OK
  1696. 1217.25 s [pandoc-lua-engine] Attribute lists are convenient to use: OK
  1697. 1217.25 s [pandoc-lua-engine] Filter list of inlines: OK
  1698. 1217.25 s [pandoc-lua-engine] Filter list of blocks: OK
  1699. 1217.25 s [pandoc-lua-engine] Filter Meta: OK
  1700. 1217.25 s [pandoc-lua-engine] Script filename is set: OK
  1701. 1217.25 s [pandoc-lua-engine] Pandoc version is set: OK
  1702. 1217.25 s [pandoc-lua-engine] Pandoc types version is set: OK
  1703. 1217.25 s [pandoc-lua-engine] require file: OK
  1704. 1217.25 s [pandoc-lua-engine] Allow singleton inline in constructors: OK
  1705. 1217.25 s [pandoc-lua-engine] Elements with Attr have `attr` accessor: OK
  1706. 1217.25 s [pandoc-lua-engine] module `pandoc.system` is present: OK
  1707. 1217.26 s [pandoc-lua-engine] global modules
  1708. 1217.26 s [pandoc-lua-engine] module 'lpeg' is loaded into a global: OK
  1709. 1217.26 s [pandoc-lua-engine] module 're' is loaded into a global: OK
  1710. 1217.26 s [pandoc-lua-engine] module 'lpeg' is available via `require`: OK
  1711. 1217.26 s [pandoc-lua-engine] module 're' is available via `require`: OK
  1712. 1217.26 s [pandoc-lua-engine] informative error messages: OK
  1713. 1217.26 s [pandoc-lua-engine] Lua modules
  1714. 1217.26 s [pandoc-lua-engine] pandoc: OK (0.01s)
  1715. 1217.26 s [pandoc-lua-engine] +++ Success: 79 Lua tests passed
  1716. 1217.26 s [pandoc-lua-engine] pandoc.List: OK
  1717. 1217.26 s [pandoc-lua-engine] +++ Success: 22 Lua tests passed
  1718. 1217.26 s [pandoc-lua-engine] pandoc.format: OK
  1719. 1217.26 s [pandoc-lua-engine] +++ Success: 3 Lua tests passed
  1720. 1217.26 s [pandoc-lua-engine] pandoc.image: OK
  1721. 1217.26 s [pandoc-lua-engine] +++ Success: 6 Lua tests passed
  1722. 1217.26 s [pandoc-lua-engine] pandoc.json: OK
  1723. 1217.26 s [pandoc-lua-engine] +++ Success: 21 Lua tests passed
  1724. 1217.26 s [pandoc-lua-engine] pandoc.log: OK
  1725. 1217.26 s [pandoc-lua-engine] +++ Success: 8 Lua tests passed
  1726. 1217.26 s [pandoc-lua-engine] pandoc.mediabag: OK
  1727. 1217.26 s [pandoc-lua-engine] +++ Success: 9 Lua tests passed
  1728. 1217.26 s [pandoc-lua-engine] pandoc.path: OK
  1729. 1217.26 s [pandoc-lua-engine] +++ Success: 5 Lua tests passed
  1730. 1217.26 s [pandoc-lua-engine] pandoc.structure: OK
  1731. 1217.26 s [pandoc-lua-engine] +++ Success: 11 Lua tests passed
  1732. 1217.26 s [pandoc-lua-engine] pandoc.template: OK (0.02s)
  1733. 1217.26 s [pandoc-lua-engine] +++ Success: 16 Lua tests passed
  1734. 1217.26 s [pandoc-lua-engine] pandoc.text: OK
  1735. 1217.26 s [pandoc-lua-engine] +++ Success: 9 Lua tests passed
  1736. 1217.26 s [pandoc-lua-engine] pandoc.types: OK
  1737. 1217.26 s [pandoc-lua-engine] +++ Success: 13 Lua tests passed
  1738. 1217.26 s [pandoc-lua-engine] pandoc.utils: OK
  1739. 1217.26 s [pandoc-lua-engine] +++ Success: 45 Lua tests passed
  1740. 1217.26 s [pandoc-lua-engine] globals: OK (0.02s)
  1741. 1217.26 s [pandoc-lua-engine] +++ Success: 42 Lua tests passed
  1742. 1217.26 s [pandoc-lua-engine] Custom writers
  1743. 1217.26 s [pandoc-lua-engine] default testsuite: OK (0.07s)
  1744. 1217.26 s [pandoc-lua-engine] tables testsuite: OK (0.03s)
  1745. 1217.26 s [pandoc-lua-engine] bytestring writer: OK
  1746. 1217.26 s [pandoc-lua-engine] template: OK
  1747. 1217.26 s [pandoc-lua-engine] preset extensions: OK
  1748. 1217.26 s [pandoc-lua-engine] modified extensions: OK
  1749. 1217.26 s [pandoc-lua-engine] Custom readers
  1750. 1217.26 s [pandoc-lua-engine] read binary to code block: OK
  1751. 1217.26 s [pandoc-lua-engine]
  1752. 1217.26 s [pandoc-lua-engine] All 48 tests passed (0.31s)
  1753. 1217.26 s [pandoc-lua-engine] Test suite test-pandoc-lua-engine: PASS
  1754. 1217.26 s [pandoc-lua-engine] Test suite logged to:
  1755. 1217.26 s [pandoc-lua-engine] dist/test/pandoc-lua-engine-0.4.3-test-pandoc-lua-engine.log
  1756. 1217.26 s [pandoc-lua-engine] 1 of 1 test suites (1 of 1 test cases) passed.
  1757. 1217.26 s [pandoc-lua-engine] Phase: haddockPhase
  1758. 1217.26 s [pandoc-lua-engine] Preprocessing library for pandoc-lua-engine-0.4.3...
  1759. 1217.26 s [pandoc-lua-engine] Running Haddock on library for pandoc-lua-engine-0.4.3...
  1760. 1217.26 s [pandoc-lua-engine] Warning: The documentation for the following packages are not installed. No
  1761. 1217.26 s [pandoc-lua-engine] links will be generated to these packages: attoparsec-0.14.4,
  1762. 1217.26 s [pandoc-server] Documentation created: dist/doc/html/pandoc-server/,
  1763. 1217.26 s [pandoc-server] dist/doc/html/pandoc-server/pandoc-server.txt
  1764. 1217.26 s [pandoc-server] Phase: installPhase
  1765. 1217.26 s [pandoc-server] Installing library in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  1766. 1217.26 s [pandoc-server] Phase: fixupPhase
  1767. 1217.26 s [pandoc-server] shrinking RPATHs of ELF executables and libraries in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
  1768. 1217.26 s [pandoc-server] shrinking /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHSpandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq-ghc9.10.3.so
  1769. 1217.26 s [pandoc-server] checking for references to /build/ in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11...
  1770. 1217.26 s [pandoc-server] patching script interpreter paths in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
  1771. 1217.26 s [pandoc-server] stripping (with command strip and flags -S -p) in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib
  1772. 1217.26 s [pandoc-server] shrinking RPATHs of ELF executables and libraries in /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc
  1773. 1217.26 s [pandoc-server] checking for references to /build/ in /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc...
  1774. 1217.26 s [pandoc-server] patching script interpreter paths in /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc
  1775. 1217.26 s [pandoc-lua-engine] attoparsec-0.14.4, libyaml-clib-0.2.5, pandoc-3.7.0.2, pandoc-3.7.0.2,
  1776. 1217.26 s [pandoc-lua-engine] vector-0.13.2.0
  1777. 1217.26 s [pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
  1778. 1217.26 s [pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
  1779. 1217.26 s [pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
  1780. 1217.26 s [pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
  1781. 1217.26 s [pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
  1782. 1217.26 s [pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
  1783. 1217.26 s [pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
  1784. 1217.26 s [pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
  1785. 1217.26 s [pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
  1786. 1217.26 s [pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
  1787. 1217.26 s [pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
  1788. 1217.26 s [pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
  1789. 1217.26 s [pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
  1790. 1217.26 s [pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
  1791. 1217.26 s [pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
  1792. 1217.26 s [pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
  1793. 1217.26 s [pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
  1794. 1217.26 s [pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
  1795. 1217.26 s [pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
  1796. 1217.26 s [pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
  1797. 1217.26 s [pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
  1798. 1217.26 s [pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
  1799. 1217.26 s [pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
  1800. 1217.26 s [pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
  1801. 1217.26 s [pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
  1802. 1217.26 s [pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
  1803. 1217.26 s [pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
  1804. 1217.26 s [pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
  1805. 1217.26 s [pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
  1806. 1217.26 s [pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
  1807. 1217.26 s [pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
  1808. 1217.26 s [pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
  1809. 1217.26 s [pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
  1810. 1217.26 s [pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
  1811. 1217.26 s [pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
  1812. 1217.26 s [pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
  1813. 1217.26 s [pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
  1814. 1217.26 s [pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
  1815. 1217.26 s [pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
  1816. 1217.26 s [pandoc-lua-engine] Haddock coverage:
  1817. 1217.26 s [pandoc-lua-engine] Warning: 'Chunk' is ambiguous. It is defined
  1818. 1217.26 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1819. 1217.26 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1820. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1821. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1822. 1217.26 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Chunks’
  1823. 1217.26 s [pandoc-lua-engine] Warning: 'ChunkedDoc' is ambiguous. It is defined
  1824. 1217.26 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1825. 1217.26 s [pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
  1826. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1827. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1828. 1217.26 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Chunks’
  1829. 1217.26 s [pandoc-lua-engine] Warning: 'Reference' is ambiguous. It is defined
  1830. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1831. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1832. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1833. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1834. 1217.26 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1835. 1217.26 s [pandoc-lua-engine] Warning: 'ItemId' is ambiguous. It is defined
  1836. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1837. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1838. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1839. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1840. 1217.26 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1841. 1217.26 s [pandoc-lua-engine] Warning: 'Name' is ambiguous. It is defined
  1842. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1843. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1844. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1845. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1846. 1217.26 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1847. 1217.26 s [pandoc-lua-engine] Warning: 'Date' is ambiguous. It is defined
  1848. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1849. 1217.26 s [pandoc-lua-engine] * in ‘Citeproc.Types’
  1850. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1851. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1852. 1217.26 s [pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
  1853. 1217.26 s [pandoc-lua-engine] Warning: 'Sources' is ambiguous. It is defined
  1854. 1217.26 s [pandoc-lua-engine] * in ‘Text.Pandoc.Sources’
  1855. 1217.26 s [pandoc-lua-engine] * in ‘Text.Pandoc.Sources’
  1856. 1217.26 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1857. 1217.26 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1858. 1217.44 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
  1859. 1225.69 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  1860. 1225.70 s [post-build-hook] Uploading to the NixCI cache: /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
  1861. 1225.74 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1862. 1225.79 s [post-build-hook] copying 1 paths...
  1863. 1225.79 s [post-build-hook] copying path '/nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11' to 'https://cache.nix-ci.com'...
  1864. 1226.51 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1865. 1226.61 s [post-build-hook] copying 0 paths...
  1866. 1226.63 s Progress: 49 of 57 built (2 building), 771 of 771 downloaded from cache
  1867. 1226.63 s [haskell-language-server] Preprocessing library 'hls-call-hierarchy-plugin' for haskell-language-server-2.12.0.0...
  1868. 1226.63 s [haskell-language-server] Building library 'hls-call-hierarchy-plugin' for haskell-language-server-2.12.0.0...
  1869. 1226.63 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 )
  1870. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Sources’
  1871. 1226.63 s [pandoc-lua-engine] Warning: 'Lua' is ambiguous. It is defined
  1872. 1226.63 s [pandoc-lua-engine] * in ‘HsLua.Core.Error’
  1873. 1226.63 s [pandoc-lua-engine] * in ‘HsLua.Core.Types’
  1874. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1875. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1876. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined in ‘HsLua.Core.Error’
  1877. 1226.63 s [pandoc-lua-engine] Warning: 'PandocLua' is ambiguous. It is defined
  1878. 1226.63 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:23
  1879. 1226.63 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1880. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1881. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1882. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1883. 1226.63 s [pandoc-lua-engine] Warning: 'ExtensionConfig' is out of scope.
  1884. 1226.63 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1885. 1226.63 s [pandoc-lua-engine] Warning: 'ExtensionsConfig' is ambiguous. It is defined
  1886. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Format’
  1887. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Format’
  1888. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1889. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1890. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Format’
  1891. 1226.63 s [pandoc-lua-engine] Warning: 'enable' is out of scope.
  1892. 1226.63 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1893. 1226.63 s [pandoc-lua-engine] Warning: 'disable' is out of scope.
  1894. 1226.63 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1895. 1226.63 s [pandoc-lua-engine] Warning: 'WriterOptions' is ambiguous. It is defined
  1896. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1897. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1898. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1899. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1900. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Options’
  1901. 1226.63 s [pandoc-lua-engine] Warning: 'Pandoc' is ambiguous. It is defined
  1902. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Definition’
  1903. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Definition’
  1904. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1905. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1906. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Definition’
  1907. 1226.63 s [pandoc-lua-engine] Warning: 'Chunk' is out of scope.
  1908. 1226.63 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1909. 1226.63 s [pandoc-lua-engine] Warning: 'ReaderOptions' is ambiguous. It is defined
  1910. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1911. 1226.63 s [pandoc-lua-engine] * in ‘Text.Pandoc.Options’
  1912. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1913. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1914. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Options’
  1915. 1226.63 s [pandoc-lua-engine] Warning: 'read' is out of scope.
  1916. 1226.63 s [pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
  1917. 1226.63 s [pandoc-lua-engine] Warning: 'PandocLua' is ambiguous. It is defined
  1918. 1226.63 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:23
  1919. 1226.63 s [pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1920. 1226.63 s [pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
  1921. 1226.63 s [pandoc-lua-engine] by specifying the type/value namespace explicitly.
  1922. 1226.63 s [pandoc-lua-engine] Defaulting to the one defined at src/Text/Pandoc/Lua/PandocLua.hs:36:1
  1923. 1226.63 s [pandoc-lua-engine] 100% ( 11 / 11) in 'Text.Pandoc.Lua'
  1924. 1226.63 s [pandoc-lua-engine] Warning: Text.Pandoc.Lua: could not find link destinations for:
  1925. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Options.WriterOptions
  1926. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Error.PandocError
  1927. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Options.ReaderOptions
  1928. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Class.CommonState.CommonState
  1929. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Class.PandocMonad.PandocMonad
  1930. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Scripting.ScriptingEngine
  1931. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Filter.Environment.Environment
  1932. 1226.63 s [pandoc-lua-engine] - Text.Pandoc.Scripting.CustomComponents
  1933. 1226.63 s [pandoc-lua-engine] Documentation created: dist/doc/html/pandoc-lua-engine/,
  1934. 1226.63 s [pandoc-lua-engine] dist/doc/html/pandoc-lua-engine/pandoc-lua-engine.txt
  1935. 1226.63 s [pandoc-lua-engine] Preprocessing test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
  1936. 1226.63 s [pandoc-lua-engine] Phase: installPhase
  1937. 1226.63 s [pandoc-lua-engine] Installing library in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  1938. 1226.63 s [pandoc-lua-engine] Phase: fixupPhase
  1939. 1226.63 s [pandoc-lua-engine] shrinking RPATHs of ELF executables and libraries in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
  1940. 1226.63 s [pandoc-lua-engine] shrinking /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHSpandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98-ghc9.10.3.so
  1941. 1226.63 s [pandoc-lua-engine] checking for references to /build/ in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3...
  1942. 1226.63 s [pandoc-lua-engine] patching script interpreter paths in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
  1943. 1226.63 s [pandoc-lua-engine] stripping (with command strip and flags -S -p) in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib
  1944. 1226.63 s [pandoc-lua-engine] shrinking RPATHs of ELF executables and libraries in /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc
  1945. 1226.63 s [pandoc-lua-engine] checking for references to /build/ in /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc...
  1946. 1226.63 s [pandoc-lua-engine] patching script interpreter paths in /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc
  1947. 1226.93 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
  1948. 1234.66 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  1949. 1234.68 s [post-build-hook] Uploading to the NixCI cache: /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
  1950. 1234.72 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1951. 1234.81 s [post-build-hook] copying 1 paths...
  1952. 1234.81 s [post-build-hook] copying path '/nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3' to 'https://cache.nix-ci.com'...
  1953. 1240.64 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1954. 1240.77 s [post-build-hook] copying 0 paths...
  1955. 1240.79 s Progress: 50 of 57 built (1 building), 771 of 771 downloaded from cache
  1956. 1240.87 s Building pandoc-cli
  1957. 1240.87 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 )
  1958. 1240.87 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 )
  1959. 1240.88 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 )
  1960. 1240.88 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 )
  1961. 1240.88 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 )
  1962. 1240.88 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 )
  1963. 1240.88 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 )
  1964. 1241.28 s [haskell-language-server] Preprocessing library for haskell-language-server-2.12.0.0...
  1965. 1241.28 s [haskell-language-server] Building library for haskell-language-server-2.12.0.0...
  1966. 1241.50 s [haskell-language-server] <no location info>: warning: [GHC-42258] [-Wunused-packages]
  1967. 1241.50 s [haskell-language-server] The following packages were specified via -package or -package-id flags,
  1968. 1241.50 s [haskell-language-server] but were not needed for compilation:
  1969. 1241.50 s [haskell-language-server] - ghc-9.10.3 (exposed by flag -package-id ghc-9.10.3-5702)
  1970. 1241.50 s [haskell-language-server]
  1971. 1241.52 s [haskell-language-server] [1 of 5] Compiling HlsPlugins ( src/HlsPlugins.hs, dist/build/HlsPlugins.o, dist/build/HlsPlugins.dyn_o )
  1972. 1241.64 s [pandoc-cli] Phase: setupCompilerEnvironmentPhase
  1973. 1241.65 s [pandoc-cli] Build with /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3.
  1974. 1242.31 s [pandoc-cli] Phase: unpackPhase
  1975. 1242.31 s [pandoc-cli] unpacking source archive /nix/store/l1s1s9sdrxfqabvc0hl1i6jbdyzaj2ci-pandoc-cli-3.7.0.2.tar.gz
  1976. 1242.32 s [pandoc-cli] source root is pandoc-cli-3.7.0.2
  1977. 1242.33 s [pandoc-cli] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-cli-3.7.0.2/src/pandoc.hs"
  1978. 1242.33 s [pandoc-cli] Phase: patchPhase
  1979. 1242.35 s [pandoc-cli] Phase: compileBuildDriverPhase
  1980. 1242.35 s [pandoc-cli] setupCompileFlags: -package-db=/build/tmp.GXJgRSe9Rs/setup-package.conf.d -threaded
  1981. 1242.40 s [pandoc-cli] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.GXJgRSe9Rs/Main.o )
  1982. 1242.45 s [pandoc-cli] [2 of 2] Linking Setup
  1983. 1242.74 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 )
  1984. 1242.74 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 )
  1985. 1243.65 s [pandoc-cli] Phase: updateAutotoolsGnuConfigScriptsPhase
  1986. 1243.66 s [pandoc-cli] Phase: configurePhase
  1987. 1243.66 s [pandoc-cli] configureFlags: --verbose --prefix=/nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --with-gcc=gcc --package-db=/build/tmp.GXJgRSe9Rs/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/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
  1988. 1243.67 s [pandoc-cli] Using Parsec parser
  1989. 1243.67 s [pandoc-cli] Configuring pandoc-cli-3.7.0.2...
  1990. 1243.98 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 )
  1991. 1244.17 s [pandoc-cli] Flags chosen: lua=True, nightly=False, server=True
  1992. 1244.28 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 )
  1993. 1244.45 s [pandoc-cli] Dependency base >=4.12 && <5: using base-4.20.2.0
  1994. 1244.45 s [pandoc-cli] Dependency hslua-cli >=1.4.1 && <1.5: using hslua-cli-1.4.3
  1995. 1244.45 s [pandoc-cli] Dependency pandoc ==3.7.0.2: using pandoc-3.7.0.2
  1996. 1244.45 s [pandoc-cli] Dependency pandoc-lua-engine >=0.4.3 && <0.5: using pandoc-lua-engine-0.4.3
  1997. 1244.45 s [pandoc-cli] Dependency pandoc-server >=0.1.0.9 && <0.2: using pandoc-server-0.1.0.11
  1998. 1244.45 s [pandoc-cli] Dependency safe: using safe-0.3.21
  1999. 1244.45 s [pandoc-cli] Dependency temporary >=1.1 && <1.4: using temporary-1.3
  2000. 1244.45 s [pandoc-cli] Dependency text: using text-2.1.3
  2001. 1244.45 s [pandoc-cli] Dependency wai-extra >=3.0.24: using wai-extra-3.1.18
  2002. 1244.45 s [pandoc-cli] Dependency warp: using warp-3.4.9
  2003. 1244.45 s [pandoc-cli] Source component graph: component exe:pandoc
  2004. 1244.45 s [pandoc-cli] Configured component graph:
  2005. 1244.45 s [pandoc-cli] component pandoc-cli-3.7.0.2-GQYyxtqEbS2AsesU73JW3X-pandoc
  2006. 1244.45 s [pandoc-cli] include base-4.20.2.0-acb8
  2007. 1244.45 s [pandoc-cli] include hslua-cli-1.4.3-ACCCBwRtVs553oZVrCff6R
  2008. 1244.45 s [pandoc-cli] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  2009. 1244.45 s [pandoc-cli] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  2010. 1244.45 s [pandoc-cli] include pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  2011. 1244.45 s [pandoc-cli] include safe-0.3.21-Elq3JZGcw0hJOWwfsj8G99
  2012. 1244.45 s [pandoc-cli] include temporary-1.3-EOs1QAHjJhILyOEg1JGJM0
  2013. 1244.45 s [pandoc-cli] include text-2.1.3-e138
  2014. 1244.45 s [pandoc-cli] include wai-extra-3.1.18-45rqyGWr75p3CvzQlOJ5lM
  2015. 1244.45 s [pandoc-cli] include warp-3.4.9-IayhpOyoI2X29pjdF6hCyz
  2016. 1244.45 s [pandoc-cli] Linked component graph:
  2017. 1244.45 s [pandoc-cli] unit pandoc-cli-3.7.0.2-GQYyxtqEbS2AsesU73JW3X-pandoc
  2018. 1244.45 s [pandoc-cli] include base-4.20.2.0-acb8
  2019. 1244.45 s [pandoc-cli] include hslua-cli-1.4.3-ACCCBwRtVs553oZVrCff6R
  2020. 1244.45 s [pandoc-cli] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  2021. 1244.45 s [pandoc-cli] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  2022. 1244.45 s [pandoc-cli] include pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  2023. 1244.45 s [pandoc-cli] include safe-0.3.21-Elq3JZGcw0hJOWwfsj8G99
  2024. 1244.45 s [pandoc-cli] include temporary-1.3-EOs1QAHjJhILyOEg1JGJM0
  2025. 1244.45 s [pandoc-cli] include text-2.1.3-e138
  2026. 1244.45 s [pandoc-cli] include wai-extra-3.1.18-45rqyGWr75p3CvzQlOJ5lM
  2027. 1244.45 s [pandoc-cli] include warp-3.4.9-IayhpOyoI2X29pjdF6hCyz
  2028. 1244.45 s [pandoc-cli] Ready component graph:
  2029. 1244.45 s [pandoc-cli] definite pandoc-cli-3.7.0.2-GQYyxtqEbS2AsesU73JW3X-pandoc
  2030. 1244.45 s [pandoc-cli] depends base-4.20.2.0-acb8
  2031. 1244.45 s [pandoc-cli] depends hslua-cli-1.4.3-ACCCBwRtVs553oZVrCff6R
  2032. 1244.45 s [pandoc-cli] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
  2033. 1244.45 s [pandoc-cli] depends pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
  2034. 1244.45 s [pandoc-cli] depends pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
  2035. 1244.45 s [pandoc-cli] depends safe-0.3.21-Elq3JZGcw0hJOWwfsj8G99
  2036. 1244.45 s [pandoc-cli] depends temporary-1.3-EOs1QAHjJhILyOEg1JGJM0
  2037. 1244.45 s [pandoc-cli] depends text-2.1.3-e138
  2038. 1244.45 s [pandoc-cli] depends wai-extra-3.1.18-45rqyGWr75p3CvzQlOJ5lM
  2039. 1244.45 s [pandoc-cli] depends warp-3.4.9-IayhpOyoI2X29pjdF6hCyz
  2040. 1244.45 s [pandoc-cli] Using Cabal-3.12.1.0 compiled by ghc-9.10
  2041. 1244.45 s [pandoc-cli] Using compiler: ghc-9.10.3
  2042. 1244.45 s [pandoc-cli] Using install prefix:
  2043. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
  2044. 1244.45 s [pandoc-cli] Executables installed in:
  2045. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin
  2046. 1244.45 s [pandoc-cli] Libraries installed in:
  2047. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
  2048. 1244.45 s [pandoc-cli] Dynamic Libraries installed in:
  2049. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702
  2050. 1244.45 s [pandoc-cli] Private executables installed in:
  2051. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/libexec/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
  2052. 1244.45 s [pandoc-cli] Data files installed in:
  2053. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/share/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
  2054. 1244.45 s [pandoc-cli] Documentation installed in:
  2055. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/share/doc/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
  2056. 1244.45 s [pandoc-cli] Configuration files installed in:
  2057. 1244.45 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/etc
  2058. 1244.45 s [pandoc-cli] No alex found
  2059. 1244.45 s [pandoc-cli] Using ar found on system at:
  2060. 1244.45 s [pandoc-cli] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  2061. 1244.45 s [pandoc-cli] No c2hs found
  2062. 1244.45 s [pandoc-cli] No cpphs found
  2063. 1244.45 s [pandoc-cli] No doctest found
  2064. 1244.45 s [pandoc-cli] Using gcc version 14.3.0 given by user at:
  2065. 1244.45 s [pandoc-cli] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  2066. 1244.45 s [pandoc-cli] Using ghc version 9.10.3 found on system at:
  2067. 1244.45 s [pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc
  2068. 1244.45 s [pandoc-cli] Using ghc-pkg version 9.10.3 found on system at:
  2069. 1244.45 s [pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc-pkg-9.10.3
  2070. 1244.45 s [pandoc-cli] No ghcjs found
  2071. 1244.45 s [pandoc-cli] No ghcjs-pkg found
  2072. 1244.45 s [pandoc-cli] No greencard found
  2073. 1244.45 s [pandoc-cli] Using haddock version 2.31.1 found on system at:
  2074. 1244.45 s [pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/haddock-ghc-9.10.3
  2075. 1244.45 s [pandoc-cli] No happy found
  2076. 1244.45 s [pandoc-cli] Using haskell-suite found on system at: haskell-suite-dummy-location
  2077. 1244.45 s [pandoc-cli] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  2078. 1244.45 s [pandoc-cli] No hmake found
  2079. 1244.45 s [pandoc-cli] Using hpc version 0.69 found on system at:
  2080. 1244.45 s [pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hpc-ghc-9.10.3
  2081. 1244.45 s [pandoc-cli] Using hsc2hs version 0.68.10 found on system at:
  2082. 1244.45 s [pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  2083. 1244.45 s [pandoc-cli] No hscolour found
  2084. 1244.45 s [pandoc-cli] No jhc found
  2085. 1244.45 s [pandoc-cli] Using ld found on system at:
  2086. 1244.45 s [pandoc-cli] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  2087. 1244.45 s [pandoc-cli] No pkg-config found
  2088. 1244.45 s [pandoc-cli] Using runghc version 9.10.3 found on system at:
  2089. 1244.45 s [pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/runghc-9.10.3
  2090. 1244.45 s [pandoc-cli] Using strip version 2.44 found on system at:
  2091. 1244.45 s [pandoc-cli] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  2092. 1244.45 s [pandoc-cli] Using tar found on system at:
  2093. 1244.45 s [pandoc-cli] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  2094. 1244.45 s [pandoc-cli] No uhc found
  2095. 1244.70 s [pandoc-cli] Phase: buildPhase
  2096. 1244.83 s [pandoc-cli] Preprocessing executable 'pandoc' for pandoc-cli-3.7.0.2...
  2097. 1244.83 s [pandoc-cli] Building executable 'pandoc' for pandoc-cli-3.7.0.2...
  2098. 1244.95 s [pandoc-cli] [1 of 3] Compiling PandocCLI.Lua
  2099. 1245.19 s [pandoc-cli] [2 of 3] Compiling PandocCLI.Server
  2100. 1245.19 s [pandoc-cli] [3 of 3] Compiling Main
  2101. 1245.28 s [haskell-language-server] <no location info>: warning: [GHC-42258] [-Wunused-packages]
  2102. 1245.28 s [haskell-language-server] The following packages were specified via -package or -package-id flags,
  2103. 1245.28 s [haskell-language-server] but were not needed for compilation:
  2104. 1245.28 s [haskell-language-server] - ghc-9.10.3 (exposed by flag -package-id ghc-9.10.3-5702)
  2105. 1245.28 s [haskell-language-server]
  2106. 1245.30 s [haskell-language-server] [1 of 5] Compiling HlsPlugins ( src/HlsPlugins.hs, dist/build/HlsPlugins.p_o )
  2107. 1245.60 s [pandoc-cli] [4 of 4] Linking dist/build/pandoc/pandoc
  2108. 1246.45 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 )
  2109. 1246.48 s [haskell-language-server] [3 of 5] Compiling Ide.Version ( src/Ide/Version.hs, dist/build/Ide/Version.p_o )
  2110. 1247.83 s [haskell-language-server] [4 of 5] Compiling Ide.Arguments ( src/Ide/Arguments.hs, dist/build/Ide/Arguments.p_o )
  2111. 1248.44 s [haskell-language-server] [5 of 5] Compiling Ide.Main ( src/Ide/Main.hs, dist/build/Ide/Main.p_o )
  2112. 1253.65 s [pandoc-cli] Phase: checkPhase
  2113. 1253.73 s [pandoc-cli] Package has no test suites.
  2114. 1253.73 s [pandoc-cli] Phase: haddockPhase
  2115. 1253.74 s [pandoc-cli] Phase: installPhase
  2116. 1253.88 s [pandoc-cli] Installing executable pandoc in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin
  2117. 1253.88 s [pandoc-cli] Warning: The directory
  2118. 1253.88 s [pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin is not in
  2119. 1253.88 s [pandoc-cli] the system search path.
  2120. 1257.85 s [pandoc-cli] Phase: fixupPhase
  2121. 1257.86 s [haskell-language-server] Preprocessing executable 'haskell-language-server' for haskell-language-server-2.12.0.0...
  2122. 1257.87 s [haskell-language-server] Building executable 'haskell-language-server' for haskell-language-server-2.12.0.0...
  2123. 1257.87 s [pandoc-cli] shrinking RPATHs of ELF executables and libraries in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
  2124. 1257.87 s [pandoc-cli] shrinking /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin/pandoc
  2125. 1257.96 s [haskell-language-server] [1 of 1] Compiling Main ( exe/Main.hs, dist/build/haskell-language-server/haskell-language-server-tmp/Main.dyn_o )
  2126. 1258.37 s [pandoc-cli] checking for references to /build/ in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2...
  2127. 1258.60 s [pandoc-cli] gzipping man pages under /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/share/man/
  2128. 1258.63 s [pandoc-cli] patching script interpreter paths in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
  2129. 1258.63 s [pandoc-cli] stripping (with command strip and flags -S -p) in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin
  2130. 1259.36 s [haskell-language-server] [2 of 2] Linking dist/build/haskell-language-server/haskell-language-server
  2131. 1259.70 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
  2132. 1260.08 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2133. 1260.09 s [post-build-hook] Uploading to the NixCI cache: /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
  2134. 1260.13 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2135. 1260.14 s [post-build-hook] copying 1 paths...
  2136. 1260.15 s [post-build-hook] copying path '/nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2' to 'https://cache.nix-ci.com'...
  2137. 1324.30 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2138. 1324.42 s [post-build-hook] copying 0 paths...
  2139. 1324.44 s Progress: 51 of 57 built (1 building), 771 of 771 downloaded from cache
  2140. 1324.49 s Building shellcheck
  2141. 1324.49 s [haskell-language-server] Preprocessing executable 'haskell-language-server-wrapper' for haskell-language-server-2.12.0.0...
  2142. 1324.49 s [haskell-language-server] Building executable 'haskell-language-server-wrapper' for haskell-language-server-2.12.0.0...
  2143. 1324.49 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 )
  2144. 1324.49 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 )
  2145. 1324.49 s [haskell-language-server] [3 of 3] Linking dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper
  2146. 1324.49 s [haskell-language-server] buildPhase completed in 9 minutes 28 seconds
  2147. 1324.49 s [haskell-language-server] Phase: haddockPhase
  2148. 1324.49 s [haskell-language-server] Phase: installPhase
  2149. 1324.49 s [haskell-language-server] Installing internal library hls-ormolu-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-LJoGa6Q3mno34EixCXxQyM-hls-ormolu-plugin
  2150. 1324.49 s [haskell-language-server] Installing internal library hls-class-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-JmrpfU8xWrF7DbDuTpoV6M-hls-class-plugin
  2151. 1324.49 s [haskell-language-server] Installing internal library hls-change-type-signature-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-JaEwwNLXKZf4qh2V7Gq4ve-hls-change-type-signature-plugin
  2152. 1324.49 s [haskell-language-server] Installing internal library hls-stan-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-J1IzagR6j3zKeJ211v1OF5-hls-stan-plugin
  2153. 1324.49 s [haskell-language-server] Installing internal library hls-notes-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-Iiv5tNKLhozH7ubgH6Uw8f-hls-notes-plugin
  2154. 1324.49 s [haskell-language-server] Installing executable ghcide-test-preprocessor in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2155. 1324.49 s [haskell-language-server] Warning: The directory
  2156. 1324.49 s [haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2157. 1324.49 s [haskell-language-server] is not in the system search path.
  2158. 1324.49 s [haskell-language-server] Installing internal library hls-cabal-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-IDPfpA6WZ8MBqF56YSJeya-hls-cabal-plugin
  2159. 1324.49 s [haskell-language-server] Installing internal library hls-refactor-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-HvmhCTtZxUHCE9gLnCKLh9-hls-refactor-plugin
  2160. 1324.49 s [haskell-language-server] Installing internal library hls-explicit-imports-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-HY7rpmjnqIsLcnwWUDIpFY-hls-explicit-imports-plugin
  2161. 1324.49 s [haskell-language-server] Installing internal library hls-pragmas-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-GNPMvuHXMezAey3L7oMrmZ-hls-pragmas-plugin
  2162. 1324.49 s [haskell-language-server] Installing internal library hls-signature-help-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-G6BvrdYBCuL8xDksNEM54S-hls-signature-help-plugin
  2163. 1324.49 s [haskell-language-server] Installing internal library hls-alternate-number-format-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-FML198sk7yCChrqqaaJW3V-hls-alternate-number-format-plugin
  2164. 1324.49 s [haskell-language-server] Installing internal library hls-overloaded-record-dot-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-F727644vmcFC4ljPry2ZWA-hls-overloaded-record-dot-plugin
  2165. 1324.49 s [haskell-language-server] Installing internal library hls-explicit-fixity-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-Eb0uC3g1KncAMsh4l2kyAe-hls-explicit-fixity-plugin
  2166. 1324.49 s [haskell-language-server] Installing internal library hls-fourmolu-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-E86cAfE3EcS9MDN3hoDIwp-hls-fourmolu-plugin
  2167. 1324.49 s [haskell-language-server] Installing internal library hls-code-range-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DeamZ4UqDRTFo4XMHs6r1V-hls-code-range-plugin
  2168. 1324.49 s [haskell-language-server] Installing internal library ghcide-bench-lib in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DR7ueyJn3CVKIetN9QcR6o-ghcide-bench-lib
  2169. 1324.49 s [haskell-language-server] Installing internal library hls-stylish-haskell-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DKqnwPxt8oD49vf9uLay1-hls-stylish-haskell-plugin
  2170. 1324.49 s [haskell-language-server] Installing internal library hls-eval-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DJXwFDNaWTa6QGUL7vL7kD-hls-eval-plugin
  2171. 1324.49 s [haskell-language-server] Installing internal library hls-gadt-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-COqyzKayFsnF5VZO5oPjXC-hls-gadt-plugin
  2172. 1324.49 s [haskell-language-server] Installing internal library hls-cabal-gild-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-7uu738T18llBLjxCd5i63v-hls-cabal-gild-plugin
  2173. 1324.49 s [haskell-language-server] Installing internal library hls-explicit-record-fields-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-6qYivsrGDwM9pL7Rf9PolD-hls-explicit-record-fields-plugin
  2174. 1324.49 s [haskell-language-server] Installing internal library hls-semantic-tokens-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-6keyNWkDzqvF1GBtR9iAwX-hls-semantic-tokens-plugin
  2175. 1324.49 s [haskell-language-server] Installing internal library hls-cabal-fmt-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-4yqVuz6O5OB8hdORCTa732-hls-cabal-fmt-plugin
  2176. 1324.49 s [haskell-language-server] Installing internal library hls-module-name-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-4jf4xRexuBh5qXpczyaUi5-hls-module-name-plugin
  2177. 1324.49 s [haskell-language-server] Installing internal library hls-qualify-imported-names-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-47RpIEDWA2z8p8kXokJ9uO-hls-qualify-imported-names-plugin
  2178. 1324.49 s [haskell-language-server] Installing executable ghcide-bench in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2179. 1324.49 s [haskell-language-server] Warning: The directory
  2180. 1324.49 s [haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2181. 1324.49 s [haskell-language-server] is not in the system search path.
  2182. 1324.49 s [haskell-language-server] Installing internal library hls-rename-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-2H8QVfbjT33DWge5TBSMMH-hls-rename-plugin
  2183. 1324.49 s [haskell-language-server] Installing internal library hls-call-hierarchy-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-215WrYoSuAW8PBPKsa10fz-hls-call-hierarchy-plugin
  2184. 1324.49 s [haskell-language-server] Installing library in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-FisfEdJF7uuCpwsrDOfzYo
  2185. 1324.49 s [haskell-language-server] Installing executable haskell-language-server in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2186. 1324.49 s [haskell-language-server] Warning: The directory
  2187. 1324.49 s [haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2188. 1324.49 s [haskell-language-server] is not in the system search path.
  2189. 1324.49 s [haskell-language-server] Installing executable haskell-language-server-wrapper in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2190. 1324.49 s [haskell-language-server] Warning: The directory
  2191. 1324.49 s [haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2192. 1324.49 s [haskell-language-server] is not in the system search path.
  2193. 1324.49 s [haskell-language-server] Phase: fixupPhase
  2194. 1324.49 s [haskell-language-server] shrinking RPATHs of ELF executables and libraries in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
  2195. 1324.49 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/ghcide-bench
  2196. 1324.49 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/haskell-language-server-wrapper
  2197. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/.haskell-language-server-9.10.3-unwrapped
  2198. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/ghcide-test-preprocessor
  2199. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-2H8QVfbjT33DWge5TBSMMH-hls-rename-plugin-ghc9.10.3.so
  2200. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-Eb0uC3g1KncAMsh4l2kyAe-hls-explicit-fixity-plugin-ghc9.10.3.so
  2201. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-COqyzKayFsnF5VZO5oPjXC-hls-gadt-plugin-ghc9.10.3.so
  2202. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-F727644vmcFC4ljPry2ZWA-hls-overloaded-record-dot-plugin-ghc9.10.3.so
  2203. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-FML198sk7yCChrqqaaJW3V-hls-alternate-number-format-plugin-ghc9.10.3.so
  2204. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-GNPMvuHXMezAey3L7oMrmZ-hls-pragmas-plugin-ghc9.10.3.so
  2205. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DR7ueyJn3CVKIetN9QcR6o-ghcide-bench-lib-ghc9.10.3.so
  2206. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-6qYivsrGDwM9pL7Rf9PolD-hls-explicit-record-fields-plugin-ghc9.10.3.so
  2207. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DeamZ4UqDRTFo4XMHs6r1V-hls-code-range-plugin-ghc9.10.3.so
  2208. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-J1IzagR6j3zKeJ211v1OF5-hls-stan-plugin-ghc9.10.3.so
  2209. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-4jf4xRexuBh5qXpczyaUi5-hls-module-name-plugin-ghc9.10.3.so
  2210. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-Iiv5tNKLhozH7ubgH6Uw8f-hls-notes-plugin-ghc9.10.3.so
  2211. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-47RpIEDWA2z8p8kXokJ9uO-hls-qualify-imported-names-plugin-ghc9.10.3.so
  2212. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-215WrYoSuAW8PBPKsa10fz-hls-call-hierarchy-plugin-ghc9.10.3.so
  2213. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-LJoGa6Q3mno34EixCXxQyM-hls-ormolu-plugin-ghc9.10.3.so
  2214. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-HY7rpmjnqIsLcnwWUDIpFY-hls-explicit-imports-plugin-ghc9.10.3.so
  2215. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-E86cAfE3EcS9MDN3hoDIwp-hls-fourmolu-plugin-ghc9.10.3.so
  2216. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-4yqVuz6O5OB8hdORCTa732-hls-cabal-fmt-plugin-ghc9.10.3.so
  2217. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-JmrpfU8xWrF7DbDuTpoV6M-hls-class-plugin-ghc9.10.3.so
  2218. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DJXwFDNaWTa6QGUL7vL7kD-hls-eval-plugin-ghc9.10.3.so
  2219. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-IDPfpA6WZ8MBqF56YSJeya-hls-cabal-plugin-ghc9.10.3.so
  2220. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-G6BvrdYBCuL8xDksNEM54S-hls-signature-help-plugin-ghc9.10.3.so
  2221. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-FisfEdJF7uuCpwsrDOfzYo-ghc9.10.3.so
  2222. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-6keyNWkDzqvF1GBtR9iAwX-hls-semantic-tokens-plugin-ghc9.10.3.so
  2223. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DKqnwPxt8oD49vf9uLay1-hls-stylish-haskell-plugin-ghc9.10.3.so
  2224. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-7uu738T18llBLjxCd5i63v-hls-cabal-gild-plugin-ghc9.10.3.so
  2225. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-HvmhCTtZxUHCE9gLnCKLh9-hls-refactor-plugin-ghc9.10.3.so
  2226. 1324.50 s [haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-JaEwwNLXKZf4qh2V7Gq4ve-hls-change-type-signature-plugin-ghc9.10.3.so
  2227. 1324.50 s [haskell-language-server] checking for references to /build/ in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0...
  2228. 1324.50 s [haskell-language-server] patching script interpreter paths in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
  2229. 1324.50 s [haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/haskell-language-server: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2230. 1324.50 s [haskell-language-server] stripping (with command strip and flags -S -p) in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
  2231. 1324.50 s [haskell-language-server] rewriting symlink /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/haskell-language-server-9.10.3 to be relative to /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
  2232. 1328.80 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
  2233. 1329.50 s [post-build-hook] Pushing 1 paths (577 are already present) using zstd to cache sellout ⏳
  2234. 1329.52 s [post-build-hook]
  2235. 1329.86 s [post-build-hook] Pushing /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0 (110.37 MiB)
  2236. 1331.97 s [post-build-hook]
  2237. 1331.97 s [post-build-hook] All done.
  2238. 1332.00 s [post-build-hook] Uploading to the NixCI cache: /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
  2239. 1332.04 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2240. 1332.09 s [post-build-hook] copying 1 paths...
  2241. 1332.09 s [post-build-hook] copying path '/nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0' to 'https://cache.nix-ci.com'...
  2242. 1355.31 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2243. 1355.51 s [post-build-hook] copying 1 paths...
  2244. 1355.52 s [post-build-hook] copying path '/nix/store/1bq1g7jql84wrzmjngcd03lpj8s1hnbx-haskell-language-server-2.12.0.0.drv' to 'https://cache.nix-ci.com'...
  2245. 1355.68 s Progress: 52 of 57 built (1 building), 771 of 771 downloaded from cache
  2246. 1355.69 s [shellcheck] Phase: unpackPhase
  2247. 1355.69 s [shellcheck] unpacking source archive /nix/store/0y569php6xr1v629bbggizl1ba1mrf5b-ShellCheck-0.11.0.tar.gz
  2248. 1355.69 s [shellcheck] source root is ShellCheck-0.11.0
  2249. 1355.69 s [shellcheck] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "ShellCheck-0.11.0/test/shellcheck.hs"
  2250. 1355.69 s [shellcheck] Phase: patchPhase
  2251. 1355.69 s [shellcheck] Phase: updateAutotoolsGnuConfigScriptsPhase
  2252. 1355.69 s [shellcheck] Phase: configurePhase
  2253. 1355.69 s [shellcheck] no configure script, doing nothing
  2254. 1355.69 s [shellcheck] Phase: buildPhase
  2255. 1355.69 s [shellcheck] Phase: installPhase
  2256. 1355.69 s [shellcheck] Phase: fixupPhase
  2257. 1355.69 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin
  2258. 1355.69 s [shellcheck] shrinking /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin/bin/shellcheck
  2259. 1355.69 s [shellcheck] checking for references to /build/ in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin...
  2260. 1355.69 s [shellcheck] patching script interpreter paths in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin
  2261. 1355.69 s [shellcheck] stripping (with command strip and flags -S -p) in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin/bin
  2262. 1355.69 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
  2263. 1355.69 s [shellcheck] checking for references to /build/ in /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man...
  2264. 1355.69 s [shellcheck] gzipping man pages under /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man/share/man/
  2265. 1355.69 s [shellcheck] patching script interpreter paths in /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
  2266. 1355.69 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc
  2267. 1355.69 s [shellcheck] checking for references to /build/ in /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc...
  2268. 1355.69 s [shellcheck] patching script interpreter paths in /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc
  2269. 1355.69 s [shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0
  2270. 1355.69 s [shellcheck] checking for references to /build/ in /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0...
  2271. 1355.69 s [shellcheck] patching script interpreter paths in /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0
  2272. 1355.72 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0 /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
  2273. 1356.09 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2274. 1356.11 s [post-build-hook] Uploading to the NixCI cache: /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0 /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
  2275. 1356.15 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2276. 1356.19 s [post-build-hook] copying 1 paths...
  2277. 1356.19 s [post-build-hook] copying path '/nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin' to 'https://cache.nix-ci.com'...
  2278. 1358.36 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2279. 1358.47 s [post-build-hook] copying 0 paths...
  2280. 1358.49 s Progress: 53 of 57 built, 771 of 771 downloaded from cache
  2281. 1358.54 s Building bash-language-server
  2282. 1358.56 s [bash-language-server] Using versionCheckHook
  2283. 1358.60 s [bash-language-server] Phase: unpackPhase
  2284. 1358.60 s [bash-language-server] unpacking source archive /nix/store/lxydhrakpk9ccbjzavdgm3f3imkypnw2-source
  2285. 1358.64 s [bash-language-server] source root is source
  2286. 1358.64 s [bash-language-server] Phase: patchPhase
  2287. 1358.65 s [bash-language-server] Phase: updateAutotoolsGnuConfigScriptsPhase
  2288. 1358.66 s [bash-language-server] Phase: configurePhase
  2289. 1358.67 s [bash-language-server] no configure script, doing nothing
  2290. 1358.67 s [bash-language-server] Executing pnpmConfigHook
  2291. 1359.10 s [bash-language-server] Found 'pnpm' with version '10.28.0'
  2292. 1359.10 s [bash-language-server] Using fetcherVersion: 3
  2293. 1359.10 s [bash-language-server] Configuring pnpm store
  2294. 1359.49 s [bash-language-server] /build /build/source
  2295. 1359.79 s [bash-language-server] /build/source
  2296. 1360.35 s [bash-language-server] Installing dependencies
  2297. 1360.69 s [bash-language-server] Lockfile is up to date, resolution step is skipped
  2298. 1360.73 s [bash-language-server] Progress: resolved 1, reused 0, downloaded 0, added 0
  2299. 1360.79 s [bash-language-server] . | +416
  2300. 1360.79 s [bash-language-server] Progress: resolved 1, reused 0, downloaded 0, added 0
  2301. 1360.93 s [bash-language-server] Progress: resolved 416, reused 411, downloaded 0, added 4
  2302. 1361.13 s [bash-language-server] Progress: resolved 416, reused 416, downloaded 0, added 307
  2303. 1361.30 s [bash-language-server] Progress: resolved 416, reused 416, downloaded 0, added 416, done
  2304. 1361.53 s [bash-language-server] Done in 1.1s using pnpm v10.28.0
  2305. 1361.57 s [bash-language-server] Patching scripts
  2306. 1361.57 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
  2307. 1361.58 s [bash-language-server] node_modules/.bin/prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2308. 1361.60 s [bash-language-server] node_modules/.bin/installServerIntoExtension: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2309. 1361.61 s [bash-language-server] node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2310. 1361.62 s [bash-language-server] node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2311. 1361.63 s [bash-language-server] node_modules/.bin/ts-jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2312. 1361.64 s [bash-language-server] node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2313. 1361.65 s [bash-language-server] node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2314. 1361.66 s [bash-language-server] node_modules/.bin/eslint-config-prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2315. 1361.67 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2316. 1361.69 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2317. 1361.70 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2318. 1361.71 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2319. 1361.72 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2320. 1361.73 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2321. 1361.74 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2322. 1361.75 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2323. 1361.76 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2324. 1361.77 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2325. 1361.79 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2326. 1361.80 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2327. 1361.81 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2328. 1361.82 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2329. 1361.83 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2330. 1361.85 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2331. 1361.86 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2332. 1361.87 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2333. 1361.88 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2334. 1361.89 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2335. 1361.90 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2336. 1361.91 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2337. 1361.92 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2338. 1361.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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2339. 1361.95 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2340. 1361.96 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2341. 1361.97 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2342. 1361.98 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2343. 1361.99 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2344. 1362.00 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2345. 1362.01 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2346. 1362.02 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/bash"
  2347. 1362.03 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2348. 1362.04 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2349. 1362.05 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2350. 1362.06 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2351. 1362.07 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2352. 1362.08 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2353. 1362.09 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2354. 1362.10 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2355. 1362.11 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/bash"
  2356. 1362.12 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2357. 1362.13 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2358. 1362.14 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2359. 1362.15 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2360. 1362.16 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2361. 1362.17 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2362. 1362.18 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2363. 1362.19 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2364. 1362.20 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2365. 1362.21 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2366. 1362.22 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2367. 1362.23 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2368. 1362.24 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2369. 1362.25 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2370. 1362.26 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2371. 1362.27 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2372. 1362.28 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2373. 1362.29 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2374. 1362.30 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2375. 1362.31 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2376. 1362.32 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2377. 1362.33 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2378. 1362.34 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2379. 1362.35 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2380. 1362.36 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2381. 1362.37 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2382. 1362.38 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2383. 1362.39 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2384. 1362.40 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2385. 1362.41 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2386. 1362.42 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2387. 1362.43 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2388. 1362.44 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2389. 1362.45 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2390. 1362.46 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2391. 1362.47 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2392. 1362.48 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2393. 1362.49 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2394. 1362.50 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2395. 1362.51 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2396. 1362.52 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2397. 1362.53 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2398. 1362.54 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2399. 1362.55 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2400. 1362.56 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2401. 1362.57 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2402. 1362.58 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2403. 1362.59 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2404. 1362.60 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2405. 1362.61 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2406. 1362.62 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2407. 1362.63 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2408. 1362.64 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2409. 1362.65 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/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
  2410. 1362.66 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2411. 1362.67 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2412. 1362.68 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2413. 1362.69 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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2414. 1362.70 s [bash-language-server] Finished pnpmConfigHook
  2415. 1362.70 s [bash-language-server] Phase: buildPhase
  2416. 1362.95 s [bash-language-server]
  2417. 1362.95 s [bash-language-server] > @ compile /build/source
  2418. 1362.95 s [bash-language-server] > tsc -b server
  2419. 1362.95 s [bash-language-server]
  2420. 1364.67 s [bash-language-server] Phase: installPhase
  2421. 1364.99 s [bash-language-server] Lockfile is up to date, resolution step is skipped
  2422. 1365.02 s [bash-language-server] Already up to date
  2423. 1365.25 s [bash-language-server]
  2424. 1365.25 s [bash-language-server] devDependencies:
  2425. 1365.25 s [bash-language-server] - @types/jest 29.5.14
  2426. 1365.25 s [bash-language-server] - @types/node 18.19.86
  2427. 1365.25 s [bash-language-server] - @typescript-eslint/eslint-plugin 7.18.0
  2428. 1365.25 s [bash-language-server] - @typescript-eslint/parser 7.18.0
  2429. 1365.25 s [bash-language-server] - cross-spawn 7.0.6
  2430. 1365.25 s [bash-language-server] - eslint 8.57.1
  2431. 1365.25 s [bash-language-server] - eslint-config-prettier 9.1.0
  2432. 1365.25 s [bash-language-server] - eslint-plugin-jest 28.11.0
  2433. 1365.25 s [bash-language-server] - eslint-plugin-prettier 4.2.1
  2434. 1365.25 s [bash-language-server] - eslint-plugin-simple-import-sort 12.1.1
  2435. 1365.25 s [bash-language-server] - eslint-plugin-sort-class-members 1.21.0
  2436. 1365.25 s [bash-language-server] - jest 29.7.0
  2437. 1365.25 s [bash-language-server] - prettier 2.8.8
  2438. 1365.25 s [bash-language-server] - ts-jest 29.3.2
  2439. 1365.25 s [bash-language-server] - typescript 5.6.3
  2440. 1365.25 s [bash-language-server] - vscode-languageserver 8.0.2
  2441. 1365.25 s [bash-language-server] - vscode-languageserver-textdocument 1.0.12
  2442. 1365.25 s [bash-language-server]
  2443. 1365.44 s [bash-language-server] Phase: fixupPhase
  2444. 1365.46 s [bash-language-server] shrinking RPATHs of ELF executables and libraries in /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
  2445. 1365.46 s [bash-language-server] shrinking /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/bin/bash-language-server
  2446. 1365.58 s [bash-language-server] checking for references to /build/ in /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0...
  2447. 1365.73 s [bash-language-server] patching script interpreter paths in /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
  2448. 1365.75 s [bash-language-server] /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/lib/bash-language-server/server/node_modules/.bin/installServerIntoExtension: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2449. 1365.80 s [bash-language-server] /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/lib/bash-language-server/server/node_modules/.bin/editorconfig: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
  2450. 1365.80 s [bash-language-server] /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-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/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/bash"
  2451. 1366.15 s [bash-language-server] Phase: installCheckPhase
  2452. 1366.15 s [bash-language-server] Executing versionCheckPhase
  2453. 1366.35 s [bash-language-server] Did not find version 5.6.0 in the output of the command /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/bin/bash-language-server --help
  2454. 1366.35 s [bash-language-server] Usage:
  2455. 1366.35 s [bash-language-server] bash-language-server start Start listening on stdin/stdout
  2456. 1366.35 s [bash-language-server] bash-language-server -h, --help Display this help and exit
  2457. 1366.35 s [bash-language-server] bash-language-server -v, --version Print the version and exit
  2458. 1366.35 s [bash-language-server]
  2459. 1366.35 s [bash-language-server] Environment variables:
  2460. 1366.35 s [bash-language-server] BASH_IDE_LOG_LEVEL Set the log level (default: info)
  2461. 1366.35 s [bash-language-server]
  2462. 1366.35 s [bash-language-server] Further documentation: https://github.com/bash-lsp/bash-language-server
  2463. 1366.54 s [bash-language-server] Successfully managed to find version 5.6.0 in the output of the command /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/bin/bash-language-server --version
  2464. 1366.54 s [bash-language-server] 5.6.0
  2465. 1366.54 s [bash-language-server] Finished versionCheckPhase
  2466. 1366.54 s [bash-language-server] no Makefile or custom installCheckPhase, doing nothing
  2467. 1366.92 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
  2468. 1367.32 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2469. 1367.34 s [post-build-hook] Uploading to the NixCI cache: /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
  2470. 1367.38 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2471. 1367.39 s [post-build-hook] copying 1 paths...
  2472. 1367.39 s [post-build-hook] copying path '/nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0' to 'https://cache.nix-ci.com'...
  2473. 1369.00 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2474. 1369.58 s [post-build-hook] copying 0 paths...
  2475. 1369.60 s Progress: 54 of 57 built, 771 of 771 downloaded from cache
  2476. 1369.67 s Building project-manager-path-for-duoids
  2477. 1369.76 s [project-manager-path-for-duoids] created 346 symlinks in user environment
  2478. 1369.84 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/2l7xv6cqmw4pv1vy3g9ga9p126yja5cj-project-manager-path-for-duoids
  2479. 1370.24 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2480. 1370.26 s [post-build-hook] Uploading to the NixCI cache: /nix/store/2l7xv6cqmw4pv1vy3g9ga9p126yja5cj-project-manager-path-for-duoids
  2481. 1370.31 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2482. 1370.37 s [post-build-hook] copying 0 paths...
  2483. 1370.42 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2484. 1370.68 s [post-build-hook] copying 0 paths...
  2485. 1370.75 s Progress: 55 of 57 built, 771 of 771 downloaded from cache
  2486. 1370.89 s Building ghc-shell-for-packages
  2487. 1371.92 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0
  2488. 1372.79 s [post-build-hook] Pushing 1 paths (795 are already present) using zstd to cache sellout ⏳
  2489. 1372.79 s [post-build-hook]
  2490. 1373.22 s [post-build-hook] Pushing /nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0 (336.00 B)
  2491. 1374.11 s [post-build-hook]
  2492. 1374.11 s [post-build-hook] All done.
  2493. 1374.13 s [post-build-hook] Uploading to the NixCI cache: /nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0
  2494. 1374.18 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2495. 1374.23 s [post-build-hook] copying 1 paths...
  2496. 1374.23 s [post-build-hook] copying path '/nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0' to 'https://cache.nix-ci.com'...
  2497. 1374.43 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2498. 1374.77 s [post-build-hook] copying 1 paths...
  2499. 1374.77 s [post-build-hook] copying path '/nix/store/qm8ibm6d12dd5c4qv1km399azs1sncx2-ghc-shell-for-packages-0.drv' to 'https://cache.nix-ci.com'...
  2500. 1374.93 s Progress: 56 of 57 built, 771 of 771 downloaded from cache