build devShells.x86_64-linux.ghc963

  1. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
  2. 1697.37 s [algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
  3. 1697.37 s [algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
  4. 1697.37 s [algebraic-graphs] OK: gmap id == id
  5. 1697.37 s [algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
  6. 1697.37 s [algebraic-graphs]
  7. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
  8. 1697.37 s [algebraic-graphs] OK: induce1 (const True ) x == Just x
  9. 1697.37 s [algebraic-graphs] OK: induce1 (const False) x == Nothing
  10. 1697.37 s [algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
  11. 1697.37 s [algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
  12. 1697.37 s [algebraic-graphs]
  13. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
  14. 1697.37 s [algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
  15. 1697.37 s [algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
  16. 1697.37 s [algebraic-graphs] OK: induceJust1 . gmap Just == Just
  17. 1697.37 s [algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
  18. 1697.37 s [algebraic-graphs]
  19. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
  20. 1697.37 s [algebraic-graphs] OK: closure (vertex x) == edge x x
  21. 1697.37 s [algebraic-graphs] OK: closure (edge x x) == edge x x
  22. 1697.37 s [algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
  23. 1697.37 s [algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
  24. 1697.37 s [algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
  25. 1697.37 s [algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
  26. 1697.37 s [algebraic-graphs] OK: closure . closure == closure
  27. 1697.37 s [algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
  28. 1697.37 s [algebraic-graphs]
  29. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
  30. 1697.37 s [algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
  31. 1697.37 s [algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
  32. 1697.37 s [algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
  33. 1697.37 s [algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
  34. 1697.37 s [algebraic-graphs]
  35. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
  36. 1697.37 s [algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
  37. 1697.37 s [algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
  38. 1697.37 s [algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
  39. 1697.37 s [algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
  40. 1697.37 s [algebraic-graphs]
  41. 1697.37 s [algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
  42. 1697.37 s [algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
  43. 1697.37 s [algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
  44. 1697.37 s [algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
  45. 1697.37 s [algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
  46. 1697.37 s [algebraic-graphs]
  47. 1697.37 s [algebraic-graphs] ============ NonEmpty.Graph.============
  48. 1697.37 s [algebraic-graphs] OK: Axioms of non-empty graphs
  49. 1697.37 s [algebraic-graphs] OK: Theorems of non-empty graphs
  50. 1697.37 s [algebraic-graphs]
  51. 1697.37 s [algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
  52. 1697.37 s [algebraic-graphs] OK: vertex 1 < vertex 2
  53. 1697.37 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  54. 1697.37 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  55. 1697.37 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  56. 1697.37 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  57. 1697.38 s [algebraic-graphs] OK: edge 1 2 < edge 1 3
  58. 1697.38 s [algebraic-graphs] OK: x <= x + y
  59. 1697.38 s [algebraic-graphs] OK: x + y <= x * y
  60. 1697.38 s [algebraic-graphs]
  61. 1697.38 s [algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
  62. 1697.38 s [algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
  63. 1697.38 s [algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
  64. 1697.38 s [algebraic-graphs] OK: fmap id == id
  65. 1697.38 s [algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
  66. 1697.38 s [algebraic-graphs]
  67. 1697.38 s [algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
  68. 1697.38 s [algebraic-graphs] OK: (vertex x >>= f) == f x
  69. 1697.38 s [shake] [71 of 73] Compiling Development.Shake.Util ( src/Development/Shake/Util.hs, dist/build/Development/Shake/Util.p_o )
  70. 1697.38 s [algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
  71. 1697.38 s [algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
  72. 1697.38 s [algebraic-graphs] OK: (x >>= vertex) == x
  73. 1697.38 s [algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
  74. 1697.38 s [algebraic-graphs]
  75. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
  76. 1697.38 s [algebraic-graphs] OK: toNonEmpty empty == Nothing
  77. 1697.38 s [algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
  78. 1697.38 s [algebraic-graphs]
  79. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.vertex ============
  80. 1697.38 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  81. 1697.38 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  82. 1697.38 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  83. 1697.38 s [algebraic-graphs] OK: size (vertex x) == 1
  84. 1697.38 s [algebraic-graphs]
  85. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.edge ============
  86. 1697.38 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  87. 1697.38 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  88. 1697.38 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  89. 1697.38 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  90. 1697.38 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  91. 1697.38 s [algebraic-graphs]
  92. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.overlay ============
  93. 1697.38 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  94. 1697.38 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  95. 1697.38 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  96. 1697.38 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  97. 1697.38 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  98. 1697.38 s [algebraic-graphs] OK: size (overlay x y) == size x + size y
  99. 1697.38 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  100. 1697.38 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  101. 1697.38 s [algebraic-graphs]
  102. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
  103. 1697.38 s [algebraic-graphs] OK: overlay1 empty x == x
  104. 1697.38 s [algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
  105. 1697.38 s [algebraic-graphs]
  106. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.connect ============
  107. 1697.38 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  108. 1697.38 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  109. 1697.38 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  110. 1697.38 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  111. 1697.38 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  112. 1697.38 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
  113. 1697.38 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  114. 1697.38 s [algebraic-graphs] OK: size (connect x y) == size x + size y
  115. 1697.38 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  116. 1697.38 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  117. 1697.38 s [algebraic-graphs]
  118. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
  119. 1697.38 s [algebraic-graphs] OK: vertices1 [x] == vertex x
  120. 1697.38 s [algebraic-graphs] OK: hasVertex x . vertices1 == elem x
  121. 1697.38 s [algebraic-graphs] OK: vertexCount . vertices1 == length . nub
  122. 1697.38 s [algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
  123. 1697.38 s [algebraic-graphs]
  124. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
  125. 1697.38 s [algebraic-graphs] OK: edges1 [(x,y)] == edge x y
  126. 1697.38 s [algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
  127. 1697.38 s [algebraic-graphs] OK: edgeCount . edges1 == length . nub
  128. 1697.38 s [algebraic-graphs]
  129. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
  130. 1697.38 s [algebraic-graphs] OK: overlays1 [x] == x
  131. 1697.38 s [algebraic-graphs] OK: overlays1 [x,y] == overlay x y
  132. 1697.38 s [algebraic-graphs]
  133. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
  134. 1697.38 s [algebraic-graphs] OK: connects1 [x] == x
  135. 1697.38 s [algebraic-graphs] OK: connects1 [x,y] == connect x y
  136. 1697.38 s [algebraic-graphs]
  137. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
  138. 1697.38 s [algebraic-graphs] OK: foldg1 vertex overlay connect == id
  139. 1697.38 s [algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
  140. 1697.38 s [algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
  141. 1697.38 s [algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
  142. 1697.38 s [algebraic-graphs]
  143. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
  144. 1697.38 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  145. 1697.38 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  146. 1697.38 s [algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
  147. 1697.38 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  148. 1697.38 s [algebraic-graphs]
  149. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.(===) ============
  150. 1697.38 s [algebraic-graphs] OK: x === x == True
  151. 1697.38 s [algebraic-graphs] OK: x + y === x + y == True
  152. 1697.38 s [algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
  153. 1697.38 s [algebraic-graphs] OK: x + y === x * y == False
  154. 1697.38 s [algebraic-graphs]
  155. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.size ============
  156. 1697.38 s [algebraic-graphs] OK: size (vertex x) == 1
  157. 1697.38 s [algebraic-graphs] OK: size (overlay x y) == size x + size y
  158. 1697.38 s [algebraic-graphs] OK: size (connect x y) == size x + size y
  159. 1697.38 s [algebraic-graphs] OK: size x >= 1
  160. 1697.38 s [algebraic-graphs] OK: size x >= vertexCount x
  161. 1697.38 s [algebraic-graphs]
  162. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
  163. 1697.38 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  164. 1697.38 s [algebraic-graphs]
  165. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
  166. 1697.38 s [algebraic-graphs] OK: hasEdge x y (vertex z) == False
  167. 1697.38 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  168. 1697.38 s [algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
  169. 1697.38 s [algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
  170. 1697.38 s [algebraic-graphs]
  171. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
  172. 1697.38 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  173. 1697.38 s [algebraic-graphs] OK: vertexCount x >= 1
  174. 1697.38 s [algebraic-graphs] OK: vertexCount == length . vertexList1
  175. 1697.38 s [algebraic-graphs]
  176. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
  177. 1697.38 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  178. 1697.38 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  179. 1697.38 s [algebraic-graphs] OK: edgeCount == length . edgeList
  180. 1697.38 s [algebraic-graphs]
  181. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
  182. 1697.38 s [algebraic-graphs] OK: vertexList1 (vertex x) == [x]
  183. 1697.38 s [algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
  184. 1697.38 s [algebraic-graphs]
  185. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
  186. 1697.38 s [algebraic-graphs] OK: edgeList (vertex x) == []
  187. 1697.38 s [algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
  188. 1697.38 s [algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
  189. 1697.38 s [algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
  190. 1697.38 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  191. 1697.38 s [algebraic-graphs]
  192. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
  193. 1697.38 s [algebraic-graphs] OK: vertexSet . vertex == Set.singleton
  194. 1697.38 s [algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
  195. 1697.38 s [algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
  196. 1697.38 s [algebraic-graphs]
  197. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
  198. 1697.38 s [algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
  199. 1697.38 s [algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
  200. 1697.38 s [algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
  201. 1697.38 s [algebraic-graphs]
  202. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.path1 ============
  203. 1697.38 s [algebraic-graphs] OK: path1 [x] == vertex x
  204. 1697.38 s [algebraic-graphs] OK: path1 [x,y] == edge x y
  205. 1697.38 s [algebraic-graphs] OK: path1 . reverse == transpose . path1
  206. 1697.38 s [algebraic-graphs]
  207. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
  208. 1697.38 s [algebraic-graphs] OK: circuit1 [x] == edge x x
  209. 1697.38 s [algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
  210. 1697.38 s [algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
  211. 1697.38 s [algebraic-graphs]
  212. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
  213. 1697.38 s [algebraic-graphs] OK: clique1 [x] == vertex x
  214. 1697.38 s [algebraic-graphs] OK: clique1 [x,y] == edge x y
  215. 1697.38 s [algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
  216. 1697.38 s [algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
  217. 1697.38 s [algebraic-graphs] OK: clique1 . reverse == transpose . clique1
  218. 1697.38 s [algebraic-graphs]
  219. 1697.38 s [algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
  220. 1697.38 s [algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  221. 1697.38 s [algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
  222. 1697.38 s [algebraic-graphs]
  223. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.star ============
  224. 1697.39 s [algebraic-graphs] OK: star x [] == vertex x
  225. 1697.39 s [algebraic-graphs] OK: star x [y] == edge x y
  226. 1697.39 s [algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
  227. 1697.39 s [algebraic-graphs]
  228. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
  229. 1697.39 s [algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
  230. 1697.39 s [algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
  231. 1697.39 s [algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
  232. 1697.39 s [algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
  233. 1697.39 s [algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
  234. 1697.39 s [algebraic-graphs]
  235. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.tree ============
  236. 1697.39 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  237. 1697.39 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
  238. 1697.39 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  239. 1697.39 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges1 [(1,2), (1,3), (3,4), (3,5)]
  240. 1697.39 s [algebraic-graphs]
  241. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
  242. 1697.39 s [algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
  243. 1697.39 s [algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
  244. 1697.39 s [algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
  245. 1697.39 s [algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
  246. 1697.39 s [algebraic-graphs]
  247. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
  248. 1697.39 s [algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
  249. 1697.39 s [algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
  250. 1697.39 s [algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
  251. 1697.39 s [algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
  252. 1697.39 s [algebraic-graphs]
  253. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
  254. 1697.39 s [algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
  255. 1697.39 s [algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
  256. 1697.39 s [algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
  257. 1697.39 s [algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
  258. 1697.39 s [algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
  259. 1697.39 s [algebraic-graphs]
  260. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
  261. 1697.39 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
  262. 1697.39 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  263. 1697.39 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  264. 1697.39 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  265. 1697.39 s [algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
  266. 1697.39 s [algebraic-graphs]
  267. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
  268. 1697.39 s [algebraic-graphs] OK: replaceVertex x x == id
  269. 1697.39 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  270. 1697.39 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  271. 1697.39 s [algebraic-graphs]
  272. 1697.39 s [algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
  273. 1697.39 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  274. 1697.51 s [fuzzy] Phase: setupCompilerEnvironmentPhase
  275. 1697.52 s [fuzzy] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
  276. 1698.08 s [shake] [72 of 73] Compiling Development.Shake.Forward ( src/Development/Shake/Forward.hs, dist/build/Development/Shake/Forward.p_o )
  277. 1698.16 s [fuzzy] Phase: unpackPhase
  278. 1698.19 s [fuzzy] unpacking source archive /nix/store/wavjqvgbmq1q6aawwsk6iydx5lzi3p5l-fuzzy-0.1.1.0.tar.gz
  279. 1698.22 s [fuzzy] source root is fuzzy-0.1.1.0
  280. 1698.25 s [fuzzy] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "fuzzy-0.1.1.0/tests/tests.hs"
  281. 1698.28 s [fuzzy] Phase: patchPhase
  282. 1698.33 s [fuzzy] Phase: compileBuildDriverPhase
  283. 1698.35 s [fuzzy] setupCompileFlags: -package-db=/build/tmp.HIlK3OPMUh/setup-package.conf.d -threaded
  284. 1698.58 s [fuzzy] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.HIlK3OPMUh/Main.o )
  285. 1698.78 s [fuzzy] [2 of 2] Linking Setup
  286. 1699.18 s [shake] [73 of 73] Compiling Development.Shake.Config ( src/Development/Shake/Config.hs, dist/build/Development/Shake/Config.p_o )
  287. 1699.91 s [kan-extensions] Phase: checkPhase
  288. 1699.95 s [cassava] [ 4 of 10] Compiling Data.Csv.Conversion.Internal ( src/Data/Csv/Conversion/Internal.hs, dist/build/Data/Csv/Conversion/Internal.p_o )
  289. 1699.95 s [cassava] [ 5 of 10] Compiling Data.Csv.Conversion ( src/Data/Csv/Conversion.hs, dist/build/Data/Csv/Conversion.p_o )
  290. 1700.06 s [kan-extensions] Package has no test suites.
  291. 1700.08 s [kan-extensions] Phase: haddockPhase
  292. 1700.59 s [kan-extensions] Preprocessing library for kan-extensions-5.2.6..
  293. 1700.59 s [kan-extensions] Running Haddock on library for kan-extensions-5.2.6..
  294. 1700.86 s [kan-extensions] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
  295. 1702.26 s [kan-extensions] 100% ( 5 / 5) in 'Data.Functor.Contravariant.Coyoneda'
  296. 1702.45 s [fuzzy] Phase: updateAutotoolsGnuConfigScriptsPhase
  297. 1702.48 s [fuzzy] Phase: configurePhase
  298. 1702.49 s [fuzzy] configureFlags: --verbose --prefix=/nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc/share/doc/fuzzy-0.1.1.0 --with-gcc=gcc --package-db=/build/tmp.HIlK3OPMUh/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/vj3rmg6937p9icir6bazbdcb4xdnrg9j-ncurses-6.5/lib --extra-lib-dirs=/nix/store/0aaj6jbxclpwvrphggqz4vf5hg8360fr-libffi-3.4.8/lib --extra-lib-dirs=/nix/store/vaix9m2syrilm7hv3690plsk35y0arwm-elfutils-0.192/lib --extra-lib-dirs=/nix/store/m9fycbkaairz8kampnsl7sx1aanvl0db-gmp-with-cxx-6.3.0/lib
  299. 1702.51 s [kan-extensions] 100% ( 14 / 14) in 'Data.Functor.Contravariant.Day'
  300. 1702.52 s [fuzzy] Using Parsec parser
  301. 1702.52 s [fuzzy] Configuring fuzzy-0.1.1.0...
  302. 1702.70 s [aeson] [24 of 32] Compiling Data.Aeson.Types.ToJSON ( src/Data/Aeson/Types/ToJSON.hs, dist/build/Data/Aeson/Types/ToJSON.p_o )
  303. 1702.70 s [aeson]
  304. 1702.70 s [aeson] src/Data/Aeson/Types/ToJSON.hs:1615:23: warning: [GHC-68441] [-Wdeprecations]
  305. 1702.70 s [aeson] In the use of data constructor ‘Solo’
  306. 1702.70 s [aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
  307. 1702.70 s [aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
  308. 1702.70 s [aeson] |
  309. 1702.70 s [aeson] 1615 | liftToJSON _ t _ (Solo a) = t a
  310. 1702.70 s [aeson] | ^^^^
  311. 1702.70 s [aeson]
  312. 1702.70 s [aeson] src/Data/Aeson/Types/ToJSON.hs:1618:27: warning: [GHC-68441] [-Wdeprecations]
  313. 1702.70 s [aeson] In the use of data constructor ‘Solo’
  314. 1702.70 s [aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
  315. 1702.70 s [aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
  316. 1702.70 s [aeson] |
  317. 1702.70 s [aeson] 1618 | liftToEncoding _ t _ (Solo a) = t a
  318. 1702.70 s [aeson] | ^^^^
  319. 1702.88 s [kan-extensions] 75% ( 3 / 4) in 'Data.Functor.Contravariant.Yoneda'
  320. 1702.88 s [kan-extensions] Missing documentation for:
  321. 1702.88 s [kan-extensions] lowerYoneda (src/Data/Functor/Contravariant/Yoneda.hs:40)
  322. 1703.23 s [kan-extensions] 93% ( 14 / 15) in 'Data.Functor.Day'
  323. 1703.23 s [kan-extensions] Missing documentation for:
  324. 1703.23 s [kan-extensions] cayley (src/Data/Functor/Day.hs:199)
  325. 1703.49 s [kan-extensions] Warning: 'Compose' is out of scope.
  326. 1703.49 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  327. 1703.49 s [kan-extensions] Warning: 'Rift' is out of scope.
  328. 1703.49 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  329. 1703.50 s [kan-extensions] 92% ( 13 / 14) in 'Data.Functor.Day.Curried'
  330. 1703.50 s [kan-extensions] Missing documentation for:
  331. 1703.50 s [kan-extensions] Curried (src/Data/Functor/Day/Curried.hs:36)
  332. 1703.66 s [fuzzy] Dependency base >=4.8 && <5: using base-4.18.1.0
  333. 1703.66 s [fuzzy] Dependency monoid-subclasses >0.4: using monoid-subclasses-1.2.6
  334. 1703.66 s [fuzzy] Dependency HUnit >=1.2.5.0: using HUnit-1.6.2.0
  335. 1703.66 s [fuzzy] Dependency base: using base-4.18.1.0
  336. 1703.66 s [fuzzy] Dependency fuzzy: using fuzzy-0.1.1.0
  337. 1703.68 s [kan-extensions] 100% ( 14 / 14) in 'Data.Functor.Invariant.Day'
  338. 1703.92 s [kan-extensions] Warning: 'Compose' is out of scope.
  339. 1703.92 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  340. 1703.92 s [kan-extensions] Warning: 'o' is out of scope.
  341. 1703.92 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  342. 1703.93 s [kan-extensions] 75% ( 9 / 12) in 'Data.Functor.Kan.Lan'
  343. 1703.93 s [kan-extensions] Missing documentation for:
  344. 1703.93 s [kan-extensions] decomposeLan (src/Data/Functor/Kan/Lan.hs:108)
  345. 1703.93 s [kan-extensions] lanToAdjoint (src/Data/Functor/Kan/Lan.hs:80)
  346. 1703.93 s [kan-extensions] composedAdjointToLan (src/Data/Functor/Kan/Lan.hs:94)
  347. 1704.32 s [shake] Preprocessing executable 'shake' for shake-0.19.8..
  348. 1704.35 s [shake] Building executable 'shake' for shake-0.19.8..
  349. 1704.44 s [fuzzy] Source component graph:
  350. 1704.44 s [fuzzy] component lib
  351. 1704.44 s [fuzzy] component test:tests dependency lib
  352. 1704.44 s [fuzzy] Configured component graph:
  353. 1704.44 s [fuzzy] component fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  354. 1704.44 s [fuzzy] include base-4.18.1.0
  355. 1704.44 s [fuzzy] include monoid-subclasses-1.2.6-KQOqYr3uLxsEqY6ywLiQg3
  356. 1704.44 s [fuzzy] component fuzzy-0.1.1.0-CGYhzLGfJ0TEYQLRYpmMVb-tests
  357. 1704.44 s [fuzzy] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
  358. 1704.44 s [fuzzy] include base-4.18.1.0
  359. 1704.44 s [fuzzy] include fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  360. 1704.44 s [fuzzy] Linked component graph:
  361. 1704.44 s [fuzzy] unit fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  362. 1704.44 s [fuzzy] include base-4.18.1.0
  363. 1704.44 s [fuzzy] include monoid-subclasses-1.2.6-KQOqYr3uLxsEqY6ywLiQg3
  364. 1704.44 s [fuzzy] Text.Fuzzy=fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm:Text.Fuzzy
  365. 1704.44 s [fuzzy] unit fuzzy-0.1.1.0-CGYhzLGfJ0TEYQLRYpmMVb-tests
  366. 1704.44 s [fuzzy] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
  367. 1704.44 s [fuzzy] include base-4.18.1.0
  368. 1704.44 s [fuzzy] include fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  369. 1704.44 s [fuzzy] Ready component graph:
  370. 1704.44 s [fuzzy] definite fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  371. 1704.44 s [fuzzy] depends base-4.18.1.0
  372. 1704.44 s [fuzzy] depends monoid-subclasses-1.2.6-KQOqYr3uLxsEqY6ywLiQg3
  373. 1704.44 s [fuzzy] definite fuzzy-0.1.1.0-CGYhzLGfJ0TEYQLRYpmMVb-tests
  374. 1704.44 s [fuzzy] depends HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
  375. 1704.44 s [fuzzy] depends base-4.18.1.0
  376. 1704.44 s [fuzzy] depends fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  377. 1704.44 s [fuzzy] Using Cabal-3.10.1.0 compiled by ghc-9.6
  378. 1704.44 s [fuzzy] Using compiler: ghc-9.6.3
  379. 1704.44 s [fuzzy] Using install prefix:
  380. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
  381. 1704.44 s [fuzzy] Executables installed in:
  382. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/bin
  383. 1704.44 s [fuzzy] Libraries installed in:
  384. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  385. 1704.44 s [fuzzy] Dynamic Libraries installed in:
  386. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3
  387. 1704.44 s [fuzzy] Private executables installed in:
  388. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/libexec/x86_64-linux-ghc-9.6.3/fuzzy-0.1.1.0
  389. 1704.44 s [fuzzy] Data files installed in:
  390. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/share/x86_64-linux-ghc-9.6.3/fuzzy-0.1.1.0
  391. 1704.44 s [fuzzy] Documentation installed in:
  392. 1704.44 s [fuzzy] /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc/share/doc/fuzzy-0.1.1.0
  393. 1704.44 s [fuzzy] Configuration files installed in:
  394. 1704.44 s [fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/etc
  395. 1704.44 s [fuzzy] No alex found
  396. 1704.44 s [fuzzy] Using ar found on system at:
  397. 1704.44 s [fuzzy] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
  398. 1704.44 s [fuzzy] No c2hs found
  399. 1704.44 s [fuzzy] No cpphs found
  400. 1704.44 s [fuzzy] No doctest found
  401. 1704.44 s [fuzzy] Using gcc version 14.3.0 given by user at:
  402. 1704.44 s [fuzzy] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
  403. 1704.44 s [fuzzy] Using ghc version 9.6.3 found on system at:
  404. 1704.44 s [fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
  405. 1704.44 s [fuzzy] Using ghc-pkg version 9.6.3 found on system at:
  406. 1704.44 s [fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
  407. 1704.44 s [fuzzy] No ghcjs found
  408. 1704.44 s [fuzzy] No ghcjs-pkg found
  409. 1704.44 s [fuzzy] No greencard found
  410. 1704.44 s [fuzzy] Using haddock version 2.29.1 found on system at:
  411. 1704.44 s [fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
  412. 1704.44 s [fuzzy] No happy found
  413. 1704.44 s [fuzzy] Using haskell-suite found on system at: haskell-suite-dummy-location
  414. 1704.44 s [fuzzy] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  415. 1704.44 s [fuzzy] No hmake found
  416. 1704.44 s [fuzzy] Using hpc version 0.68 found on system at:
  417. 1704.45 s [fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
  418. 1704.45 s [fuzzy] Using hsc2hs version 0.68.9 found on system at:
  419. 1704.45 s [fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
  420. 1704.45 s [fuzzy] Using hscolour version 1.25 found on system at:
  421. 1704.45 s [fuzzy] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
  422. 1704.45 s [fuzzy] No jhc found
  423. 1704.45 s [fuzzy] Using ld found on system at:
  424. 1704.45 s [fuzzy] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
  425. 1704.45 s [fuzzy] No pkg-config found
  426. 1704.45 s [fuzzy] Using runghc version 9.6.3 found on system at:
  427. 1704.45 s [fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
  428. 1704.45 s [fuzzy] Using strip version 2.44 found on system at:
  429. 1704.45 s [fuzzy] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
  430. 1704.45 s [fuzzy] Using tar found on system at:
  431. 1704.45 s [fuzzy] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
  432. 1704.45 s [fuzzy] No uhc found
  433. 1704.65 s [kan-extensions] 88% ( 8 / 9) in 'Data.Functor.Coyoneda'
  434. 1704.65 s [kan-extensions] Missing documentation for:
  435. 1704.65 s [kan-extensions] lanToCoyoneda (src/Data/Functor/Coyoneda.hs:75)
  436. 1704.77 s [fuzzy] Phase: buildPhase
  437. 1705.01 s [kan-extensions] 57% ( 4 / 7) in 'Control.Comonad.Density'
  438. 1705.02 s [kan-extensions] Missing documentation for:
  439. 1705.02 s [kan-extensions] Density (src/Control/Comonad/Density.hs:40)
  440. 1705.02 s [kan-extensions] adjunctionToDensity (src/Control/Comonad/Density.hs:96)
  441. 1705.02 s [kan-extensions] densityToLan (src/Control/Comonad/Density.hs:111)
  442. 1705.02 s [fuzzy] Preprocessing library for fuzzy-0.1.1.0..
  443. 1705.02 s [fuzzy] Building library for fuzzy-0.1.1.0..
  444. 1705.20 s [kan-extensions] Warning: 'Hask' is out of scope.
  445. 1705.20 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  446. 1705.20 s [kan-extensions] Warning: 'Contravariant' is out of scope.
  447. 1705.20 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  448. 1705.20 s [kan-extensions] Warning: 'Rift' is out of scope.
  449. 1705.20 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  450. 1705.21 s [kan-extensions] 20% ( 5 / 24) in 'Control.Monad.Co'
  451. 1705.21 s [kan-extensions] Missing documentation for:
  452. 1705.21 s [kan-extensions] Co (src/Control/Monad/Co.hs:72)
  453. 1705.21 s [kan-extensions] co (src/Control/Monad/Co.hs:74)
  454. 1705.21 s [kan-extensions] runCo (src/Control/Monad/Co.hs:77)
  455. 1705.21 s [kan-extensions] liftCoT0 (src/Control/Monad/Co.hs:112)
  456. 1705.21 s [kan-extensions] liftCoT0M (src/Control/Monad/Co.hs:148)
  457. 1705.21 s [kan-extensions] lowerCoT0 (src/Control/Monad/Co.hs:115)
  458. 1705.21 s [kan-extensions] lowerCo0 (src/Control/Monad/Co.hs:118)
  459. 1705.21 s [kan-extensions] liftCoT1 (src/Control/Monad/Co.hs:121)
  460. 1705.21 s [kan-extensions] liftCoT1M (src/Control/Monad/Co.hs:151)
  461. 1705.21 s [kan-extensions] lowerCoT1 (src/Control/Monad/Co.hs:124)
  462. 1705.21 s [kan-extensions] lowerCo1 (src/Control/Monad/Co.hs:127)
  463. 1705.21 s [kan-extensions] diter (src/Control/Monad/Co.hs:154)
  464. 1705.21 s [kan-extensions] dctrlM (src/Control/Monad/Co.hs:157)
  465. 1705.21 s [kan-extensions] posW (src/Control/Monad/Co.hs:130)
  466. 1705.21 s [kan-extensions] peekW (src/Control/Monad/Co.hs:133)
  467. 1705.21 s [kan-extensions] peeksW (src/Control/Monad/Co.hs:136)
  468. 1705.21 s [kan-extensions] askW (src/Control/Monad/Co.hs:139)
  469. 1705.21 s [kan-extensions] asksW (src/Control/Monad/Co.hs:142)
  470. 1705.21 s [kan-extensions] traceW (src/Control/Monad/Co.hs:145)
  471. 1705.25 s [fuzzy] [1 of 1] Compiling Text.Fuzzy ( src/Text/Fuzzy.hs, dist/build/Text/Fuzzy.o, dist/build/Text/Fuzzy.dyn_o )
  472. 1705.43 s [kan-extensions] Warning: 'Compose'' is out of scope.
  473. 1705.43 s [kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
  474. 1705.44 s [kan-extensions] 53% ( 8 / 15) in 'Data.Functor.Kan.Ran'
  475. 1705.44 s [kan-extensions] Missing documentation for:
  476. 1705.44 s [kan-extensions] decomposeRan (src/Data/Functor/Kan/Ran.hs:115)
  477. 1705.44 s [kan-extensions] ranToAdjoint (src/Data/Functor/Kan/Ran.hs:129)
  478. 1705.44 s [kan-extensions] composedAdjointToRan (src/Data/Functor/Kan/Ran.hs:143)
  479. 1705.44 s [kan-extensions] repToRan (src/Data/Functor/Kan/Ran.hs:152)
  480. 1705.44 s [kan-extensions] ranToRep (src/Data/Functor/Kan/Ran.hs:156)
  481. 1705.44 s [kan-extensions] composedRepToRan (src/Data/Functor/Kan/Ran.hs:164)
  482. 1705.44 s [kan-extensions] ranToComposedRep (src/Data/Functor/Kan/Ran.hs:160)
  483. 1705.64 s [kan-extensions] 85% ( 12 / 14) in 'Control.Monad.Codensity'
  484. 1705.64 s [kan-extensions] Missing documentation for:
  485. 1705.64 s [kan-extensions] adjunctionToCodensity (src/Control/Monad/Codensity.hs:174)
  486. 1705.64 s [kan-extensions] ranToCodensity (src/Control/Monad/Codensity.hs:215)
  487. 1705.67 s [shake] [ 1 of 71] Compiling Development.Ninja.Env ( src/Development/Ninja/Env.hs, dist/build/shake/shake-tmp/Development/Ninja/Env.o )
  488. 1705.97 s [kan-extensions] 45% ( 5 / 11) in 'Data.Functor.Yoneda'
  489. 1705.98 s [kan-extensions] Missing documentation for:
  490. 1705.98 s [kan-extensions] lowerYoneda (src/Data/Functor/Yoneda.hs:84)
  491. 1705.98 s [kan-extensions] maxF (src/Data/Functor/Yoneda.hs:193)
  492. 1705.98 s [kan-extensions] minF (src/Data/Functor/Yoneda.hs:198)
  493. 1705.98 s [kan-extensions] maxM (src/Data/Functor/Yoneda.hs:203)
  494. 1705.98 s [kan-extensions] minM (src/Data/Functor/Yoneda.hs:208)
  495. 1705.98 s [kan-extensions] ranToYoneda (src/Data/Functor/Yoneda.hs:102)
  496. 1706.57 s [fuzzy] [1 of 1] Compiling Text.Fuzzy ( src/Text/Fuzzy.hs, dist/build/Text/Fuzzy.p_o )
  497. 1707.31 s [shake] [ 2 of 71] Compiling Development.Ninja.Type ( src/Development/Ninja/Type.hs, dist/build/shake/shake-tmp/Development/Ninja/Type.o )
  498. 1707.71 s [cassava] [ 6 of 10] Compiling Data.Csv.Encoding ( src/Data/Csv/Encoding.hs, dist/build/Data/Csv/Encoding.p_o )
  499. 1709.11 s [aeson] [25 of 32] Compiling Data.Aeson.Types.Class ( src/Data/Aeson/Types/Class.hs, dist/build/Data/Aeson/Types/Class.p_o )
  500. 1709.56 s [aeson] [26 of 32] Compiling Data.Aeson.Types ( src/Data/Aeson/Types.hs, dist/build/Data/Aeson/Types.p_o )
  501. 1710.12 s [aeson] [27 of 32] Compiling Data.Aeson.Text ( src/Data/Aeson/Text.hs, dist/build/Data/Aeson/Text.p_o )
  502. 1710.48 s [shake] [ 3 of 71] Compiling Development.Ninja.Lexer ( src/Development/Ninja/Lexer.hs, dist/build/shake/shake-tmp/Development/Ninja/Lexer.o )
  503. 1711.96 s [fuzzy] Preprocessing test suite 'tests' for fuzzy-0.1.1.0..
  504. 1711.96 s [fuzzy] Building test suite 'tests' for fuzzy-0.1.1.0..
  505. 1712.18 s [fuzzy] [1 of 1] Compiling Main ( tests/tests.hs, dist/build/tests/tests-tmp/Main.o )
  506. 1712.57 s [shake] [ 4 of 71] Compiling Development.Shake.Classes ( src/Development/Shake/Classes.hs, dist/build/shake/shake-tmp/Development/Shake/Classes.o )
  507. 1712.57 s [shake] [ 5 of 71] Compiling Development.Shake.FilePath ( src/Development/Shake/FilePath.hs, dist/build/shake/shake-tmp/Development/Shake/FilePath.o )
  508. 1712.57 s [shake] [ 6 of 71] Compiling Development.Shake.Internal.CmdOption ( src/Development/Shake/Internal/CmdOption.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/CmdOption.o )
  509. 1712.57 s [shake] [ 7 of 71] Compiling Development.Shake.Internal.History.Bloom ( src/Development/Shake/Internal/History/Bloom.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Bloom.o )
  510. 1712.57 s [shake] [ 8 of 71] Compiling Development.Shake.Internal.History.Network ( src/Development/Shake/Internal/History/Network.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Network.o )
  511. 1712.57 s [shake] [ 9 of 71] Compiling Development.Shake.Internal.History.Types ( src/Development/Shake/Internal/History/Types.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Types.o )
  512. 1712.57 s [shake] [10 of 71] Compiling General.Bilist ( src/General/Bilist.hs, dist/build/shake/shake-tmp/General/Bilist.o )
  513. 1712.57 s [shake] [11 of 71] Compiling General.Binary ( src/General/Binary.hs, dist/build/shake/shake-tmp/General/Binary.o )
  514. 1712.58 s [shake] [12 of 71] Compiling Development.Shake.Internal.FileName ( src/Development/Shake/Internal/FileName.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/FileName.o )
  515. 1712.58 s [shake] [13 of 71] Compiling General.Cleanup ( src/General/Cleanup.hs, dist/build/shake/shake-tmp/General/Cleanup.o )
  516. 1712.58 s [shake] [14 of 71] Compiling General.EscCodes ( src/General/EscCodes.hs, dist/build/shake/shake-tmp/General/EscCodes.o )
  517. 1712.58 s [shake] [15 of 71] Compiling General.Extra ( src/General/Extra.hs, dist/build/shake/shake-tmp/General/Extra.o )
  518. 1712.58 s [shake] [16 of 71] Compiling Development.Shake.Internal.History.Symlink ( src/Development/Shake/Internal/History/Symlink.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Symlink.o )
  519. 1712.58 s [shake] [17 of 71] Compiling Development.Shake.Internal.Errors ( src/Development/Shake/Internal/Errors.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Errors.o )
  520. 1712.73 s [shake] [18 of 71] Compiling Development.Shake.Internal.Value ( src/Development/Shake/Internal/Value.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Value.o )
  521. 1713.61 s [aeson] [28 of 32] Compiling Data.Aeson.Decoding ( src/Data/Aeson/Decoding.hs, dist/build/Data/Aeson/Decoding.p_o )
  522. 1713.61 s [aeson] [29 of 32] Compiling Data.Aeson ( src/Data/Aeson.hs, dist/build/Data/Aeson.p_o )
  523. 1713.61 s [aeson] [30 of 32] Compiling Data.Aeson.RFC8785 ( src/Data/Aeson/RFC8785.hs, dist/build/Data/Aeson/RFC8785.p_o )
  524. 1713.66 s [shake] [19 of 71] Compiling Development.Shake.Internal.FilePattern ( src/Development/Shake/Internal/FilePattern.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/FilePattern.o )
  525. 1713.67 s [aeson] [31 of 32] Compiling Data.Aeson.QQ.Simple ( src/Data/Aeson/QQ/Simple.hs, dist/build/Data/Aeson/QQ/Simple.p_o )
  526. 1713.67 s [aeson] [32 of 32] Compiling Data.Aeson.TH ( src/Data/Aeson/TH.hs, dist/build/Data/Aeson/TH.p_o )
  527. 1713.68 s [aeson]
  528. 1713.68 s [aeson] src/Data/Aeson/TH.hs:948:7: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  529. 1713.68 s [aeson] Pattern match(es) are non-exhaustive
  530. 1713.68 s [aeson] In a pattern binding: Patterns of type ‘[Q Exp]’ not matched: []
  531. 1713.68 s [aeson] |
  532. 1713.68 s [aeson] 948 | x:xs = [ lookupField argTy
  533. 1713.68 s [aeson] | ^^^^^^^^^^^^^^^^^^^^^^^^^^...
  534. 1713.68 s [aeson]
  535. 1713.68 s [aeson] src/Data/Aeson/TH.hs:1064:14: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  536. 1713.68 s [aeson] Pattern match(es) are non-exhaustive
  537. 1713.68 s [aeson] In a pattern binding: Patterns of type ‘[Q Exp]’ not matched: []
  538. 1713.68 s [aeson] |
  539. 1713.68 s [aeson] 1064 | let x:xs = [ dispatchParseJSON jc conName tvMap argTy
  540. 1713.68 s [aeson] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
  541. 1713.81 s [fuzzy] [2 of 2] Linking dist/build/tests/tests
  542. 1715.56 s [shake] [20 of 71] Compiling Development.Shake.Internal.Options ( src/Development/Shake/Internal/Options.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Options.o )
  543. 1715.73 s [fuzzy] Phase: checkPhase
  544. 1716.00 s [fuzzy] Running 1 test suites...
  545. 1716.00 s [fuzzy] Test suite tests: RUNNING...
  546. 1716.04 s [fuzzy] ### Failure in: 1:match:3:should be case sensitive is specified:0
  547. 1716.04 s [fuzzy] tests/tests.hs:37
  548. 1716.04 s [fuzzy] expected: Nothing
  549. 1716.04 s [fuzzy] but got: Just (Fuzzy {original = "Haskell", rendered = "Haskell", score = 26})
  550. 1716.04 s [fuzzy] Cases: 14 Tried: 14 Errors: 0 Failures: 1
  551. 1716.04 s [fuzzy] Test suite tests: PASS
  552. 1716.04 s [fuzzy] Test suite logged to: dist/test/fuzzy-0.1.1.0-tests.log
  553. 1716.04 s [fuzzy] 1 of 1 test suites (1 of 1 test cases) passed.
  554. 1716.08 s [fuzzy] Phase: haddockPhase
  555. 1716.48 s [algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
  556. 1716.48 s [algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
  557. 1716.48 s [algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
  558. 1716.48 s [algebraic-graphs]
  559. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
  560. 1716.49 s [algebraic-graphs] OK: splitVertex1 x [x] == id
  561. 1716.49 s [algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
  562. 1716.49 s [algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
  563. 1716.49 s [algebraic-graphs]
  564. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.transpose ============
  565. 1716.49 s [algebraic-graphs] OK: transpose (vertex x) == vertex x
  566. 1716.49 s [algebraic-graphs] OK: transpose (edge x y) == edge y x
  567. 1716.49 s [algebraic-graphs] OK: transpose . transpose == id
  568. 1716.49 s [algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
  569. 1716.49 s [algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
  570. 1716.49 s [algebraic-graphs]
  571. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
  572. 1716.49 s [algebraic-graphs] OK: induce1 (const True ) x == Just x
  573. 1716.49 s [algebraic-graphs] OK: induce1 (const False) x == Nothing
  574. 1716.49 s [algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
  575. 1716.49 s [algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
  576. 1716.49 s [algebraic-graphs]
  577. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
  578. 1716.49 s [algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
  579. 1716.49 s [algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
  580. 1716.49 s [algebraic-graphs] OK: induceJust1 . fmap Just == Just
  581. 1716.49 s [algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
  582. 1716.49 s [algebraic-graphs]
  583. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.simplify ============
  584. 1716.49 s [algebraic-graphs] OK: simplify == id
  585. 1716.49 s [algebraic-graphs] OK: size (simplify x) <= size x
  586. 1716.49 s [algebraic-graphs] OK: simplify 1 === 1
  587. 1716.49 s [algebraic-graphs] OK: simplify (1 + 1) === 1
  588. 1716.49 s [algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
  589. 1716.49 s [algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
  590. 1716.49 s [algebraic-graphs]
  591. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
  592. 1716.49 s [algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
  593. 1716.49 s [algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
  594. 1716.49 s [algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
  595. 1716.49 s [algebraic-graphs] OK: size (sparsify x) <= 3 * size x
  596. 1716.49 s [algebraic-graphs]
  597. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
  598. 1716.49 s [algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
  599. 1716.49 s [algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
  600. 1716.49 s [algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
  601. 1716.49 s [algebraic-graphs]
  602. 1716.49 s [algebraic-graphs] ============ NonEmpty.Graph.box ============
  603. 1716.49 s [algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
  604. 1716.49 s [algebraic-graphs] OK: box x y ~~ box y x
  605. 1716.49 s [algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
  606. 1716.49 s [algebraic-graphs] OK: box x (vertex ()) ~~ x
  607. 1716.49 s [algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
  608. 1716.49 s [algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
  609. 1716.49 s [algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
  610. 1716.49 s [algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
  611. 1716.49 s [algebraic-graphs]
  612. 1716.49 s [algebraic-graphs] ============ Relation ============
  613. 1716.49 s [algebraic-graphs] OK: Axioms of graphs
  614. 1716.49 s [algebraic-graphs]
  615. 1716.49 s [algebraic-graphs] ============ Relation.consistent ============
  616. 1716.49 s [algebraic-graphs] OK: Consistency of the Arbitrary instance
  617. 1716.49 s [algebraic-graphs]
  618. 1716.49 s [algebraic-graphs] OK: consistent empty == True
  619. 1716.49 s [algebraic-graphs] OK: consistent (vertex x) == True
  620. 1716.49 s [algebraic-graphs] OK: consistent (overlay x y) == True
  621. 1716.49 s [algebraic-graphs] OK: consistent (connect x y) == True
  622. 1716.49 s [algebraic-graphs] OK: consistent (edge x y) == True
  623. 1716.49 s [algebraic-graphs] OK: consistent (edges xs) == True
  624. 1716.49 s [algebraic-graphs] OK: consistent (stars xs) == True
  625. 1716.49 s [algebraic-graphs]
  626. 1716.49 s [algebraic-graphs] ============ Relation.Show ============
  627. 1716.49 s [algebraic-graphs] OK: show (empty ) == "empty"
  628. 1716.49 s [algebraic-graphs] OK: show (1 ) == "vertex 1"
  629. 1716.49 s [algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
  630. 1716.49 s [algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
  631. 1716.49 s [algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
  632. 1716.49 s [algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
  633. 1716.49 s [algebraic-graphs]
  634. 1716.49 s [algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
  635. 1716.49 s [algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
  636. 1716.49 s [algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
  637. 1716.49 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
  638. 1716.49 s [algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
  639. 1716.49 s [algebraic-graphs]
  640. 1716.49 s [algebraic-graphs] ============ Relation.Ord ============
  641. 1716.49 s [algebraic-graphs] OK: vertex 1 < vertex 2
  642. 1716.49 s [algebraic-graphs] OK: vertex 3 < edge 1 2
  643. 1716.49 s [algebraic-graphs] OK: vertex 1 < edge 1 1
  644. 1716.49 s [algebraic-graphs] OK: edge 1 1 < edge 1 2
  645. 1716.49 s [algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
  646. 1716.49 s [algebraic-graphs] OK: edge 1 2 < edge 1 3
  647. 1716.49 s [algebraic-graphs] OK: x <= x + y
  648. 1716.49 s [algebraic-graphs] OK: x + y <= x * y
  649. 1716.49 s [algebraic-graphs]
  650. 1716.49 s [algebraic-graphs] ============ Relation.empty ============
  651. 1716.49 s [algebraic-graphs] OK: isEmpty empty == True
  652. 1716.49 s [algebraic-graphs] OK: hasVertex x empty == False
  653. 1716.49 s [algebraic-graphs] OK: vertexCount empty == 0
  654. 1716.49 s [algebraic-graphs] OK: edgeCount empty == 0
  655. 1716.49 s [algebraic-graphs]
  656. 1716.49 s [algebraic-graphs] ============ Relation.vertex ============
  657. 1716.49 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  658. 1716.49 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  659. 1716.49 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  660. 1716.49 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  661. 1716.49 s [algebraic-graphs]
  662. 1716.49 s [algebraic-graphs] ============ Relation.edge ============
  663. 1716.49 s [algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
  664. 1716.49 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  665. 1716.49 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  666. 1716.49 s [algebraic-graphs] OK: vertexCount (edge 1 1) == 1
  667. 1716.49 s [algebraic-graphs] OK: vertexCount (edge 1 2) == 2
  668. 1716.49 s [algebraic-graphs]
  669. 1716.49 s [algebraic-graphs] ============ Relation.overlay ============
  670. 1716.49 s [algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
  671. 1716.49 s [algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
  672. 1716.49 s [algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
  673. 1716.49 s [algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
  674. 1716.49 s [algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
  675. 1716.49 s [algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
  676. 1716.49 s [algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
  677. 1716.49 s [algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
  678. 1716.49 s [algebraic-graphs]
  679. 1716.49 s [algebraic-graphs] ============ Relation.connect ============
  680. 1716.49 s [algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
  681. 1716.49 s [algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
  682. 1716.49 s [algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
  683. 1716.49 s [algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
  684. 1716.49 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
  685. 1716.49 s [algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
  686. 1716.49 s [algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
  687. 1716.49 s [algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
  688. 1716.49 s [algebraic-graphs] OK: vertexCount (connect 1 2) == 2
  689. 1716.49 s [algebraic-graphs] OK: edgeCount (connect 1 2) == 1
  690. 1716.49 s [algebraic-graphs]
  691. 1716.49 s [algebraic-graphs] ============ Relation.vertices ============
  692. 1716.49 s [algebraic-graphs] OK: vertices [] == empty
  693. 1716.49 s [algebraic-graphs] OK: vertices [x] == vertex x
  694. 1716.49 s [algebraic-graphs] OK: vertices == overlays . map vertex
  695. 1716.49 s [algebraic-graphs] OK: hasVertex x . vertices == elem x
  696. 1716.49 s [algebraic-graphs] OK: vertexCount . vertices == length . nub
  697. 1716.49 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  698. 1716.49 s [algebraic-graphs]
  699. 1716.49 s [algebraic-graphs] ============ Relation.edges ============
  700. 1716.49 s [algebraic-graphs] OK: edges [] == empty
  701. 1716.49 s [algebraic-graphs] OK: edges [(x,y)] == edge x y
  702. 1716.49 s [algebraic-graphs] OK: edges == overlays . map (uncurry edge)
  703. 1716.49 s [algebraic-graphs] OK: edgeCount . edges == length . nub
  704. 1716.49 s [algebraic-graphs]
  705. 1716.49 s [algebraic-graphs] ============ Relation.overlays ============
  706. 1716.49 s [algebraic-graphs] OK: overlays [] == empty
  707. 1716.49 s [algebraic-graphs] OK: overlays [x] == x
  708. 1716.49 s [algebraic-graphs] OK: overlays [x,y] == overlay x y
  709. 1716.49 s [algebraic-graphs] OK: overlays == foldr overlay empty
  710. 1716.49 s [algebraic-graphs] OK: isEmpty . overlays == all isEmpty
  711. 1716.49 s [algebraic-graphs]
  712. 1716.49 s [algebraic-graphs] ============ Relation.connects ============
  713. 1716.49 s [algebraic-graphs] OK: connects [] == empty
  714. 1716.49 s [algebraic-graphs] OK: connects [x] == x
  715. 1716.49 s [algebraic-graphs] OK: connects [x,y] == connect x y
  716. 1716.49 s [algebraic-graphs] OK: connects == foldr connect empty
  717. 1716.49 s [algebraic-graphs] OK: isEmpty . connects == all isEmpty
  718. 1716.49 s [algebraic-graphs]
  719. 1716.49 s [algebraic-graphs] ============ Relation.isSubgraphOf ============
  720. 1716.49 s [algebraic-graphs] OK: isSubgraphOf empty x == True
  721. 1716.49 s [algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
  722. 1716.49 s [algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
  723. 1716.49 s [algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
  724. 1716.49 s [algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
  725. 1716.49 s [algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
  726. 1716.49 s [algebraic-graphs]
  727. 1716.49 s [algebraic-graphs] ============ Relation.toGraph et al. ============
  728. 1716.49 s [algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
  729. 1716.49 s [algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
  730. 1716.49 s [algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
  731. 1716.49 s [algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
  732. 1716.49 s [algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
  733. 1716.49 s [algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
  734. 1716.49 s [algebraic-graphs] OK: vertexCount == Set.size . vertexSet
  735. 1716.49 s [algebraic-graphs] OK: edgeCount == Set.size . edgeSet
  736. 1716.49 s [algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
  737. 1716.49 s [algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
  738. 1716.49 s [algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
  739. 1716.50 s [algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
  740. 1716.50 s [algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
  741. 1716.50 s [algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
  742. 1716.50 s [algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
  743. 1716.50 s [algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
  744. 1716.50 s [algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
  745. 1716.55 s [fuzzy] Preprocessing library for fuzzy-0.1.1.0..
  746. 1716.55 s [fuzzy] Running Haddock on library for fuzzy-0.1.1.0..
  747. 1716.55 s [fuzzy] Warning: The documentation for the following packages are not installed. No
  748. 1716.56 s [fuzzy] links will be generated to these packages: vector-0.13.2.0
  749. 1716.68 s [cassava] [ 7 of 10] Compiling Data.Csv.Incremental ( src/Data/Csv/Incremental.hs, dist/build/Data/Csv/Incremental.p_o )
  750. 1716.80 s [fuzzy] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
  751. 1717.47 s [fuzzy] Warning: 'TextualMonoid' is out of scope.
  752. 1717.47 s [fuzzy] If you qualify the identifier, haddock can try to link it anyway.
  753. 1717.58 s [fuzzy] 100% ( 6 / 6) in 'Text.Fuzzy'
  754. 1719.86 s [cassava] [ 8 of 10] Compiling Data.Csv.Streaming ( src/Data/Csv/Streaming.hs, dist/build/Data/Csv/Streaming.p_o )
  755. 1719.98 s [shake] [21 of 71] Compiling Development.Shake.Internal.FileInfo ( src/Development/Shake/Internal/FileInfo.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/FileInfo.o )
  756. 1719.98 s [shake] [22 of 71] Compiling Development.Shake.Internal.Core.Monad ( src/Development/Shake/Internal/Core/Monad.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Monad.o )
  757. 1719.98 s [shake] [23 of 71] Compiling Development.Ninja.Parse ( src/Development/Ninja/Parse.hs, dist/build/shake/shake-tmp/Development/Ninja/Parse.o )
  758. 1719.98 s [shake] [24 of 71] Compiling General.Fence ( src/General/Fence.hs, dist/build/shake/shake-tmp/General/Fence.o )
  759. 1719.98 s [shake] [25 of 71] Compiling General.FileLock ( src/General/FileLock.hs, dist/build/shake/shake-tmp/General/FileLock.o )
  760. 1719.98 s [shake] [26 of 71] Compiling General.GetOpt ( src/General/GetOpt.hs, dist/build/shake/shake-tmp/General/GetOpt.o )
  761. 1719.98 s [shake] [27 of 71] Compiling General.Intern ( src/General/Intern.hs, dist/build/shake/shake-tmp/General/Intern.o )
  762. 1719.98 s [shake] [28 of 71] Compiling General.Ids ( src/General/Ids.hs, dist/build/shake/shake-tmp/General/Ids.o )
  763. 1719.98 s [shake] [29 of 71] Compiling Development.Shake.Internal.History.Serialise ( src/Development/Shake/Internal/History/Serialise.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Serialise.o )
  764. 1719.98 s [shake] [30 of 71] Compiling Development.Shake.Internal.History.Server ( src/Development/Shake/Internal/History/Server.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Server.o )
  765. 1719.98 s [shake] [31 of 71] Compiling Development.Shake.Internal.Core.Database ( src/Development/Shake/Internal/Core/Database.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Database.o )
  766. 1719.99 s [shake] [32 of 71] Compiling General.ListBuilder ( src/General/ListBuilder.hs, dist/build/shake/shake-tmp/General/ListBuilder.o )
  767. 1719.99 s [shake] [33 of 71] Compiling General.Makefile ( src/General/Makefile.hs, dist/build/shake/shake-tmp/General/Makefile.o )
  768. 1719.99 s [shake] [34 of 71] Compiling General.Process ( src/General/Process.hs, dist/build/shake/shake-tmp/General/Process.o )
  769. 1719.99 s [shake] [35 of 71] Compiling General.Thread ( src/General/Thread.hs, dist/build/shake/shake-tmp/General/Thread.o )
  770. 1719.99 s [shake] [36 of 71] Compiling General.Chunks ( src/General/Chunks.hs, dist/build/shake/shake-tmp/General/Chunks.o )
  771. 1719.99 s [shake] [37 of 71] Compiling General.Timing ( src/General/Timing.hs, dist/build/shake/shake-tmp/General/Timing.o )
  772. 1719.99 s [shake] [38 of 71] Compiling General.Pool ( src/General/Pool.hs, dist/build/shake/shake-tmp/General/Pool.o )
  773. 1719.99 s [shake] [39 of 71] Compiling Development.Shake.Internal.Core.Storage ( src/Development/Shake/Internal/Core/Storage.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Storage.o )
  774. 1720.90 s [cassava] [ 9 of 10] Compiling Data.Csv.Builder ( src/Data/Csv/Builder.hs, dist/build/Data/Csv/Builder.p_o )
  775. 1720.90 s [cassava] [10 of 10] Compiling Data.Csv ( src/Data/Csv.hs, dist/build/Data/Csv.p_o )
  776. 1721.72 s [shake] [40 of 71] Compiling General.TypeMap ( src/General/TypeMap.hs, dist/build/shake/shake-tmp/General/TypeMap.o )
  777. 1721.72 s [shake] [41 of 71] Compiling General.Wait ( src/General/Wait.hs, dist/build/shake/shake-tmp/General/Wait.o )
  778. 1721.72 s [shake] [42 of 71] Compiling Development.Shake.Internal.History.Shared ( src/Development/Shake/Internal/History/Shared.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Shared.o )
  779. 1721.72 s [shake] [43 of 71] Compiling Development.Shake.Internal.History.Cloud ( src/Development/Shake/Internal/History/Cloud.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/History/Cloud.o )
  780. 1721.72 s [shake] [44 of 71] Compiling Development.Shake.Internal.Core.Types ( src/Development/Shake/Internal/Core/Types.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Types.o )
  781. 1722.19 s [kan-extensions] Documentation created: dist/doc/html/kan-extensions/index.html,
  782. 1722.19 s [kan-extensions] dist/doc/html/kan-extensions/kan-extensions.txt
  783. 1722.37 s [kan-extensions] Phase: installPhase
  784. 1722.64 s [kan-extensions] Installing library in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  785. 1722.84 s [shake] [45 of 71] Compiling Development.Shake.Internal.Core.Rules ( src/Development/Shake/Internal/Core/Rules.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Rules.o )
  786. 1724.44 s [kan-extensions] Phase: fixupPhase
  787. 1724.49 s [kan-extensions] shrinking RPATHs of ELF executables and libraries in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6
  788. 1724.51 s [kan-extensions] shrinking /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/libHSkan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk-ghc9.6.3.so
  789. 1724.54 s [kan-extensions] checking for references to /build/ in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6...
  790. 1724.59 s [kan-extensions] patching script interpreter paths in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6
  791. 1724.64 s [kan-extensions] stripping (with command strip and flags -S -p) in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6/lib
  792. 1725.41 s [kan-extensions] shrinking RPATHs of ELF executables and libraries in /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc
  793. 1725.43 s [kan-extensions] checking for references to /build/ in /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc...
  794. 1725.47 s [kan-extensions] patching script interpreter paths in /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc
  795. 1725.84 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6
  796. 1726.75 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  797. 1726.86 s [post-build-hook] Uploading to the NixCI cache: /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6
  798. 1727.00 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  799. 1727.19 s [post-build-hook] copying 1 paths...
  800. 1727.19 s [post-build-hook] copying path '/nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6' to 'https://cache.nix-ci.com'...
  801. 1731.23 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  802. 1731.43 s [post-build-hook] copying 0 paths...
  803. 1731.53 s Progress: 100 of 177 built (6 building), 373 of 373 downloaded from cache
  804. 1731.70 s Building lens
  805. 1731.84 s Building pointed
  806. 1731.84 s [aeson] buildPhase completed in 8 minutes 13 seconds
  807. 1731.84 s [aeson] Phase: haddockPhase
  808. 1731.84 s [aeson] Preprocessing library for aeson-2.2.3.0..
  809. 1731.84 s [aeson] Running Haddock on library for aeson-2.2.3.0..
  810. 1731.84 s [aeson] Warning: The documentation for the following packages are not installed. No
  811. 1731.84 s [aeson] links will be generated to these packages: vector-0.13.2.0
  812. 1731.84 s [aeson] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
  813. 1731.84 s [aeson] Warning: Couldn't find .haddock for export Vector
  814. 1731.84 s [aeson] Warning: 'letE' is out of scope.
  815. 1731.84 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  816. 1731.84 s [algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
  817. 1731.84 s [algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
  818. 1731.85 s [algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
  819. 1731.85 s [algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
  820. 1731.85 s [algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
  821. 1731.85 s [algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
  822. 1731.85 s [algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
  823. 1731.85 s [algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
  824. 1731.85 s [algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
  825. 1731.85 s [algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
  826. 1731.85 s [algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
  827. 1731.85 s [algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
  828. 1731.85 s [algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
  829. 1731.85 s [algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
  830. 1731.85 s [algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
  831. 1731.85 s [algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
  832. 1731.85 s [algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
  833. 1731.85 s [algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
  834. 1731.85 s [algebraic-graphs]
  835. 1731.85 s [algebraic-graphs] ============ Relation.foldg ============
  836. 1731.85 s [algebraic-graphs] OK: foldg empty vertex overlay connect == id
  837. 1731.85 s [algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
  838. 1731.85 s [algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
  839. 1731.85 s [algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
  840. 1731.85 s [algebraic-graphs]
  841. 1731.85 s [algebraic-graphs] ============ Relation.isEmpty ============
  842. 1731.85 s [algebraic-graphs] OK: isEmpty empty == True
  843. 1731.85 s [algebraic-graphs] OK: isEmpty (overlay empty empty) == True
  844. 1731.85 s [algebraic-graphs] OK: isEmpty (vertex x) == False
  845. 1731.85 s [algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
  846. 1731.85 s [algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
  847. 1731.85 s [algebraic-graphs]
  848. 1731.85 s [algebraic-graphs] ============ Relation.hasVertex ============
  849. 1731.85 s [algebraic-graphs] OK: hasVertex x empty == False
  850. 1731.85 s [algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
  851. 1731.85 s [algebraic-graphs] OK: hasVertex x . removeVertex x == const False
  852. 1731.85 s [algebraic-graphs]
  853. 1731.85 s [algebraic-graphs] ============ Relation.hasEdge ============
  854. 1731.85 s [algebraic-graphs] OK: hasEdge x y empty == False
  855. 1731.85 s [algebraic-graphs] OK: hasEdge x y (vertex z) == False
  856. 1731.85 s [algebraic-graphs] OK: hasEdge x y (edge x y) == True
  857. 1731.85 s [algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
  858. 1731.85 s [algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
  859. 1731.85 s [algebraic-graphs]
  860. 1731.85 s [algebraic-graphs] ============ Relation.vertexCount ============
  861. 1731.85 s [algebraic-graphs] OK: vertexCount empty == 0
  862. 1731.85 s [algebraic-graphs] OK: vertexCount (vertex x) == 1
  863. 1731.85 s [algebraic-graphs] OK: vertexCount == length . vertexList
  864. 1731.85 s [algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
  865. 1731.85 s [algebraic-graphs]
  866. 1731.85 s [algebraic-graphs] ============ Relation.edgeCount ============
  867. 1731.85 s [algebraic-graphs] OK: edgeCount empty == 0
  868. 1731.85 s [algebraic-graphs] OK: edgeCount (vertex x) == 0
  869. 1731.85 s [algebraic-graphs] OK: edgeCount (edge x y) == 1
  870. 1731.85 s [algebraic-graphs] OK: edgeCount == length . edgeList
  871. 1731.85 s [algebraic-graphs]
  872. 1731.85 s [algebraic-graphs] ============ Relation.vertexList ============
  873. 1731.85 s [algebraic-graphs] OK: vertexList empty == []
  874. 1731.85 s [algebraic-graphs] OK: vertexList (vertex x) == [x]
  875. 1731.85 s [algebraic-graphs] OK: vertexList . vertices == nub . sort
  876. 1731.85 s [algebraic-graphs]
  877. 1731.85 s [algebraic-graphs] ============ Relation.vertexSet ============
  878. 1731.85 s [algebraic-graphs] OK: vertexSet empty == Set.empty
  879. 1731.85 s [algebraic-graphs] OK: vertexSet . vertex == Set.singleton
  880. 1731.85 s [algebraic-graphs] OK: vertexSet . vertices == Set.fromList
  881. 1731.85 s [algebraic-graphs]
  882. 1731.85 s [algebraic-graphs] ============ Relation.vertexIntSet ============
  883. 1731.85 s [algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
  884. 1731.85 s [algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
  885. 1731.85 s [algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
  886. 1731.85 s [algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
  887. 1731.85 s [algebraic-graphs]
  888. 1731.85 s [algebraic-graphs] ============ Relation.edgeList ============
  889. 1731.85 s [algebraic-graphs] OK: edgeList empty == []
  890. 1731.85 s [algebraic-graphs] OK: edgeList (vertex x) == []
  891. 1731.85 s [algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
  892. 1731.85 s [algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
  893. 1731.85 s [algebraic-graphs] OK: edgeList . edges == nub . sort
  894. 1731.85 s [algebraic-graphs]
  895. 1731.85 s [algebraic-graphs] ============ Relation.edgeSet ============
  896. 1731.85 s [algebraic-graphs] OK: edgeSet empty == Set.empty
  897. 1731.85 s [algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
  898. 1731.85 s [algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
  899. 1731.85 s [algebraic-graphs] OK: edgeSet . edges == Set.fromList
  900. 1731.85 s [algebraic-graphs]
  901. 1731.85 s [algebraic-graphs] ============ Relation.adjacencyList ============
  902. 1731.85 s [algebraic-graphs] OK: adjacencyList empty == []
  903. 1731.85 s [cassava] Preprocessing test suite 'unit-tests' for cassava-0.5.3.2..
  904. 1731.85 s [cassava] Building test suite 'unit-tests' for cassava-0.5.3.2..
  905. 1731.85 s [cassava] [1 of 1] Compiling Main ( tests/UnitTests.hs, dist/build/unit-tests/unit-tests-tmp/Main.o )
  906. 1731.85 s [fuzzy] Documentation created: dist/doc/html/fuzzy/index.html,
  907. 1731.85 s [fuzzy] dist/doc/html/fuzzy/fuzzy.txt
  908. 1731.85 s [fuzzy] Preprocessing test suite 'tests' for fuzzy-0.1.1.0..
  909. 1731.85 s [fuzzy] Phase: installPhase
  910. 1731.85 s [fuzzy] Installing library in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
  911. 1731.85 s [fuzzy] Phase: fixupPhase
  912. 1731.85 s [fuzzy] shrinking RPATHs of ELF executables and libraries in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
  913. 1731.85 s [fuzzy] shrinking /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/libHSfuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm-ghc9.6.3.so
  914. 1731.85 s [fuzzy] checking for references to /build/ in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0...
  915. 1731.85 s [fuzzy] patching script interpreter paths in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
  916. 1731.85 s [fuzzy] stripping (with command strip and flags -S -p) in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/lib
  917. 1731.85 s [fuzzy] shrinking RPATHs of ELF executables and libraries in /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc
  918. 1731.85 s [fuzzy] checking for references to /build/ in /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc...
  919. 1731.85 s [fuzzy] patching script interpreter paths in /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc
  920. 1731.86 s [shake] [46 of 71] Compiling Development.Shake.Internal.Core.Pool ( src/Development/Shake/Internal/Core/Pool.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Pool.o )
  921. 1731.86 s [shake] [47 of 71] Compiling Development.Shake.Internal.Core.Action ( src/Development/Shake/Internal/Core/Action.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Action.o )
  922. 1731.86 s [shake] [48 of 71] Compiling Development.Shake.Internal.Resource ( src/Development/Shake/Internal/Resource.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Resource.o )
  923. 1731.86 s [shake] [49 of 71] Compiling Development.Shake.Internal.Core.Build ( src/Development/Shake/Internal/Core/Build.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Build.o )
  924. 1731.86 s [shake] [50 of 71] Compiling Development.Shake.Internal.Rules.Rerun ( src/Development/Shake/Internal/Rules/Rerun.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/Rerun.o )
  925. 1731.86 s [shake] [51 of 71] Compiling Development.Shake.Internal.Rules.Oracle ( src/Development/Shake/Internal/Rules/Oracle.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/Oracle.o )
  926. 1731.86 s [shake] [52 of 71] Compiling Development.Shake.Internal.Rules.File ( src/Development/Shake/Internal/Rules/File.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/File.o )
  927. 1731.86 s [algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
  928. 1731.86 s [algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
  929. 1731.86 s [algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
  930. 1731.86 s [algebraic-graphs]
  931. 1731.86 s [algebraic-graphs] ============ Relation.preSet ============
  932. 1731.86 s [algebraic-graphs] OK: preSet x empty == Set.empty
  933. 1731.86 s [algebraic-graphs] OK: preSet x (vertex x) == Set.empty
  934. 1731.86 s [algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
  935. 1731.86 s [algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
  936. 1731.86 s [algebraic-graphs]
  937. 1731.86 s [algebraic-graphs] ============ Relation.preIntSet ============
  938. 1731.86 s [algebraic-graphs] OK: preIntSet x empty == IntSet.empty
  939. 1731.86 s [algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
  940. 1731.86 s [algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
  941. 1731.86 s [algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
  942. 1731.86 s [algebraic-graphs]
  943. 1731.86 s [algebraic-graphs] ============ Relation.postSet ============
  944. 1731.86 s [algebraic-graphs] OK: postSet x empty == Set.empty
  945. 1731.86 s [algebraic-graphs] OK: postSet x (vertex x) == Set.empty
  946. 1731.86 s [algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
  947. 1731.86 s [algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
  948. 1731.86 s [algebraic-graphs]
  949. 1731.86 s [algebraic-graphs] ============ Relation.postIntSet ============
  950. 1731.86 s [algebraic-graphs] OK: postIntSet x empty == IntSet.empty
  951. 1731.86 s [algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
  952. 1731.86 s [algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
  953. 1731.86 s [algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
  954. 1731.86 s [algebraic-graphs]
  955. 1731.86 s [algebraic-graphs] ============ Relation.path ============
  956. 1731.86 s [algebraic-graphs] OK: path [] == empty
  957. 1731.86 s [algebraic-graphs] OK: path [x] == vertex x
  958. 1731.86 s [algebraic-graphs] OK: path [x,y] == edge x y
  959. 1731.86 s [algebraic-graphs]
  960. 1731.86 s [algebraic-graphs] ============ Relation.circuit ============
  961. 1731.86 s [algebraic-graphs] OK: circuit [] == empty
  962. 1731.86 s [algebraic-graphs] OK: circuit [x] == edge x x
  963. 1731.86 s [algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
  964. 1731.86 s [algebraic-graphs]
  965. 1731.86 s [algebraic-graphs] ============ Relation.clique ============
  966. 1731.86 s [algebraic-graphs] OK: clique [] == empty
  967. 1731.86 s [algebraic-graphs] OK: clique [x] == vertex x
  968. 1731.86 s [algebraic-graphs] OK: clique [x,y] == edge x y
  969. 1731.86 s [algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
  970. 1731.86 s [algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
  971. 1731.86 s [algebraic-graphs]
  972. 1731.86 s [algebraic-graphs] ============ Relation.biclique ============
  973. 1731.86 s [algebraic-graphs] OK: biclique [] [] == empty
  974. 1731.86 s [algebraic-graphs] OK: biclique [x] [] == vertex x
  975. 1731.86 s [algebraic-graphs] OK: biclique [] [y] == vertex y
  976. 1731.86 s [algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
  977. 1731.86 s [algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
  978. 1731.86 s [algebraic-graphs]
  979. 1731.86 s [algebraic-graphs] ============ Relation.star ============
  980. 1731.86 s [algebraic-graphs] OK: star x [] == vertex x
  981. 1731.86 s [algebraic-graphs] OK: star x [y] == edge x y
  982. 1731.86 s [algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
  983. 1731.86 s [algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
  984. 1731.86 s [algebraic-graphs]
  985. 1731.86 s [algebraic-graphs] ============ Relation.stars ============
  986. 1731.86 s [algebraic-graphs] OK: stars [] == empty
  987. 1731.86 s [algebraic-graphs] OK: stars [(x, [])] == vertex x
  988. 1731.86 s [algebraic-graphs] OK: stars [(x, [y])] == edge x y
  989. 1731.86 s [algebraic-graphs] OK: stars [(x, ys)] == star x ys
  990. 1731.86 s [algebraic-graphs] OK: stars == overlays . map (uncurry star)
  991. 1731.86 s [algebraic-graphs] OK: stars . adjacencyList == id
  992. 1731.86 s [algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
  993. 1731.86 s [algebraic-graphs]
  994. 1731.86 s [algebraic-graphs] ============ Relation.tree ============
  995. 1731.86 s [algebraic-graphs] OK: tree (Node x []) == vertex x
  996. 1731.86 s [algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
  997. 1731.86 s [algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
  998. 1731.86 s [algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
  999. 1731.86 s [algebraic-graphs]
  1000. 1731.86 s [algebraic-graphs] ============ Relation.forest ============
  1001. 1731.86 s [algebraic-graphs] OK: forest [] == empty
  1002. 1731.86 s [algebraic-graphs] OK: forest [x] == tree x
  1003. 1731.86 s [algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
  1004. 1731.86 s [algebraic-graphs] OK: forest == overlays . map tree
  1005. 1731.86 s [algebraic-graphs]
  1006. 1731.86 s [algebraic-graphs] ============ Relation.removeVertex ============
  1007. 1731.86 s [algebraic-graphs] OK: removeVertex x (vertex x) == empty
  1008. 1731.86 s [algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
  1009. 1731.86 s [algebraic-graphs] OK: removeVertex x (edge x x) == empty
  1010. 1731.86 s [algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
  1011. 1731.86 s [algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
  1012. 1731.86 s [algebraic-graphs]
  1013. 1731.86 s [algebraic-graphs] ============ Relation.removeEdge ============
  1014. 1731.86 s [algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
  1015. 1731.86 s [algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
  1016. 1731.86 s [algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
  1017. 1731.86 s [algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
  1018. 1731.86 s [algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
  1019. 1731.86 s [algebraic-graphs]
  1020. 1731.86 s [algebraic-graphs] ============ Relation.replaceVertex ============
  1021. 1731.86 s [algebraic-graphs] OK: replaceVertex x x == id
  1022. 1731.86 s [algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
  1023. 1731.86 s [algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
  1024. 1731.86 s [algebraic-graphs]
  1025. 1731.86 s [algebraic-graphs] ============ Relation.mergeVertices ============
  1026. 1731.86 s [algebraic-graphs] OK: mergeVertices (const False) x == id
  1027. 1732.11 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
  1028. 1733.38 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  1029. 1733.51 s [post-build-hook] Uploading to the NixCI cache: /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
  1030. 1734.07 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1031. 1734.49 s [post-build-hook] copying 1 paths...
  1032. 1734.49 s [post-build-hook] copying path '/nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0' to 'https://cache.nix-ci.com'...
  1033. 1735.42 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1034. 1736.29 s [post-build-hook] copying 0 paths...
  1035. 1736.54 s Progress: 101 of 177 built (7 building), 373 of 373 downloaded from cache
  1036. 1736.54 s [aeson] Warning: 'Coercible' is out of scope.
  1037. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1038. 1736.58 s [aeson] Warning: 'coercing' is out of scope.
  1039. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1040. 1736.58 s [aeson] 44% ( 4 / 9) in 'Data.Aeson.Key'
  1041. 1736.58 s [aeson] Missing documentation for:
  1042. 1736.58 s [aeson] Key (src/Data/Aeson/Key.hs:44)
  1043. 1736.58 s [aeson] fromString (src/Data/Aeson/Key.hs:47)
  1044. 1736.58 s [aeson] toString (src/Data/Aeson/Key.hs:50)
  1045. 1736.58 s [aeson] toText (src/Data/Aeson/Key.hs:56)
  1046. 1736.58 s [aeson] fromText (src/Data/Aeson/Key.hs:53)
  1047. 1736.58 s [aeson] 100% ( 7 / 7) in 'Data.Aeson.Decoding.Tokens'
  1048. 1736.58 s [aeson] Warning: 'ByteString' is out of scope.
  1049. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1050. 1736.58 s [aeson] 100% ( 2 / 2) in 'Data.Aeson.Decoding.Text'
  1051. 1736.58 s [aeson] 100% ( 2 / 2) in 'Data.Aeson.Decoding.ByteString.Lazy'
  1052. 1736.58 s [aeson] 100% ( 2 / 2) in 'Data.Aeson.Decoding.ByteString'
  1053. 1736.58 s [aeson] Warning: 'v' is out of scope.
  1054. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1055. 1736.58 s [aeson] Warning: 'const' is out of scope.
  1056. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1057. 1736.58 s [aeson] 88% ( 61 / 69) in 'Data.Aeson.KeyMap'
  1058. 1736.58 s [aeson] Missing documentation for:
  1059. 1736.58 s [aeson] coercionToHashMap (src/Data/Aeson/KeyMap.hs:316)
  1060. 1736.58 s [aeson] coercionToMap (src/Data/Aeson/KeyMap.hs:320)
  1061. 1736.58 s [aeson] foldr (src/Data/Aeson/KeyMap.hs:205)
  1062. 1736.58 s [aeson] foldr' (src/Data/Aeson/KeyMap.hs:208)
  1063. 1736.58 s [aeson] foldl (src/Data/Aeson/KeyMap.hs:211)
  1064. 1736.58 s [aeson] foldl' (src/Data/Aeson/KeyMap.hs:214)
  1065. 1736.58 s [aeson] foldMapWithKey (src/Data/Aeson/KeyMap.hs:202)
  1066. 1736.58 s [aeson] Key (src/Data/Aeson/Key.hs:44)
  1067. 1736.58 s [aeson] Warning: 'ToJSON' is out of scope.
  1068. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1069. 1736.58 s [aeson] Warning: 'FromJSON' is out of scope.
  1070. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1071. 1736.58 s [aeson] Warning: 'ToJSON1' is out of scope.
  1072. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1073. 1736.58 s [aeson] Warning: 'FromJSON1' is out of scope.
  1074. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1075. 1736.58 s [aeson] Warning: 'hashable' is out of scope.
  1076. 1736.58 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1077. 1736.58 s [aeson] Warning: 'Array' is ambiguous. It is defined
  1078. 1736.58 s [aeson] * at src/Data/Aeson/Types/Internal.hs:367:14
  1079. 1736.58 s [aeson] * at src/Data/Aeson/Types/Internal.hs:363:1
  1080. 1736.58 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1081. 1736.58 s [aeson] by specifying the type/value namespace explicitly.
  1082. 1736.58 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:363:1
  1083. 1736.58 s [aeson] Warning: 'String' is ambiguous. It is defined
  1084. 1736.58 s [aeson] * at src/Data/Aeson/Types/Internal.hs:368:14
  1085. 1736.58 s [aeson] * in ‘GHC.Base’
  1086. 1736.58 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1087. 1736.58 s [aeson] by specifying the type/value namespace explicitly.
  1088. 1736.58 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
  1089. 1736.58 s [aeson] Warning: 'Object' is ambiguous. It is defined
  1090. 1736.58 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
  1091. 1736.58 s [aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
  1092. 1736.58 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1093. 1736.59 s [aeson] by specifying the type/value namespace explicitly.
  1094. 1736.59 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
  1095. 1736.59 s [aeson] Warning: '(.:)' is out of scope.
  1096. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1097. 1736.59 s [aeson] Warning: 'allowOmittedFieds' is out of scope.
  1098. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1099. 1736.59 s [aeson] Warning: 'omittedField' is out of scope.
  1100. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1101. 1736.59 s [aeson] Warning: 'ToJSONKey' is out of scope.
  1102. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1103. 1736.59 s [aeson] Warning: 'toJSONKey' is out of scope.
  1104. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1105. 1736.59 s [aeson] Warning: 'genericToJSONKey' is out of scope.
  1106. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1107. 1736.59 s [aeson] Warning: 'FromJSONKey' is out of scope.
  1108. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1109. 1736.59 s [aeson] Warning: 'fromJSONKey' is out of scope.
  1110. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1111. 1736.59 s [aeson] Warning: 'genericFromJSONKey' is out of scope.
  1112. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1113. 1736.59 s [aeson] Warning: 'API' is out of scope.
  1114. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1115. 1736.59 s [lens] Phase: setupCompilerEnvironmentPhase
  1116. 1736.59 s [lens] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
  1117. 1736.59 s [lens] Phase: unpackPhase
  1118. 1736.59 s [lens] unpacking source archive /nix/store/94srckviqabk285cpndqlgjy1zidzbf2-lens-5.3.4.tar.gz
  1119. 1736.59 s [lens] source root is lens-5.3.4
  1120. 1736.59 s [lens] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "lens-5.3.4/.vim.custom"
  1121. 1736.59 s [lens] Phase: patchPhase
  1122. 1736.59 s [lens] Phase: compileBuildDriverPhase
  1123. 1736.59 s [lens] setupCompileFlags: -package-db=/build/tmp.TdJRWpjbRb/setup-package.conf.d -threaded
  1124. 1736.59 s [lens] [1 of 2] Compiling Main ( Setup.lhs, /build/tmp.TdJRWpjbRb/Main.o )
  1125. 1736.59 s [lens] [2 of 2] Linking Setup
  1126. 1736.59 s [pointed] Phase: setupCompilerEnvironmentPhase
  1127. 1736.59 s [pointed] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
  1128. 1736.59 s [pointed] Phase: unpackPhase
  1129. 1736.59 s [pointed] unpacking source archive /nix/store/3bqs3pyybjh308mn3bqh91670m0m7v5y-pointed-5.0.5.tar.gz
  1130. 1736.59 s [pointed] source root is pointed-5.0.5
  1131. 1736.59 s [pointed] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pointed-5.0.5/src/Data/Pointed.hs"
  1132. 1736.59 s [pointed] Phase: patchPhase
  1133. 1736.59 s [pointed] Replace Cabal file with edited version from mirror://hackage/pointed-5.0.5/revision/1.cabal.
  1134. 1736.59 s [pointed] Phase: compileBuildDriverPhase
  1135. 1736.59 s [pointed] setupCompileFlags: -package-db=/build/tmp.Bt1dZAJyMn/setup-package.conf.d -threaded
  1136. 1736.59 s [pointed] [1 of 2] Compiling Main ( Setup.lhs, /build/tmp.Bt1dZAJyMn/Main.o )
  1137. 1736.59 s [pointed] [2 of 2] Linking Setup
  1138. 1736.59 s [shake] [53 of 71] Compiling Development.Shake.Internal.Rules.OrderOnly ( src/Development/Shake/Internal/Rules/OrderOnly.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/OrderOnly.o )
  1139. 1736.59 s [shake] [54 of 71] Compiling Development.Shake.Internal.Rules.Files ( src/Development/Shake/Internal/Rules/Files.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/Files.o )
  1140. 1736.59 s [aeson] Warning: 'throwDecode' is out of scope.
  1141. 1736.59 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1142. 1737.64 s [aeson] Warning: 'Value' is ambiguous. It is defined
  1143. 1737.64 s [aeson] * at src/Data/Aeson/Encoding/Internal.hs:130:15
  1144. 1737.64 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:1
  1145. 1737.64 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1146. 1737.64 s [aeson] by specifying the type/value namespace explicitly.
  1147. 1737.64 s [aeson] Defaulting to the one defined at src/Data/Aeson/Encoding/Internal.hs:129:1
  1148. 1737.64 s [aeson] Warning: '.=' is out of scope.
  1149. 1737.64 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1150. 1737.65 s [aeson] Warning: 'unsafePair' is out of scope.
  1151. 1737.65 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1152. 1737.66 s [aeson] 25% ( 21 / 82) in 'Data.Aeson.Encoding.Internal'
  1153. 1737.67 s [aeson] Missing documentation for:
  1154. 1737.67 s [aeson] Module header
  1155. 1737.67 s [aeson] encodingToLazyByteString (src/Data/Aeson/Encoding/Internal.hs:97)
  1156. 1737.67 s [aeson] retagEncoding (src/Data/Aeson/Encoding/Internal.hs:101)
  1157. 1737.67 s [aeson] pair (src/Data/Aeson/Encoding/Internal.hs:133)
  1158. 1737.67 s [aeson] pairStr (src/Data/Aeson/Encoding/Internal.hs:137)
  1159. 1737.67 s [aeson] pair' (src/Data/Aeson/Encoding/Internal.hs:141)
  1160. 1737.67 s [aeson] nullEncoding (src/Data/Aeson/Encoding/Internal.hs:167)
  1161. 1737.67 s [aeson] emptyArray_ (src/Data/Aeson/Encoding/Internal.hs:170)
  1162. 1737.67 s [aeson] emptyObject_ (src/Data/Aeson/Encoding/Internal.hs:173)
  1163. 1737.67 s [aeson] wrapObject (src/Data/Aeson/Encoding/Internal.hs:179)
  1164. 1737.67 s [aeson] wrapArray (src/Data/Aeson/Encoding/Internal.hs:176)
  1165. 1737.67 s [aeson] null_ (src/Data/Aeson/Encoding/Internal.hs:182)
  1166. 1737.67 s [aeson] bool (src/Data/Aeson/Encoding/Internal.hs:185)
  1167. 1737.67 s [aeson] key (src/Data/Aeson/Encoding/Internal.hs:246)
  1168. 1737.67 s [aeson] text (src/Data/Aeson/Encoding/Internal.hs:249)
  1169. 1737.67 s [aeson] lazyText (src/Data/Aeson/Encoding/Internal.hs:252)
  1170. 1737.67 s [aeson] string (src/Data/Aeson/Encoding/Internal.hs:265)
  1171. 1737.67 s [aeson] list (src/Data/Aeson/Encoding/Internal.hs:195)
  1172. 1737.67 s [aeson] empty (src/Data/Aeson/Encoding/Internal.hs:224)
  1173. 1737.67 s [aeson] >< (src/Data/Aeson/Encoding/Internal.hs:231)
  1174. 1737.67 s [aeson] econcat (src/Data/Aeson/Encoding/Internal.hs:227)
  1175. 1737.67 s [aeson] int8 (src/Data/Aeson/Encoding/Internal.hs:284)
  1176. 1737.67 s [aeson] int16 (src/Data/Aeson/Encoding/Internal.hs:287)
  1177. 1737.67 s [aeson] int32 (src/Data/Aeson/Encoding/Internal.hs:290)
  1178. 1737.67 s [aeson] int64 (src/Data/Aeson/Encoding/Internal.hs:293)
  1179. 1737.67 s [aeson] int (src/Data/Aeson/Encoding/Internal.hs:296)
  1180. 1737.67 s [aeson] word8 (src/Data/Aeson/Encoding/Internal.hs:299)
  1181. 1737.67 s [aeson] word16 (src/Data/Aeson/Encoding/Internal.hs:302)
  1182. 1737.67 s [aeson] word32 (src/Data/Aeson/Encoding/Internal.hs:305)
  1183. 1737.67 s [aeson] word64 (src/Data/Aeson/Encoding/Internal.hs:308)
  1184. 1737.67 s [aeson] word (src/Data/Aeson/Encoding/Internal.hs:311)
  1185. 1737.67 s [aeson] integer (src/Data/Aeson/Encoding/Internal.hs:314)
  1186. 1737.67 s [aeson] float (src/Data/Aeson/Encoding/Internal.hs:317)
  1187. 1737.67 s [aeson] scientific (src/Data/Aeson/Encoding/Internal.hs:337)
  1188. 1737.67 s [aeson] int8Text (src/Data/Aeson/Encoding/Internal.hs:351)
  1189. 1737.67 s [aeson] int16Text (src/Data/Aeson/Encoding/Internal.hs:354)
  1190. 1737.67 s [aeson] int32Text (src/Data/Aeson/Encoding/Internal.hs:357)
  1191. 1737.67 s [aeson] int64Text (src/Data/Aeson/Encoding/Internal.hs:360)
  1192. 1737.67 s [aeson] intText (src/Data/Aeson/Encoding/Internal.hs:363)
  1193. 1737.67 s [aeson] word8Text (src/Data/Aeson/Encoding/Internal.hs:366)
  1194. 1737.67 s [aeson] word16Text (src/Data/Aeson/Encoding/Internal.hs:369)
  1195. 1737.67 s [aeson] word32Text (src/Data/Aeson/Encoding/Internal.hs:372)
  1196. 1737.67 s [aeson] word64Text (src/Data/Aeson/Encoding/Internal.hs:375)
  1197. 1737.67 s [aeson] wordText (src/Data/Aeson/Encoding/Internal.hs:378)
  1198. 1737.67 s [aeson] integerText (src/Data/Aeson/Encoding/Internal.hs:381)
  1199. 1737.67 s [aeson] floatText (src/Data/Aeson/Encoding/Internal.hs:384)
  1200. 1737.67 s [aeson] scientificText (src/Data/Aeson/Encoding/Internal.hs:408)
  1201. 1737.67 s [aeson] day (src/Data/Aeson/Encoding/Internal.hs:415)
  1202. 1737.67 s [aeson] month (src/Data/Aeson/Encoding/Internal.hs:418)
  1203. 1737.67 s [aeson] quarter (src/Data/Aeson/Encoding/Internal.hs:421)
  1204. 1737.67 s [aeson] localTime (src/Data/Aeson/Encoding/Internal.hs:424)
  1205. 1737.67 s [aeson] utcTime (src/Data/Aeson/Encoding/Internal.hs:427)
  1206. 1737.67 s [aeson] timeOfDay (src/Data/Aeson/Encoding/Internal.hs:430)
  1207. 1737.68 s [aeson] zonedTime (src/Data/Aeson/Encoding/Internal.hs:433)
  1208. 1737.68 s [aeson] value (src/Data/Aeson/Encoding/Internal.hs:440)
  1209. 1737.68 s [aeson] comma (src/Data/Aeson/Encoding/Internal.hs:272)
  1210. 1737.68 s [aeson] colon (src/Data/Aeson/Encoding/Internal.hs:272)
  1211. 1737.68 s [aeson] openBracket (src/Data/Aeson/Encoding/Internal.hs:272)
  1212. 1737.68 s [aeson] closeBracket (src/Data/Aeson/Encoding/Internal.hs:272)
  1213. 1737.68 s [aeson] openCurly (src/Data/Aeson/Encoding/Internal.hs:272)
  1214. 1737.68 s [aeson] closeCurly (src/Data/Aeson/Encoding/Internal.hs:272)
  1215. 1738.23 s [aeson] Warning: 'Encoding' is ambiguous. It is defined
  1216. 1738.23 s [aeson] * at src/Data/Aeson/Encoding/Internal.hs:82:25
  1217. 1738.23 s [aeson] * at src/Data/Aeson/Encoding/Internal.hs:88:1
  1218. 1738.23 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1219. 1738.23 s [aeson] by specifying the type/value namespace explicitly.
  1220. 1738.23 s [aeson] Defaulting to the one defined at src/Data/Aeson/Encoding/Internal.hs:82:1
  1221. 1738.23 s [aeson] Warning: 'Text' is out of scope.
  1222. 1738.23 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1223. 1738.24 s [aeson] 27% ( 18 / 65) in 'Data.Aeson.Encoding'
  1224. 1738.24 s [aeson] Missing documentation for:
  1225. 1738.24 s [aeson] encodingToLazyByteString (src/Data/Aeson/Encoding/Internal.hs:97)
  1226. 1738.24 s [aeson] pair (src/Data/Aeson/Encoding/Internal.hs:133)
  1227. 1738.24 s [aeson] pairStr (src/Data/Aeson/Encoding/Internal.hs:137)
  1228. 1738.25 s [aeson] pair' (src/Data/Aeson/Encoding/Internal.hs:141)
  1229. 1738.25 s [aeson] nullEncoding (src/Data/Aeson/Encoding/Internal.hs:167)
  1230. 1738.25 s [aeson] emptyArray_ (src/Data/Aeson/Encoding/Internal.hs:170)
  1231. 1738.25 s [aeson] emptyObject_ (src/Data/Aeson/Encoding/Internal.hs:173)
  1232. 1738.25 s [aeson] text (src/Data/Aeson/Encoding/Internal.hs:249)
  1233. 1738.25 s [aeson] lazyText (src/Data/Aeson/Encoding/Internal.hs:252)
  1234. 1738.25 s [aeson] string (src/Data/Aeson/Encoding/Internal.hs:265)
  1235. 1738.25 s [aeson] list (src/Data/Aeson/Encoding/Internal.hs:195)
  1236. 1738.25 s [aeson] null_ (src/Data/Aeson/Encoding/Internal.hs:182)
  1237. 1738.25 s [aeson] bool (src/Data/Aeson/Encoding/Internal.hs:185)
  1238. 1738.25 s [aeson] int8 (src/Data/Aeson/Encoding/Internal.hs:284)
  1239. 1738.25 s [aeson] int16 (src/Data/Aeson/Encoding/Internal.hs:287)
  1240. 1738.25 s [aeson] int32 (src/Data/Aeson/Encoding/Internal.hs:290)
  1241. 1738.25 s [aeson] int64 (src/Data/Aeson/Encoding/Internal.hs:293)
  1242. 1738.25 s [aeson] int (src/Data/Aeson/Encoding/Internal.hs:296)
  1243. 1738.25 s [aeson] word8 (src/Data/Aeson/Encoding/Internal.hs:299)
  1244. 1738.25 s [aeson] word16 (src/Data/Aeson/Encoding/Internal.hs:302)
  1245. 1738.25 s [aeson] word32 (src/Data/Aeson/Encoding/Internal.hs:305)
  1246. 1738.25 s [aeson] word64 (src/Data/Aeson/Encoding/Internal.hs:308)
  1247. 1738.25 s [aeson] word (src/Data/Aeson/Encoding/Internal.hs:311)
  1248. 1738.25 s [aeson] integer (src/Data/Aeson/Encoding/Internal.hs:314)
  1249. 1738.25 s [aeson] float (src/Data/Aeson/Encoding/Internal.hs:317)
  1250. 1738.25 s [aeson] scientific (src/Data/Aeson/Encoding/Internal.hs:337)
  1251. 1738.25 s [aeson] int8Text (src/Data/Aeson/Encoding/Internal.hs:351)
  1252. 1738.25 s [aeson] int16Text (src/Data/Aeson/Encoding/Internal.hs:354)
  1253. 1738.25 s [aeson] int32Text (src/Data/Aeson/Encoding/Internal.hs:357)
  1254. 1738.25 s [aeson] int64Text (src/Data/Aeson/Encoding/Internal.hs:360)
  1255. 1738.25 s [aeson] intText (src/Data/Aeson/Encoding/Internal.hs:363)
  1256. 1738.25 s [aeson] word8Text (src/Data/Aeson/Encoding/Internal.hs:366)
  1257. 1738.25 s [aeson] word16Text (src/Data/Aeson/Encoding/Internal.hs:369)
  1258. 1738.25 s [aeson] word32Text (src/Data/Aeson/Encoding/Internal.hs:372)
  1259. 1738.25 s [aeson] word64Text (src/Data/Aeson/Encoding/Internal.hs:375)
  1260. 1738.25 s [aeson] wordText (src/Data/Aeson/Encoding/Internal.hs:378)
  1261. 1738.25 s [aeson] integerText (src/Data/Aeson/Encoding/Internal.hs:381)
  1262. 1738.25 s [aeson] floatText (src/Data/Aeson/Encoding/Internal.hs:384)
  1263. 1738.25 s [aeson] scientificText (src/Data/Aeson/Encoding/Internal.hs:408)
  1264. 1738.25 s [aeson] day (src/Data/Aeson/Encoding/Internal.hs:415)
  1265. 1738.25 s [aeson] month (src/Data/Aeson/Encoding/Internal.hs:418)
  1266. 1738.25 s [aeson] quarter (src/Data/Aeson/Encoding/Internal.hs:421)
  1267. 1738.25 s [aeson] localTime (src/Data/Aeson/Encoding/Internal.hs:424)
  1268. 1738.25 s [aeson] utcTime (src/Data/Aeson/Encoding/Internal.hs:427)
  1269. 1738.25 s [aeson] timeOfDay (src/Data/Aeson/Encoding/Internal.hs:430)
  1270. 1738.25 s [aeson] zonedTime (src/Data/Aeson/Encoding/Internal.hs:433)
  1271. 1738.25 s [aeson] value (src/Data/Aeson/Encoding/Internal.hs:440)
  1272. 1738.29 s [pointed] Phase: updateAutotoolsGnuConfigScriptsPhase
  1273. 1738.31 s [pointed] Phase: configurePhase
  1274. 1738.33 s [pointed] configureFlags: --verbose --prefix=/nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc/share/doc/pointed-5.0.5 --with-gcc=gcc --package-db=/build/tmp.Bt1dZAJyMn/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/vj3rmg6937p9icir6bazbdcb4xdnrg9j-ncurses-6.5/lib --extra-lib-dirs=/nix/store/0aaj6jbxclpwvrphggqz4vf5hg8360fr-libffi-3.4.8/lib --extra-lib-dirs=/nix/store/vaix9m2syrilm7hv3690plsk35y0arwm-elfutils-0.192/lib --extra-lib-dirs=/nix/store/m9fycbkaairz8kampnsl7sx1aanvl0db-gmp-with-cxx-6.3.0/lib
  1275. 1738.37 s [pointed] Using Parsec parser
  1276. 1738.37 s [pointed] Configuring pointed-5.0.5...
  1277. 1738.58 s [shake] [55 of 71] Compiling Development.Shake.Internal.Derived ( src/Development/Shake/Internal/Derived.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Derived.o )
  1278. 1738.58 s [shake] [56 of 71] Compiling Development.Shake.Command ( src/Development/Shake/Command.hs, dist/build/shake/shake-tmp/Development/Shake/Command.o )
  1279. 1738.80 s [lens] Phase: updateAutotoolsGnuConfigScriptsPhase
  1280. 1738.88 s [lens] Phase: configurePhase
  1281. 1738.90 s [lens] configureFlags: --verbose --prefix=/nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/ji17mji4rv431fdl3f1hs007gpfa97gg-lens-5.3.4-doc/share/doc/lens-5.3.4 --with-gcc=gcc --package-db=/build/tmp.TdJRWpjbRb/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/vj3rmg6937p9icir6bazbdcb4xdnrg9j-ncurses-6.5/lib --extra-lib-dirs=/nix/store/0aaj6jbxclpwvrphggqz4vf5hg8360fr-libffi-3.4.8/lib --extra-lib-dirs=/nix/store/vaix9m2syrilm7hv3690plsk35y0arwm-elfutils-0.192/lib --extra-lib-dirs=/nix/store/m9fycbkaairz8kampnsl7sx1aanvl0db-gmp-with-cxx-6.3.0/lib
  1282. 1738.96 s [lens] Using Parsec parser
  1283. 1738.96 s [lens] Configuring lens-5.3.4...
  1284. 1740.25 s [aeson] Warning: 'Object' is ambiguous. It is defined
  1285. 1740.25 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
  1286. 1740.25 s [aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
  1287. 1740.25 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1288. 1740.25 s [aeson] by specifying the type/value namespace explicitly.
  1289. 1740.25 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
  1290. 1740.25 s [aeson] Warning: 'Array' is ambiguous. It is defined
  1291. 1740.25 s [aeson] * at src/Data/Aeson/Types/Internal.hs:367:14
  1292. 1740.25 s [aeson] * at src/Data/Aeson/Types/Internal.hs:363:1
  1293. 1740.25 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1294. 1740.25 s [aeson] by specifying the type/value namespace explicitly.
  1295. 1740.25 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:363:1
  1296. 1740.27 s [aeson] Warning: 'ToJSONKey' is out of scope.
  1297. 1740.27 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1298. 1740.27 s [aeson] Warning: 'String' is ambiguous. It is defined
  1299. 1740.27 s [aeson] * at src/Data/Aeson/Types/Internal.hs:368:14
  1300. 1740.27 s [aeson] * in ‘GHC.Base’
  1301. 1740.27 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1302. 1740.27 s [aeson] by specifying the type/value namespace explicitly.
  1303. 1740.27 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
  1304. 1740.28 s [aeson] Warning: 'ToJSONKeyFunction' is out of scope.
  1305. 1740.28 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1306. 1740.28 s [aeson] Warning: 'ToJSONKeyValue' is out of scope.
  1307. 1740.28 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1308. 1740.28 s [aeson] Warning: 'ToJSONKeyText' is out of scope.
  1309. 1740.28 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1310. 1740.28 s [aeson] Warning: 'genericToJSONKey' is out of scope.
  1311. 1740.28 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1312. 1740.31 s [aeson] Warning: 'Bool' is ambiguous. It is defined
  1313. 1740.31 s [aeson] * at src/Data/Aeson/Types/Internal.hs:370:14
  1314. 1740.31 s [aeson] * in ‘GHC.Types’
  1315. 1740.31 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1316. 1740.31 s [aeson] by specifying the type/value namespace explicitly.
  1317. 1740.31 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
  1318. 1740.31 s [aeson] Warning: 'Boolean' is out of scope.
  1319. 1740.31 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1320. 1740.35 s [aeson] Warning: 'ConsParseJSON' is out of scope.
  1321. 1740.35 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1322. 1740.45 s [pointed] Flags chosen: comonad=True, containers=True, kan-extensions=True,
  1323. 1740.45 s [pointed] semigroupoids=True, stm=True, tagged=True, transformers=True,
  1324. 1740.45 s [pointed] unordered-containers=True
  1325. 1740.45 s [pointed] Dependency base >=4.9 && <5: using base-4.18.1.0
  1326. 1740.45 s [pointed] Dependency comonad >=5 && <6: using comonad-5.0.9
  1327. 1740.45 s [pointed] Dependency containers >=0.4 && <0.9: using containers-0.6.7
  1328. 1740.45 s [pointed] Dependency data-default-class >=0.0.1 && <0.3: using
  1329. 1740.45 s [pointed] data-default-class-0.1.2.2
  1330. 1740.45 s [pointed] Dependency hashable >=1.1 && <1.6: using hashable-1.4.7.0
  1331. 1740.45 s [pointed] Dependency kan-extensions >=5 && <6: using kan-extensions-5.2.6
  1332. 1740.45 s [pointed] Dependency semigroupoids >=4 && <7: using semigroupoids-6.0.1
  1333. 1740.45 s [pointed] Dependency stm >=2.1.2.1 && <2.6: using stm-2.5.1.0
  1334. 1740.45 s [pointed] Dependency tagged >=0.5 && <1: using tagged-0.8.8
  1335. 1740.45 s [pointed] Dependency transformers >=0.2 && <0.7: using transformers-0.6.1.0
  1336. 1740.45 s [pointed] Dependency transformers-compat >=0.3 && <1: using transformers-compat-0.7.2
  1337. 1740.45 s [pointed] Dependency unordered-containers >=0.2 && <0.3: using
  1338. 1740.45 s [pointed] unordered-containers-0.2.20
  1339. 1741.53 s [lens] Flags chosen: benchmark-uniplate=False, dump-splices=False, inlining=True,
  1340. 1741.53 s [lens] j=False, test-hunit=True, test-properties=True, test-templates=True,
  1341. 1741.53 s [lens] trustworthy=True
  1342. 1741.53 s [lens] Dependency array >=0.5.0.0 && <0.6: using array-0.5.5.0
  1343. 1741.53 s [lens] Dependency assoc >=1.0.2 && <1.2: using assoc-1.1.1
  1344. 1741.53 s [lens] Dependency base >=4.9 && <5: using base-4.18.1.0
  1345. 1741.53 s [lens] Dependency base-orphans >=0.5.2 && <1: using base-orphans-0.9.3
  1346. 1741.53 s [lens] Dependency bifunctors >=5.5.7 && <6: using bifunctors-5.6.2
  1347. 1741.53 s [lens] Dependency bytestring >=0.10.4.0 && <0.13: using bytestring-0.11.5.2
  1348. 1741.53 s [lens] Dependency call-stack >=0.1 && <0.5: using call-stack-0.4.0
  1349. 1741.53 s [lens] Dependency comonad >=5.0.7 && <6: using comonad-5.0.9
  1350. 1741.53 s [lens] Dependency containers >=0.5.5.1 && <0.9: using containers-0.6.7
  1351. 1741.53 s [lens] Dependency contravariant >=1.4 && <2: using contravariant-1.5.5
  1352. 1741.53 s [lens] Dependency distributive >=0.5.1 && <1: using distributive-0.6.2.1
  1353. 1741.53 s [lens] Dependency exceptions >=0.8.2.1 && <1: using exceptions-0.10.7
  1354. 1741.53 s [lens] Dependency filepath >=1.2.0.0 && <1.6: using filepath-1.4.100.4
  1355. 1741.53 s [lens] Dependency free >=5.1.5 && <6: using free-5.2
  1356. 1741.53 s [lens] Dependency ghc-prim: using ghc-prim-0.10.0
  1357. 1741.53 s [lens] Dependency hashable >=1.2.7.0 && <1.6: using hashable-1.4.7.0
  1358. 1741.53 s [lens] Dependency indexed-traversable >=0.1 && <0.2: using indexed-traversable-0.1.4
  1359. 1741.53 s [lens] Dependency indexed-traversable-instances >=0.1 && <0.2: using
  1360. 1741.53 s [lens] indexed-traversable-instances-0.1.2
  1361. 1741.53 s [lens] Dependency kan-extensions >=5 && <6: using kan-extensions-5.2.6
  1362. 1741.53 s [lens] Dependency mtl >=2.2.1 && <2.4: using mtl-2.3.1
  1363. 1741.53 s [lens] Dependency parallel >=3.2.1.0 && <3.3: using parallel-3.2.2.0
  1364. 1741.53 s [lens] Dependency profunctors >=5.5.2 && <6: using profunctors-5.6.2
  1365. 1741.53 s [lens] Dependency reflection >=2.1 && <3: using reflection-2.1.9
  1366. 1741.53 s [lens] Dependency semigroupoids >=5.0.1 && <7: using semigroupoids-6.0.1
  1367. 1741.54 s [lens] Dependency strict >=0.4 && <0.6: using strict-0.5.1
  1368. 1741.54 s [lens] Dependency tagged >=0.8.6 && <1: using tagged-0.8.8
  1369. 1741.54 s [lens] Dependency template-haskell >=2.11.1.0 && <2.24: using
  1370. 1741.54 s [lens] template-haskell-2.20.0.0
  1371. 1741.54 s [lens] Dependency text >=1.2.3.0 && <2.2: using text-2.0.2
  1372. 1741.54 s [lens] Dependency th-abstraction >=0.4.1 && <0.8: using th-abstraction-0.7.1.0
  1373. 1741.54 s [lens] Dependency these >=1.1.1.1 && <1.3: using these-1.2.1
  1374. 1741.54 s [lens] Dependency transformers >=0.5.0.0 && <0.7: using transformers-0.6.1.0
  1375. 1741.54 s [lens] Dependency transformers-compat >=0.5.0.4 && <1: using
  1376. 1741.54 s [lens] transformers-compat-0.7.2
  1377. 1741.54 s [lens] Dependency unordered-containers >=0.2.10 && <0.3: using
  1378. 1741.54 s [lens] unordered-containers-0.2.20
  1379. 1741.54 s [lens] Dependency vector >=0.12.1.2 && <0.14: using vector-0.13.2.0
  1380. 1741.54 s [lens] Dependency base: using base-4.18.1.0
  1381. 1741.54 s [lens] Dependency lens: using lens-5.3.4
  1382. 1741.54 s [lens] Dependency QuickCheck >=2.4: using QuickCheck-2.14.3
  1383. 1741.54 s [lens] Dependency base: using base-4.18.1.0
  1384. 1741.54 s [lens] Dependency lens: using lens-5.3.4
  1385. 1741.54 s [lens] Dependency test-framework >=0.6: using test-framework-0.8.2.2
  1386. 1741.54 s [lens] Dependency test-framework-quickcheck2 >=0.2: using
  1387. 1741.54 s [lens] test-framework-quickcheck2-0.3.0.6
  1388. 1741.54 s [lens] Dependency transformers: using transformers-0.6.1.0
  1389. 1741.54 s [lens] Dependency HUnit >=1.2: using HUnit-1.6.2.0
  1390. 1741.54 s [lens] Dependency base: using base-4.18.1.0
  1391. 1741.54 s [lens] Dependency bytestring: using bytestring-0.11.5.2
  1392. 1741.54 s [lens] Dependency containers: using containers-0.6.7
  1393. 1741.54 s [lens] Dependency lens: using lens-5.3.4
  1394. 1741.54 s [lens] Dependency mtl: using mtl-2.3.1
  1395. 1741.54 s [lens] Dependency test-framework >=0.6: using test-framework-0.8.2.2
  1396. 1741.54 s [lens] Dependency test-framework-hunit >=0.2: using test-framework-hunit-0.3.0.2
  1397. 1741.54 s [lens] Dependency text: using text-2.0.2
  1398. 1741.54 s [lens] Dependency base <5: using base-4.18.1.0
  1399. 1741.54 s [lens] Dependency deepseq: using deepseq-1.4.8.1
  1400. 1741.54 s [lens] Dependency simple-reflect >=0.3.1: using simple-reflect-0.3.3
  1401. 1741.75 s [pointed] Source component graph: component lib
  1402. 1741.82 s [pointed] Configured component graph:
  1403. 1741.82 s [pointed] component pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  1404. 1741.82 s [pointed] include base-4.18.1.0
  1405. 1741.82 s [pointed] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  1406. 1741.82 s [pointed] include containers-0.6.7
  1407. 1741.82 s [pointed] include data-default-class-0.1.2.2-AiGPNO3vZSZDePo1Q5RygF
  1408. 1741.82 s [pointed] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  1409. 1741.82 s [pointed] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  1410. 1741.82 s [pointed] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  1411. 1741.82 s [pointed] include stm-2.5.1.0
  1412. 1741.82 s [pointed] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
  1413. 1741.82 s [pointed] include transformers-0.6.1.0
  1414. 1741.82 s [pointed] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
  1415. 1741.82 s [pointed] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
  1416. 1741.82 s [pointed] Linked component graph:
  1417. 1741.82 s [pointed] unit pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  1418. 1741.82 s [pointed] include base-4.18.1.0
  1419. 1741.82 s [pointed] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  1420. 1741.82 s [pointed] include containers-0.6.7
  1421. 1741.82 s [pointed] include data-default-class-0.1.2.2-AiGPNO3vZSZDePo1Q5RygF
  1422. 1741.82 s [pointed] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  1423. 1741.82 s [pointed] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  1424. 1741.82 s [pointed] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  1425. 1741.82 s [pointed] include stm-2.5.1.0
  1426. 1741.82 s [pointed] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
  1427. 1741.82 s [pointed] include transformers-0.6.1.0
  1428. 1741.82 s [pointed] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
  1429. 1741.82 s [pointed] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
  1430. 1741.82 s [pointed] Data.Copointed=pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4:Data.Copointed,Data.Pointed=pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4:Data.Pointed
  1431. 1741.82 s [pointed] Ready component graph:
  1432. 1741.82 s [pointed] definite pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  1433. 1741.82 s [pointed] depends base-4.18.1.0
  1434. 1741.82 s [pointed] depends comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  1435. 1741.82 s [pointed] depends containers-0.6.7
  1436. 1741.82 s [pointed] depends data-default-class-0.1.2.2-AiGPNO3vZSZDePo1Q5RygF
  1437. 1741.82 s [pointed] depends hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  1438. 1741.82 s [pointed] depends kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  1439. 1741.82 s [pointed] depends semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  1440. 1741.82 s [pointed] depends stm-2.5.1.0
  1441. 1741.82 s [pointed] depends tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
  1442. 1741.82 s [pointed] depends transformers-0.6.1.0
  1443. 1741.82 s [pointed] depends transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
  1444. 1741.82 s [pointed] depends unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
  1445. 1741.82 s [pointed] Using Cabal-3.10.1.0 compiled by ghc-9.6
  1446. 1741.82 s [pointed] Using compiler: ghc-9.6.3
  1447. 1741.82 s [pointed] Using install prefix:
  1448. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
  1449. 1741.82 s [pointed] Executables installed in:
  1450. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/bin
  1451. 1741.82 s [pointed] Libraries installed in:
  1452. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  1453. 1741.82 s [pointed] Dynamic Libraries installed in:
  1454. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3
  1455. 1741.82 s [pointed] Private executables installed in:
  1456. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/libexec/x86_64-linux-ghc-9.6.3/pointed-5.0.5
  1457. 1741.82 s [pointed] Data files installed in:
  1458. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/share/x86_64-linux-ghc-9.6.3/pointed-5.0.5
  1459. 1741.82 s [pointed] Documentation installed in:
  1460. 1741.82 s [pointed] /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc/share/doc/pointed-5.0.5
  1461. 1741.82 s [pointed] Configuration files installed in:
  1462. 1741.82 s [pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/etc
  1463. 1741.82 s [pointed] No alex found
  1464. 1741.82 s [pointed] Using ar found on system at:
  1465. 1741.82 s [pointed] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
  1466. 1741.82 s [pointed] No c2hs found
  1467. 1741.82 s [pointed] No cpphs found
  1468. 1741.82 s [pointed] No doctest found
  1469. 1741.82 s [pointed] Using gcc version 14.3.0 given by user at:
  1470. 1741.82 s [pointed] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
  1471. 1741.82 s [pointed] Using ghc version 9.6.3 found on system at:
  1472. 1741.82 s [pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
  1473. 1741.82 s [pointed] Using ghc-pkg version 9.6.3 found on system at:
  1474. 1741.82 s [pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
  1475. 1741.82 s [pointed] No ghcjs found
  1476. 1741.82 s [pointed] No ghcjs-pkg found
  1477. 1741.82 s [pointed] No greencard found
  1478. 1741.82 s [pointed] Using haddock version 2.29.1 found on system at:
  1479. 1741.82 s [pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
  1480. 1741.82 s [pointed] No happy found
  1481. 1741.82 s [pointed] Using haskell-suite found on system at: haskell-suite-dummy-location
  1482. 1741.82 s [pointed] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  1483. 1741.82 s [pointed] No hmake found
  1484. 1741.82 s [pointed] Using hpc version 0.68 found on system at:
  1485. 1741.82 s [pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
  1486. 1741.82 s [pointed] Using hsc2hs version 0.68.9 found on system at:
  1487. 1741.82 s [pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
  1488. 1741.82 s [pointed] Using hscolour version 1.25 found on system at:
  1489. 1741.82 s [pointed] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
  1490. 1741.82 s [pointed] No jhc found
  1491. 1741.82 s [pointed] Using ld found on system at:
  1492. 1741.82 s [pointed] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
  1493. 1741.82 s [pointed] No pkg-config found
  1494. 1741.82 s [pointed] Using runghc version 9.6.3 found on system at:
  1495. 1741.82 s [pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
  1496. 1741.82 s [pointed] Using strip version 2.44 found on system at:
  1497. 1741.82 s [pointed] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
  1498. 1741.82 s [pointed] Using tar found on system at:
  1499. 1741.82 s [pointed] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
  1500. 1741.82 s [pointed] No uhc found
  1501. 1742.11 s [pointed] Phase: buildPhase
  1502. 1742.42 s [lens] Source component graph:
  1503. 1742.42 s [lens] component test:doctests
  1504. 1742.42 s [lens] component lib
  1505. 1742.42 s [lens] component test:hunit dependency lib
  1506. 1742.42 s [lens] component test:properties dependency lib
  1507. 1742.42 s [lens] component test:templates dependency lib
  1508. 1742.42 s [lens] Configured component graph:
  1509. 1742.42 s [lens] component lens-5.3.4-ViDsUaiM0TJLg2jCtEBXw-doctests
  1510. 1742.42 s [lens] include base-4.18.1.0
  1511. 1742.42 s [lens] include deepseq-1.4.8.1
  1512. 1742.42 s [lens] include simple-reflect-0.3.3-1jKYH5Sh1Yt77S4tHMuf7F
  1513. 1742.42 s [lens] component lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1514. 1742.42 s [lens] include array-0.5.5.0
  1515. 1742.42 s [lens] include assoc-1.1.1-Drq9QKvUYiAOaSIX2zWsU
  1516. 1742.42 s [lens] include base-4.18.1.0
  1517. 1742.42 s [lens] include base-orphans-0.9.3-EsfNI13WQjn4lDOQc9i0fL
  1518. 1742.42 s [lens] include bifunctors-5.6.2-Lbz7IW7RbEWLszMdXwAUwT
  1519. 1742.42 s [lens] include bytestring-0.11.5.2
  1520. 1742.42 s [lens] include call-stack-0.4.0-5MNBRF9AhgOFCmdblAdnEo
  1521. 1742.42 s [lens] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  1522. 1742.42 s [lens] include containers-0.6.7
  1523. 1742.42 s [lens] include contravariant-1.5.5-BJswvy5l6NbKCNb8GIbKMn
  1524. 1742.42 s [lens] include distributive-0.6.2.1-IGSS9djK77G3Oq1CJlJAaw
  1525. 1742.42 s [lens] include exceptions-0.10.7
  1526. 1742.42 s [lens] include filepath-1.4.100.4
  1527. 1742.42 s [lens] include free-5.2-pmOseOpbmmJxO61jWrFWI
  1528. 1742.42 s [lens] include ghc-prim-0.10.0
  1529. 1742.42 s [lens] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  1530. 1742.42 s [lens] include indexed-traversable-0.1.4-3KQfryvD6CkLv2KxalzUb5
  1531. 1742.42 s [lens] include indexed-traversable-instances-0.1.2-3K6JKtKWWRkLY5MVB3w6xq
  1532. 1742.42 s [lens] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  1533. 1742.42 s [lens] include mtl-2.3.1
  1534. 1742.42 s [lens] include parallel-3.2.2.0-1kILbc471scI04imHIENqR
  1535. 1742.42 s [lens] include profunctors-5.6.2-36avph0rW537qvMb6XX38R
  1536. 1742.42 s [lens] include reflection-2.1.9-7DSrmnxebYRFDeqWca0bwP
  1537. 1742.42 s [lens] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  1538. 1742.42 s [lens] include strict-0.5.1-JQp8IUgd9mIGuI9YRo3e6a
  1539. 1742.42 s [lens] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
  1540. 1742.42 s [lens] include template-haskell-2.20.0.0
  1541. 1742.42 s [lens] include text-2.0.2
  1542. 1742.42 s [lens] include th-abstraction-0.7.1.0-705kaaInCfSGFvRe7PqSX0
  1543. 1742.42 s [lens] include these-1.2.1-5P6Fv3Pe7oRFsFG3HrYm87
  1544. 1742.42 s [lens] include transformers-0.6.1.0
  1545. 1742.43 s [lens] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
  1546. 1742.43 s [lens] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
  1547. 1742.43 s [lens] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
  1548. 1742.43 s [lens] component lens-5.3.4-DLosF5BULta67O5fU94xcI-hunit
  1549. 1742.43 s [lens] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
  1550. 1742.43 s [lens] include base-4.18.1.0
  1551. 1742.43 s [lens] include bytestring-0.11.5.2
  1552. 1742.43 s [lens] include containers-0.6.7
  1553. 1742.43 s [lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1554. 1742.43 s [lens] include mtl-2.3.1
  1555. 1742.43 s [lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
  1556. 1742.43 s [lens] include test-framework-hunit-0.3.0.2-6IcviKDR8aqGttCrpbvXXU
  1557. 1742.43 s [lens] include text-2.0.2
  1558. 1742.43 s [lens] component lens-5.3.4-CRRUfaDIeGs3doq65RrjgY-properties
  1559. 1742.43 s [lens] include QuickCheck-2.14.3-IAjrznsuljOBEe2hEqHytS
  1560. 1742.43 s [lens] include base-4.18.1.0
  1561. 1742.43 s [lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1562. 1742.43 s [lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
  1563. 1742.43 s [lens] include test-framework-quickcheck2-0.3.0.6-HkHjoisjix325Erf8tshaD
  1564. 1742.43 s [lens] include transformers-0.6.1.0
  1565. 1742.43 s [lens] component lens-5.3.4-p7HozHjf0z4oRn4be2F4a-templates
  1566. 1742.43 s [lens] include base-4.18.1.0
  1567. 1742.43 s [lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1568. 1742.43 s [lens] Linked component graph:
  1569. 1742.43 s [lens] unit lens-5.3.4-ViDsUaiM0TJLg2jCtEBXw-doctests
  1570. 1742.43 s [lens] include base-4.18.1.0
  1571. 1742.43 s [lens] include deepseq-1.4.8.1
  1572. 1742.43 s [lens] include simple-reflect-0.3.3-1jKYH5Sh1Yt77S4tHMuf7F
  1573. 1742.43 s [lens] unit lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1574. 1742.43 s [lens] include array-0.5.5.0
  1575. 1742.43 s [lens] include assoc-1.1.1-Drq9QKvUYiAOaSIX2zWsU
  1576. 1742.43 s [lens] include base-4.18.1.0
  1577. 1742.43 s [lens] include base-orphans-0.9.3-EsfNI13WQjn4lDOQc9i0fL
  1578. 1742.43 s [lens] include bifunctors-5.6.2-Lbz7IW7RbEWLszMdXwAUwT
  1579. 1742.43 s [lens] include bytestring-0.11.5.2
  1580. 1742.43 s [lens] include call-stack-0.4.0-5MNBRF9AhgOFCmdblAdnEo
  1581. 1742.43 s [lens] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  1582. 1742.43 s [lens] include containers-0.6.7
  1583. 1742.43 s [lens] include contravariant-1.5.5-BJswvy5l6NbKCNb8GIbKMn
  1584. 1742.43 s [lens] include distributive-0.6.2.1-IGSS9djK77G3Oq1CJlJAaw
  1585. 1742.43 s [lens] include exceptions-0.10.7
  1586. 1742.43 s [lens] include filepath-1.4.100.4
  1587. 1742.43 s [lens] include free-5.2-pmOseOpbmmJxO61jWrFWI
  1588. 1742.43 s [lens] include ghc-prim-0.10.0
  1589. 1742.43 s [lens] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  1590. 1742.43 s [lens] include indexed-traversable-0.1.4-3KQfryvD6CkLv2KxalzUb5
  1591. 1742.43 s [lens] include indexed-traversable-instances-0.1.2-3K6JKtKWWRkLY5MVB3w6xq
  1592. 1742.43 s [lens] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  1593. 1742.43 s [lens] include mtl-2.3.1
  1594. 1742.43 s [lens] include parallel-3.2.2.0-1kILbc471scI04imHIENqR
  1595. 1742.43 s [lens] include profunctors-5.6.2-36avph0rW537qvMb6XX38R
  1596. 1742.43 s [lens] include reflection-2.1.9-7DSrmnxebYRFDeqWca0bwP
  1597. 1742.43 s [lens] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  1598. 1742.43 s [lens] include strict-0.5.1-JQp8IUgd9mIGuI9YRo3e6a
  1599. 1742.43 s [lens] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
  1600. 1742.43 s [lens] include template-haskell-2.20.0.0
  1601. 1742.43 s [lens] include text-2.0.2
  1602. 1742.43 s [lens] include th-abstraction-0.7.1.0-705kaaInCfSGFvRe7PqSX0
  1603. 1742.43 s [lens] include these-1.2.1-5P6Fv3Pe7oRFsFG3HrYm87
  1604. 1742.43 s [lens] include transformers-0.6.1.0
  1605. 1742.43 s [lens] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
  1606. 1742.43 s [lens] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
  1607. 1742.43 s [lens] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
  1608. 1742.43 s [lens] Control.Exception.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Exception.Lens,Control.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens,Control.Lens.At=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.At,Control.Lens.Combinators=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Combinators,Control.Lens.Cons=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Cons,Control.Lens.Each=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Each,Control.Lens.Empty=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Empty,Control.Lens.Equality=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Equality,Control.Lens.Extras=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Extras,Control.Lens.Fold=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Fold,Control.Lens.Getter=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Getter,Control.Lens.Indexed=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Indexed,Control.Lens.Internal=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal,Control.Lens.Internal.Bazaar=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Bazaar,Control.Lens.Internal.ByteString=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.ByteString,Control.Lens.Internal.CTypes=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.CTypes,Control.Lens.Internal.Context=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Context,Control.Lens.Internal.Deque=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Deque,Control.Lens.Internal.Doctest=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Doctest,Control.Lens.Internal.Exception=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Exception,Control.Lens.Internal.FieldTH=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.FieldTH,Control.Lens.Internal.Fold=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Fold,Control.Lens.Internal.Getter=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Getter,Control.Lens.Internal.Indexed=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Indexed,Control.Lens.Internal.Instances=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Instances,Control.Lens.Internal.Iso=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Iso,Control.Lens.Internal.Level=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Level,Control.Lens.Internal.List=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.List,Control.Lens.Internal.Magma=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Magma,Control.Lens.Internal.Prism=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Prism,Control.Lens.Internal.PrismTH=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.PrismTH,Control.Lens.Internal.Profunctor=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Profunctor,Control.Lens.Internal.Review=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Review,Control.Lens.Internal.Setter=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Setter,Control.Lens.Internal.TH=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.TH,Control.Lens.Internal.Zoom=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Internal.Zoom,Control.Lens.Iso=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Iso,Control.Lens.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Lens,Control.Lens.Level=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Level,Control.Lens.Operators=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Operators,Control.Lens.Plated=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Plated,Control.Lens.Prism=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Prism,Control.Lens.Profunctor=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Profunctor,Control.Lens.Reified=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Reified,Control.Lens.Review=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Review,Control.Lens.Setter=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Setter,Control.Lens.TH=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.TH,Control.Lens.Traversal=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Traversal,Control.Lens.Tuple=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Tuple,Control.Lens.Type=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Type,Control.Lens.Unsound=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Unsound,Control.Lens.Wrapped=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Wrapped,Control.Lens.Zoom=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Lens.Zoom,Control.Monad.Error.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Monad.Error.Lens,Control.Parallel.Strategies.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Parallel.Strategies.Lens,Control.Seq.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Control.Seq.Lens,Data.Array.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Array.Lens,Data.Bits.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Bits.Lens,Data.ByteString.Lazy.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.ByteString.Lazy.Lens,Data.ByteString.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.ByteString.Lens,Data.ByteString.Strict.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.ByteString.Strict.Lens,Data.Complex.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Complex.Lens,Data.Data.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Data.Lens,Data.Dynamic.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Dynamic.Lens,Data.HashSet.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.HashSet.Lens,Data.IntSet.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.IntSet.Lens,Data.List.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.List.Lens,Data.Map.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Map.Lens,Data.Sequence.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Sequence.Lens,Data.Set.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Set.Lens,Data.Text.Lazy.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Text.Lazy.Lens,Data.Text.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Text.Lens,Data.Text.Strict.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Text.Strict.Lens,Data.Tree.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Tree.Lens,Data.Typeable.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Typeable.Lens,Data.Vector.Generic.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Vector.Generic.Lens,Data.Vector.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Data.Vector.Lens,GHC.Generics.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:GHC.Generics.Lens,Language.Haskell.TH.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Language.Haskell.TH.Lens,Numeric.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Numeric.Lens,Numeric.Natural.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:Numeric.Natural.Lens,System.Exit.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:System.Exit.Lens,System.FilePath.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:System.FilePath.Lens,System.IO.Error.Lens=lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP:System.IO.Error.Lens
  1609. 1742.43 s [lens] unit lens-5.3.4-DLosF5BULta67O5fU94xcI-hunit
  1610. 1742.43 s [lens] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
  1611. 1742.43 s [lens] include base-4.18.1.0
  1612. 1742.43 s [lens] include bytestring-0.11.5.2
  1613. 1742.43 s [lens] include containers-0.6.7
  1614. 1742.43 s [lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1615. 1742.43 s [lens] include mtl-2.3.1
  1616. 1742.43 s [lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
  1617. 1742.43 s [lens] include test-framework-hunit-0.3.0.2-6IcviKDR8aqGttCrpbvXXU
  1618. 1742.43 s [lens] include text-2.0.2
  1619. 1742.43 s [lens] unit lens-5.3.4-CRRUfaDIeGs3doq65RrjgY-properties
  1620. 1742.43 s [lens] include QuickCheck-2.14.3-IAjrznsuljOBEe2hEqHytS
  1621. 1742.43 s [lens] include base-4.18.1.0
  1622. 1742.43 s [lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1623. 1742.43 s [lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
  1624. 1742.43 s [lens] include test-framework-quickcheck2-0.3.0.6-HkHjoisjix325Erf8tshaD
  1625. 1742.43 s [lens] include transformers-0.6.1.0
  1626. 1742.43 s [lens] unit lens-5.3.4-p7HozHjf0z4oRn4be2F4a-templates
  1627. 1742.43 s [lens] include base-4.18.1.0
  1628. 1742.43 s [lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1629. 1742.44 s [lens] Ready component graph:
  1630. 1742.44 s [lens] definite lens-5.3.4-ViDsUaiM0TJLg2jCtEBXw-doctests
  1631. 1742.44 s [lens] depends base-4.18.1.0
  1632. 1742.44 s [lens] depends deepseq-1.4.8.1
  1633. 1742.44 s [lens] depends simple-reflect-0.3.3-1jKYH5Sh1Yt77S4tHMuf7F
  1634. 1742.44 s [lens] definite lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1635. 1742.44 s [lens] depends array-0.5.5.0
  1636. 1742.44 s [lens] depends assoc-1.1.1-Drq9QKvUYiAOaSIX2zWsU
  1637. 1742.44 s [lens] depends base-4.18.1.0
  1638. 1742.44 s [lens] depends base-orphans-0.9.3-EsfNI13WQjn4lDOQc9i0fL
  1639. 1742.44 s [lens] depends bifunctors-5.6.2-Lbz7IW7RbEWLszMdXwAUwT
  1640. 1742.44 s [lens] depends bytestring-0.11.5.2
  1641. 1742.44 s [lens] depends call-stack-0.4.0-5MNBRF9AhgOFCmdblAdnEo
  1642. 1742.44 s [lens] depends comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  1643. 1742.44 s [lens] depends containers-0.6.7
  1644. 1742.44 s [lens] depends contravariant-1.5.5-BJswvy5l6NbKCNb8GIbKMn
  1645. 1742.44 s [lens] depends distributive-0.6.2.1-IGSS9djK77G3Oq1CJlJAaw
  1646. 1742.44 s [lens] depends exceptions-0.10.7
  1647. 1742.44 s [lens] depends filepath-1.4.100.4
  1648. 1742.44 s [lens] depends free-5.2-pmOseOpbmmJxO61jWrFWI
  1649. 1742.44 s [lens] depends ghc-prim-0.10.0
  1650. 1742.44 s [lens] depends hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  1651. 1742.44 s [lens] depends indexed-traversable-0.1.4-3KQfryvD6CkLv2KxalzUb5
  1652. 1742.44 s [lens] depends indexed-traversable-instances-0.1.2-3K6JKtKWWRkLY5MVB3w6xq
  1653. 1742.44 s [lens] depends kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
  1654. 1742.44 s [lens] depends mtl-2.3.1
  1655. 1742.44 s [lens] depends parallel-3.2.2.0-1kILbc471scI04imHIENqR
  1656. 1742.44 s [lens] depends profunctors-5.6.2-36avph0rW537qvMb6XX38R
  1657. 1742.44 s [lens] depends reflection-2.1.9-7DSrmnxebYRFDeqWca0bwP
  1658. 1742.44 s [lens] depends semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  1659. 1742.44 s [lens] depends strict-0.5.1-JQp8IUgd9mIGuI9YRo3e6a
  1660. 1742.44 s [lens] depends tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
  1661. 1742.44 s [lens] depends template-haskell-2.20.0.0
  1662. 1742.44 s [lens] depends text-2.0.2
  1663. 1742.44 s [lens] depends th-abstraction-0.7.1.0-705kaaInCfSGFvRe7PqSX0
  1664. 1742.44 s [lens] depends these-1.2.1-5P6Fv3Pe7oRFsFG3HrYm87
  1665. 1742.44 s [lens] depends transformers-0.6.1.0
  1666. 1742.44 s [lens] depends transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
  1667. 1742.44 s [lens] depends unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
  1668. 1742.44 s [lens] depends vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
  1669. 1742.44 s [lens] definite lens-5.3.4-CRRUfaDIeGs3doq65RrjgY-properties
  1670. 1742.44 s [lens] depends QuickCheck-2.14.3-IAjrznsuljOBEe2hEqHytS
  1671. 1742.44 s [lens] depends base-4.18.1.0
  1672. 1742.44 s [lens] depends lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1673. 1742.44 s [lens] depends test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
  1674. 1742.44 s [lens] depends test-framework-quickcheck2-0.3.0.6-HkHjoisjix325Erf8tshaD
  1675. 1742.44 s [lens] depends transformers-0.6.1.0
  1676. 1742.44 s [lens] definite lens-5.3.4-DLosF5BULta67O5fU94xcI-hunit
  1677. 1742.44 s [lens] depends HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
  1678. 1742.44 s [lens] depends base-4.18.1.0
  1679. 1742.44 s [lens] depends bytestring-0.11.5.2
  1680. 1742.44 s [lens] depends containers-0.6.7
  1681. 1742.44 s [lens] depends lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1682. 1742.44 s [lens] depends mtl-2.3.1
  1683. 1742.44 s [lens] depends test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
  1684. 1742.44 s [lens] depends test-framework-hunit-0.3.0.2-6IcviKDR8aqGttCrpbvXXU
  1685. 1742.44 s [lens] depends text-2.0.2
  1686. 1742.44 s [lens] definite lens-5.3.4-p7HozHjf0z4oRn4be2F4a-templates
  1687. 1742.44 s [lens] depends base-4.18.1.0
  1688. 1742.44 s [lens] depends lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1689. 1742.44 s [lens] Using Cabal-3.10.1.0 compiled by ghc-9.6
  1690. 1742.44 s [lens] Using compiler: ghc-9.6.3
  1691. 1742.44 s [lens] Using install prefix: /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4
  1692. 1742.44 s [lens] Executables installed in:
  1693. 1742.44 s [lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/bin
  1694. 1742.44 s [lens] Libraries installed in:
  1695. 1742.44 s [lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
  1696. 1742.44 s [lens] Dynamic Libraries installed in:
  1697. 1742.44 s [lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3
  1698. 1742.44 s [lens] Private executables installed in:
  1699. 1742.44 s [lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/libexec/x86_64-linux-ghc-9.6.3/lens-5.3.4
  1700. 1742.44 s [lens] Data files installed in:
  1701. 1742.44 s [lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/share/x86_64-linux-ghc-9.6.3/lens-5.3.4
  1702. 1742.44 s [lens] Documentation installed in:
  1703. 1742.44 s [lens] /nix/store/ji17mji4rv431fdl3f1hs007gpfa97gg-lens-5.3.4-doc/share/doc/lens-5.3.4
  1704. 1742.44 s [lens] Configuration files installed in:
  1705. 1742.44 s [lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/etc
  1706. 1742.44 s [lens] No alex found
  1707. 1742.44 s [lens] Using ar found on system at:
  1708. 1742.52 s [lens] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
  1709. 1742.52 s [lens] No c2hs found
  1710. 1742.52 s [lens] No cpphs found
  1711. 1742.52 s [lens] No doctest found
  1712. 1742.52 s [lens] Using gcc version 14.3.0 given by user at:
  1713. 1742.52 s [lens] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
  1714. 1742.52 s [lens] Using ghc version 9.6.3 found on system at:
  1715. 1742.52 s [lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
  1716. 1742.52 s [lens] Using ghc-pkg version 9.6.3 found on system at:
  1717. 1742.52 s [lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
  1718. 1742.52 s [lens] No ghcjs found
  1719. 1742.52 s [lens] No ghcjs-pkg found
  1720. 1742.52 s [lens] No greencard found
  1721. 1742.52 s [lens] Using haddock version 2.29.1 found on system at:
  1722. 1742.52 s [lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
  1723. 1742.52 s [lens] No happy found
  1724. 1742.52 s [lens] Using haskell-suite found on system at: haskell-suite-dummy-location
  1725. 1742.52 s [lens] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  1726. 1742.52 s [lens] No hmake found
  1727. 1742.52 s [lens] Using hpc version 0.68 found on system at:
  1728. 1742.53 s [lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
  1729. 1742.53 s [lens] Using hsc2hs version 0.68.9 found on system at:
  1730. 1742.53 s [lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
  1731. 1742.53 s [lens] Using hscolour version 1.25 found on system at:
  1732. 1742.53 s [lens] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
  1733. 1742.53 s [lens] No jhc found
  1734. 1742.53 s [lens] Using ld found on system at:
  1735. 1742.53 s [lens] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
  1736. 1742.53 s [lens] No pkg-config found
  1737. 1742.53 s [lens] Using runghc version 9.6.3 found on system at:
  1738. 1742.53 s [lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
  1739. 1742.53 s [lens] Using strip version 2.44 found on system at:
  1740. 1742.53 s [lens] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
  1741. 1742.53 s [lens] Using tar found on system at:
  1742. 1742.53 s [lens] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
  1743. 1742.53 s [lens] No uhc found
  1744. 1742.54 s [pointed] Preprocessing library for pointed-5.0.5..
  1745. 1742.55 s [pointed] Building library for pointed-5.0.5..
  1746. 1743.14 s [pointed] [1 of 2] Compiling Data.Copointed ( src/Data/Copointed.hs, dist/build/Data/Copointed.o, dist/build/Data/Copointed.dyn_o )
  1747. 1743.32 s [lens] Phase: buildPhase
  1748. 1743.48 s [shake] [57 of 71] Compiling Development.Shake.Internal.Rules.Directory ( src/Development/Shake/Internal/Rules/Directory.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/Directory.o )
  1749. 1743.48 s [shake] [58 of 71] Compiling Development.Shake.Internal.Rules.Default ( src/Development/Shake/Internal/Rules/Default.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Rules/Default.o )
  1750. 1743.48 s [shake] [59 of 71] Compiling Paths_shake ( dist/build/shake/autogen/Paths_shake.hs, dist/build/shake/shake-tmp/Paths_shake.o )
  1751. 1743.48 s [shake] [60 of 71] Compiling Development.Shake.Internal.Paths ( src/Development/Shake/Internal/Paths.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Paths.o )
  1752. 1743.48 s [shake] [61 of 71] Compiling General.Template ( src/General/Template.hs, dist/build/shake/shake-tmp/General/Template.o )
  1753. 1743.48 s [shake] [62 of 71] Compiling Development.Shake.Internal.Progress ( src/Development/Shake/Internal/Progress.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Progress.o )
  1754. 1743.48 s [shake] [63 of 71] Compiling Development.Shake.Internal.CompactUI ( src/Development/Shake/Internal/CompactUI.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/CompactUI.o )
  1755. 1743.48 s [shake] [64 of 71] Compiling Development.Shake.Internal.Profile ( src/Development/Shake/Internal/Profile.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Profile.o )
  1756. 1743.48 s [shake] [65 of 71] Compiling Development.Shake.Internal.Core.Run ( src/Development/Shake/Internal/Core/Run.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Core/Run.o )
  1757. 1743.48 s [shake] [66 of 71] Compiling Development.Shake.Database ( src/Development/Shake/Database.hs, dist/build/shake/shake-tmp/Development/Shake/Database.o )
  1758. 1743.48 s [shake] [67 of 71] Compiling Development.Shake.Internal.Demo ( src/Development/Shake/Internal/Demo.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Demo.o )
  1759. 1743.87 s [lens] Preprocessing test suite 'doctests' for lens-5.3.4..
  1760. 1743.88 s [lens] Building test suite 'doctests' for lens-5.3.4..
  1761. 1744.12 s [shake] [68 of 71] Compiling Development.Shake.Internal.Args ( src/Development/Shake/Internal/Args.hs, dist/build/shake/shake-tmp/Development/Shake/Internal/Args.o )
  1762. 1744.24 s [lens] [1 of 1] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
  1763. 1744.56 s [pointed] [2 of 2] Compiling Data.Pointed ( src/Data/Pointed.hs, dist/build/Data/Pointed.o, dist/build/Data/Pointed.dyn_o )
  1764. 1745.19 s [lens] [2 of 2] Linking dist/build/doctests/doctests
  1765. 1745.62 s [pointed] [1 of 2] Compiling Data.Copointed ( src/Data/Copointed.hs, dist/build/Data/Copointed.p_o )
  1766. 1745.91 s [aeson] Warning: 'pairs' is out of scope.
  1767. 1745.91 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1768. 1745.92 s [aeson] Warning: 'Object' is ambiguous. It is defined
  1769. 1745.92 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
  1770. 1745.92 s [aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
  1771. 1745.92 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1772. 1745.92 s [aeson] by specifying the type/value namespace explicitly.
  1773. 1745.92 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
  1774. 1745.93 s [aeson] Warning: 'Map' is out of scope.
  1775. 1745.93 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1776. 1745.93 s [aeson] Warning: 'HashMap' is out of scope.
  1777. 1745.93 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1778. 1745.93 s [aeson] Warning: 'FromJSONKey' is out of scope.
  1779. 1745.93 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1780. 1745.93 s [aeson] Warning: 'Foo' is out of scope.
  1781. 1745.93 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1782. 1745.93 s [aeson] Warning: 'String' is ambiguous. It is defined
  1783. 1745.93 s [aeson] * at src/Data/Aeson/Types/Internal.hs:368:14
  1784. 1745.93 s [aeson] * in ‘GHC.Base’
  1785. 1745.93 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1786. 1745.93 s [aeson] by specifying the type/value namespace explicitly.
  1787. 1745.93 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
  1788. 1745.93 s [aeson] Warning: 'ByteString' is out of scope.
  1789. 1745.93 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1790. 1745.93 s [aeson] Warning: 'showsList' is out of scope.
  1791. 1745.93 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1792. 1746.99 s [lens] Preprocessing library for lens-5.3.4..
  1793. 1747.06 s [lens] Building library for lens-5.3.4..
  1794. 1747.14 s [pointed] [2 of 2] Compiling Data.Pointed ( src/Data/Pointed.hs, dist/build/Data/Pointed.p_o )
  1795. 1747.54 s [shake] [69 of 71] Compiling Development.Shake ( src/Development/Shake.hs, dist/build/shake/shake-tmp/Development/Shake.o )
  1796. 1747.66 s [shake] [70 of 71] Compiling Development.Ninja.All ( src/Development/Ninja/All.hs, dist/build/shake/shake-tmp/Development/Ninja/All.o )
  1797. 1750.31 s [aeson]
  1798. 1750.31 s [aeson] src/Data/Aeson/Types/ToJSON.hs:1615:23: warning: [GHC-68441] [-Wdeprecations]
  1799. 1750.31 s [aeson] In the use of data constructor ‘Solo’
  1800. 1750.31 s [aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
  1801. 1750.31 s [aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
  1802. 1750.31 s [aeson] |
  1803. 1750.31 s [aeson] 1615 | liftToJSON _ t _ (Solo a) = t a
  1804. 1750.31 s [aeson] | ^^^^
  1805. 1750.31 s [aeson]
  1806. 1750.31 s [aeson] src/Data/Aeson/Types/ToJSON.hs:1618:27: warning: [GHC-68441] [-Wdeprecations]
  1807. 1750.31 s [aeson] In the use of data constructor ‘Solo’
  1808. 1750.31 s [aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
  1809. 1750.31 s [aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
  1810. 1750.31 s [aeson] |
  1811. 1750.31 s [aeson] 1618 | liftToEncoding _ t _ (Solo a) = t a
  1812. 1750.31 s [aeson] | ^^^^
  1813. 1750.48 s [aeson] 93% (138 /148) in 'Data.Aeson.Types'
  1814. 1750.48 s [aeson] Missing documentation for:
  1815. 1750.48 s [aeson] Key (src/Data/Aeson/Key.hs:44)
  1816. 1750.48 s [aeson] ToJSONKeyFunction (src/Data/Aeson/Types/ToJSON.hs:532)
  1817. 1750.48 s [aeson] GToJSONKey (src/Data/Aeson/Types/ToJSON.hs:596)
  1818. 1750.48 s [aeson] genericToJSONKey (src/Data/Aeson/Types/ToJSON.hs:592)
  1819. 1750.48 s [aeson] GFromJSONKey (src/Data/Aeson/Types/FromJSON.hs:521)
  1820. 1750.48 s [aeson] omitField1 (src/Data/Aeson/Types/ToJSON.hs:690)
  1821. 1750.48 s [aeson] omitField2 (src/Data/Aeson/Types/ToJSON.hs:723)
  1822. 1750.48 s [aeson] GToJSON (src/Data/Aeson/Types/Class.hs:120)
  1823. 1750.48 s [aeson] GToEncoding (src/Data/Aeson/Types/Class.hs:121)
  1824. 1750.48 s [aeson] JSONPath (src/Data/Aeson/Types/Internal.hs:116)
  1825. 1750.55 s [aeson] Warning: 'encode' is out of scope.
  1826. 1750.55 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1827. 1750.55 s [aeson] Warning: 'fromEncoding' is out of scope.
  1828. 1750.55 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1829. 1750.56 s [aeson] 100% ( 3 / 3) in 'Data.Aeson.Text'
  1830. 1750.68 s [aeson] 100% ( 12 / 12) in 'Data.Aeson.Decoding'
  1831. 1750.90 s [aeson] Warning: 'json' is out of scope.
  1832. 1750.90 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1833. 1750.91 s [aeson] Warning: 'Generic' is out of scope.
  1834. 1750.91 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1835. 1750.92 s [aeson] Warning: 'name' is out of scope.
  1836. 1750.92 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1837. 1750.93 s [aeson] Warning: 'Object' is ambiguous. It is defined
  1838. 1750.93 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
  1839. 1750.93 s [aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
  1840. 1750.93 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1841. 1750.93 s [aeson] by specifying the type/value namespace explicitly.
  1842. 1750.93 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
  1843. 1750.95 s [aeson] Cannot find documentation for: $optionsFields
  1844. 1750.96 s [aeson] 92% (132 /143) in 'Data.Aeson'
  1845. 1750.96 s [aeson] Missing documentation for:
  1846. 1750.96 s [aeson] Key (src/Data/Aeson/Key.hs:44)
  1847. 1750.96 s [aeson] JSONPath (src/Data/Aeson/Types/Internal.hs:116)
  1848. 1750.96 s [aeson] ToJSONKeyFunction (src/Data/Aeson/Types/ToJSON.hs:532)
  1849. 1750.96 s [aeson] GToJSONKey (src/Data/Aeson/Types/ToJSON.hs:596)
  1850. 1750.96 s [aeson] genericToJSONKey (src/Data/Aeson/Types/ToJSON.hs:592)
  1851. 1750.96 s [aeson] GFromJSONKey (src/Data/Aeson/Types/FromJSON.hs:521)
  1852. 1750.96 s [aeson] omitField1 (src/Data/Aeson/Types/ToJSON.hs:690)
  1853. 1750.96 s [aeson] omitField2 (src/Data/Aeson/Types/ToJSON.hs:723)
  1854. 1750.96 s [aeson] GToJSON (src/Data/Aeson/Types/Class.hs:120)
  1855. 1750.96 s [aeson] GToEncoding (src/Data/Aeson/Types/Class.hs:121)
  1856. 1750.96 s [aeson] parseIndexedJSON (src/Data/Aeson/Types/FromJSON.hs:170)
  1857. 1751.26 s [aeson] Warning: 'Value' is ambiguous. It is defined
  1858. 1751.26 s [aeson] * at src/Data/Aeson/Encoding/Internal.hs:130:15
  1859. 1751.26 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:1
  1860. 1751.26 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1861. 1751.26 s [aeson] by specifying the type/value namespace explicitly.
  1862. 1751.26 s [aeson] Defaulting to the one defined at src/Data/Aeson/Encoding/Internal.hs:129:1
  1863. 1751.26 s [aeson] 100% ( 2 / 2) in 'Data.Aeson.RFC8785'
  1864. 1751.33 s [shake] [71 of 71] Compiling Run ( src/Run.hs, dist/build/shake/shake-tmp/Run.o )
  1865. 1751.37 s [aeson] 100% ( 2 / 2) in 'Data.Aeson.QQ.Simple'
  1866. 1751.93 s [aeson] Warning: 'ToJSON' is ambiguous. It is defined
  1867. 1751.93 s [aeson] * at src/Data/Aeson/TH.hs:1906:16
  1868. 1751.93 s [aeson] * at src/Data/Aeson/Types/ToJSON.hs:291:1
  1869. 1751.93 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1870. 1751.93 s [aeson] by specifying the type/value namespace explicitly.
  1871. 1751.93 s [aeson] Defaulting to the one defined at src/Data/Aeson/TH.hs:1906:1
  1872. 1751.94 s [aeson] Warning: 'Value' is ambiguous. It is defined
  1873. 1751.94 s [aeson] * at src/Data/Aeson/TH.hs:1909:18
  1874. 1751.94 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:1
  1875. 1751.94 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1876. 1751.94 s [aeson] by specifying the type/value namespace explicitly.
  1877. 1751.94 s [aeson] Defaulting to the one defined at src/Data/Aeson/TH.hs:1909:1
  1878. 1751.95 s [aeson] Warning: 'Object' is ambiguous. It is defined
  1879. 1751.95 s [aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
  1880. 1751.95 s [aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
  1881. 1751.95 s [aeson] You may be able to disambiguate the identifier by qualifying it or
  1882. 1751.95 s [aeson] by specifying the type/value namespace explicitly.
  1883. 1751.96 s [aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
  1884. 1751.96 s [aeson] Warning: 'FromJSON3' is out of scope.
  1885. 1751.96 s [aeson] If you qualify the identifier, haddock can try to link it anyway.
  1886. 1752.00 s [aeson] 100% ( 25 / 25) in 'Data.Aeson.TH'
  1887. 1754.24 s [pointed] Phase: checkPhase
  1888. 1754.44 s [shake] [72 of 72] Linking dist/build/shake/shake
  1889. 1754.50 s [pointed] Package has no test suites.
  1890. 1754.53 s [pointed] Phase: haddockPhase
  1891. 1755.18 s [pointed] Preprocessing library for pointed-5.0.5..
  1892. 1755.18 s [pointed] Running Haddock on library for pointed-5.0.5..
  1893. 1755.33 s [lens] [ 1 of 85] Compiling Control.Lens.Internal.CTypes ( src/Control/Lens/Internal/CTypes.hs, dist/build/Control/Lens/Internal/CTypes.o, dist/build/Control/Lens/Internal/CTypes.dyn_o )
  1894. 1755.48 s [pointed] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
  1895. 1756.26 s [aeson] Warning: Data.Aeson.Encoding.Internal: could not find link destinations for:
  1896. 1756.26 s [aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
  1897. 1756.26 s [aeson] - Data.Aeson.Types.ToJSON.gToJSON
  1898. 1756.27 s [aeson] Warning: Data.Aeson.Encoding: could not find link destinations for:
  1899. 1756.27 s [aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
  1900. 1756.27 s [aeson] - Data.Aeson.Types.ToJSON.gToJSON
  1901. 1756.53 s [lens] [ 2 of 85] Compiling Control.Lens.Internal.Doctest ( src/Control/Lens/Internal/Doctest.hs, dist/build/Control/Lens/Internal/Doctest.o, dist/build/Control/Lens/Internal/Doctest.dyn_o )
  1902. 1756.55 s [lens] [ 3 of 85] Compiling Control.Lens.Internal.Instances ( src/Control/Lens/Internal/Instances.hs, dist/build/Control/Lens/Internal/Instances.o, dist/build/Control/Lens/Internal/Instances.dyn_o )
  1903. 1756.55 s [lens] [ 4 of 85] Compiling Control.Lens.Internal.Iso ( src/Control/Lens/Internal/Iso.hs, dist/build/Control/Lens/Internal/Iso.o, dist/build/Control/Lens/Internal/Iso.dyn_o )
  1904. 1756.80 s [pointed] 50% ( 1 / 2) in 'Data.Copointed'
  1905. 1756.80 s [pointed] Missing documentation for:
  1906. 1756.81 s [pointed] Module header
  1907. 1757.25 s [pointed] 0% ( 0 / 2) in 'Data.Pointed'
  1908. 1757.25 s [pointed] Missing documentation for:
  1909. 1757.25 s [pointed] Module header
  1910. 1757.25 s [pointed] Pointed (src/Data/Pointed.hs:88)
  1911. 1757.49 s [shake] buildPhase completed in 8 minutes 43 seconds
  1912. 1757.49 s [shake] Phase: haddockPhase
  1913. 1758.25 s [shake] Preprocessing library for shake-0.19.8..
  1914. 1758.30 s [shake] Running Haddock on library for shake-0.19.8..
  1915. 1758.70 s [shake] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
  1916. 1758.72 s [aeson] Warning: Data.Aeson.Types: could not find link destinations for:
  1917. 1758.72 s [aeson] - Data.Vector.Vector
  1918. 1758.72 s [aeson] - Data.Vector.Generic.Base.Vector
  1919. 1758.72 s [aeson] - Data.Aeson.Types.Generic.ProductSize
  1920. 1758.72 s [aeson] - Data.Aeson.Types.Generic.AllNullary
  1921. 1758.72 s [aeson] - Data.Vector.Primitive.Vector
  1922. 1758.72 s [aeson] - Data.Vector.Storable.Vector
  1923. 1758.72 s [aeson] - Data.Vector.Unboxed.Base.Vector
  1924. 1758.72 s [aeson] - Data.Aeson.Types.FromJSON.ConstructorNames
  1925. 1758.72 s [aeson] - Data.Aeson.Types.FromJSON.SumFromString
  1926. 1758.72 s [aeson] - Data.Aeson.Types.FromJSON.GFromJSON'
  1927. 1758.72 s [aeson] - Data.Aeson.Types.FromJSON.gParseJSON
  1928. 1758.72 s [aeson] - Data.Aeson.Types.FromJSON.withBoundedScientific
  1929. 1758.72 s [aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
  1930. 1758.72 s [aeson] - Data.Aeson.Types.ToJSON.WriteProduct
  1931. 1758.72 s [aeson] - Data.Aeson.Types.ToJSON.ConsToJSON
  1932. 1758.72 s [aeson] - Data.Aeson.Types.ToJSON.GetConName
  1933. 1758.72 s [aeson] - Data.Aeson.Types.ToJSON.SumToJSON
  1934. 1758.72 s [aeson] - Data.Aeson.Types.ToJSON.gToJSON
  1935. 1759.24 s [aeson] Warning: Data.Aeson: could not find link destinations for:
  1936. 1759.24 s [aeson] - Data.Vector.Vector
  1937. 1759.24 s [aeson] - Data.Vector.Generic.Base.Vector
  1938. 1759.24 s [aeson] - Data.Aeson.Types.Generic.ProductSize
  1939. 1759.24 s [aeson] - Data.Aeson.Types.Generic.AllNullary
  1940. 1759.24 s [aeson] - Data.Vector.Primitive.Vector
  1941. 1759.24 s [aeson] - Data.Vector.Storable.Vector
  1942. 1759.24 s [aeson] - Data.Vector.Unboxed.Base.Vector
  1943. 1759.24 s [aeson] - Data.Aeson.Types.FromJSON.ConstructorNames
  1944. 1759.24 s [aeson] - Data.Aeson.Types.FromJSON.SumFromString
  1945. 1759.24 s [aeson] - Data.Aeson.Types.FromJSON.GFromJSON'
  1946. 1759.24 s [aeson] - Data.Aeson.Types.FromJSON.gParseJSON
  1947. 1759.24 s [aeson] - Data.Aeson.Types.FromJSON.withBoundedScientific
  1948. 1759.24 s [aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
  1949. 1759.24 s [aeson] - Data.Aeson.Types.ToJSON.WriteProduct
  1950. 1759.24 s [aeson] - Data.Aeson.Types.ToJSON.ConsToJSON
  1951. 1759.24 s [aeson] - Data.Aeson.Types.ToJSON.GetConName
  1952. 1759.24 s [aeson] - Data.Aeson.Types.ToJSON.SumToJSON
  1953. 1759.24 s [aeson] - Data.Aeson.Types.ToJSON.gToJSON
  1954. 1759.26 s [aeson] Warning: Data.Aeson.TH: could not find link destinations for:
  1955. 1759.26 s [aeson] - Data.Aeson.TH.ToJSONFun
  1956. 1759.26 s [aeson] - Data.Aeson.TH.JSONFun
  1957. 1759.85 s [lens] [ 5 of 85] Compiling Control.Lens.Internal.List ( src/Control/Lens/Internal/List.hs, dist/build/Control/Lens/Internal/List.o, dist/build/Control/Lens/Internal/List.dyn_o )
  1958. 1759.88 s [lens] [ 6 of 85] Compiling Control.Lens.Internal.Prelude ( src/Control/Lens/Internal/Prelude.hs, dist/build/Control/Lens/Internal/Prelude.o, dist/build/Control/Lens/Internal/Prelude.dyn_o )
  1959. 1759.88 s [lens] [ 7 of 85] Compiling Control.Lens.Internal.Level ( src/Control/Lens/Internal/Level.hs, dist/build/Control/Lens/Internal/Level.o, dist/build/Control/Lens/Internal/Level.dyn_o )
  1960. 1762.30 s [shake] Warning: 'ShakeValue' is out of scope.
  1961. 1762.30 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1962. 1762.35 s [shake] 100% ( 7 / 7) in 'Development.Shake.Classes'
  1963. 1762.51 s [shake] 100% ( 62 / 62) in 'Development.Shake.FilePath'
  1964. 1762.67 s [shake] Warning: 'command' is out of scope.
  1965. 1762.67 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1966. 1762.67 s [shake] Warning: 'cmd' is out of scope.
  1967. 1762.67 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1968. 1762.69 s [shake] Warning: 'ByteString' is out of scope.
  1969. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1970. 1762.69 s [shake] Warning: 'traced' is out of scope.
  1971. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1972. 1762.69 s [shake] Warning: 'interruptProcessGroupOf' is out of scope.
  1973. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1974. 1762.69 s [shake] Warning: 'terminateProcess' is out of scope.
  1975. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1976. 1762.69 s [shake] Warning: 'Stdout' is out of scope.
  1977. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1978. 1762.69 s [shake] Warning: 'Stderr' is out of scope.
  1979. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1980. 1762.69 s [shake] Warning: 'shakeLintInside' is out of scope.
  1981. 1762.69 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1982. 1764.41 s [lens] [ 8 of 85] Compiling Control.Lens.Internal.Indexed ( src/Control/Lens/Internal/Indexed.hs, dist/build/Control/Lens/Internal/Indexed.o, dist/build/Control/Lens/Internal/Indexed.dyn_o )
  1983. 1764.41 s [lens] [ 9 of 85] Compiling Control.Lens.Internal.Getter ( src/Control/Lens/Internal/Getter.hs, dist/build/Control/Lens/Internal/Getter.o, dist/build/Control/Lens/Internal/Getter.dyn_o )
  1984. 1765.06 s [lens] [10 of 85] Compiling Control.Lens.Internal.Fold ( src/Control/Lens/Internal/Fold.hs, dist/build/Control/Lens/Internal/Fold.o, dist/build/Control/Lens/Internal/Fold.dyn_o )
  1985. 1765.51 s [shake] Warning: 'normaliseEx' is out of scope.
  1986. 1765.51 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1987. 1765.94 s [lens] [11 of 85] Compiling Control.Lens.Internal.Context ( src/Control/Lens/Internal/Context.hs, dist/build/Control/Lens/Internal/Context.o, dist/build/Control/Lens/Internal/Context.dyn_o )
  1988. 1766.09 s [shake] Warning: 'needed' is out of scope.
  1989. 1766.09 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1990. 1766.10 s [shake] Warning: 'progressDisplay' is out of scope.
  1991. 1766.10 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1992. 1766.11 s [shake] Warning: 'getShakeOptions' is out of scope.
  1993. 1766.11 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1994. 1766.12 s [shake] Warning: 'stdout' is out of scope.
  1995. 1766.12 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1996. 1766.12 s [shake] Warning: 'stderr' is out of scope.
  1997. 1766.12 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  1998. 1766.13 s [shake] Warning: 'progressSimple' is out of scope.
  1999. 1766.13 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2000. 1766.13 s [shake] Warning: 'addShakeExtra' is out of scope.
  2001. 1766.13 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2002. 1766.13 s [shake] Warning: 'getShakeExtra' is out of scope.
  2003. 1766.13 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2004. 1766.47 s [lens] [12 of 85] Compiling Control.Lens.Internal.Bazaar ( src/Control/Lens/Internal/Bazaar.hs, dist/build/Control/Lens/Internal/Bazaar.o, dist/build/Control/Lens/Internal/Bazaar.dyn_o )
  2005. 1768.82 s [shake] Warning: 'Fence' is out of scope.
  2006. 1768.82 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2007. 1768.96 s [shake] Warning: 'writeChunks' is out of scope.
  2008. 1768.96 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2009. 1769.18 s [shake] Warning: 'addPoolException' is out of scope.
  2010. 1769.18 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2011. 1769.19 s [shake] Warning: 'addPoolResume' is out of scope.
  2012. 1769.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2013. 1769.19 s [shake] Warning: 'addPoolStart' is out of scope.
  2014. 1769.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2015. 1769.19 s [shake] Warning: 'addPoolBatch' is out of scope.
  2016. 1769.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2017. 1770.13 s [shake] Warning: 'Fence' is out of scope.
  2018. 1770.13 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2019. 1770.50 s [lens] [13 of 85] Compiling Control.Lens.Internal.Magma ( src/Control/Lens/Internal/Magma.hs, dist/build/Control/Lens/Internal/Magma.o, dist/build/Control/Lens/Internal/Magma.dyn_o )
  2020. 1770.73 s [pointed] Documentation created: dist/doc/html/pointed/index.html,
  2021. 1770.73 s [pointed] dist/doc/html/pointed/pointed.txt
  2022. 1770.85 s [shake] Warning: 'addUserRule' is out of scope.
  2023. 1770.85 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2024. 1770.85 s [shake] Warning: 'action' is out of scope.
  2025. 1770.85 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2026. 1770.86 s [shake] Warning: 'need' is out of scope.
  2027. 1770.86 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2028. 1770.90 s [shake] Warning: 'Rules' is out of scope.
  2029. 1770.90 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2030. 1770.90 s [shake] Warning: 'priority' is out of scope.
  2031. 1770.90 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2032. 1770.90 s [shake] Warning: 'alternatives' is out of scope.
  2033. 1770.90 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2034. 1770.90 s [shake] Warning: 'versioned' is out of scope.
  2035. 1770.90 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2036. 1770.90 s [shake] Warning: 'lintTrackRead' is out of scope.
  2037. 1770.90 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2038. 1770.90 s [shake] Warning: 'lintTrackWrite' is out of scope.
  2039. 1770.90 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2040. 1770.95 s [pointed] Phase: installPhase
  2041. 1771.30 s [pointed] Installing library in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  2042. 1771.52 s [shake] Warning: 'writeFile'' is out of scope.
  2043. 1771.52 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2044. 1772.00 s [pointed] Phase: fixupPhase
  2045. 1772.04 s [pointed] shrinking RPATHs of ELF executables and libraries in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
  2046. 1772.04 s [pointed] shrinking /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/libHSpointed-5.0.5-6CXikc4wKMtyNLMsfbrF4-ghc9.6.3.so
  2047. 1772.07 s [pointed] checking for references to /build/ in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5...
  2048. 1772.09 s [pointed] patching script interpreter paths in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
  2049. 1772.11 s [pointed] stripping (with command strip and flags -S -p) in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib
  2050. 1772.15 s [shake] Warning: 'need' is out of scope.
  2051. 1772.15 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2052. 1772.18 s [shake] Warning: 'alwaysRerun' is out of scope.
  2053. 1772.18 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2054. 1772.18 s [shake] Warning: 'produces' is out of scope.
  2055. 1772.18 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2056. 1772.18 s [shake] Warning: 'orderOnly' is out of scope.
  2057. 1772.18 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2058. 1772.19 s [shake] Warning: 'withResource' is out of scope.
  2059. 1772.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2060. 1772.19 s [shake] Warning: 'cmd' is out of scope.
  2061. 1772.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2062. 1772.19 s [shake] Warning: 'command' is out of scope.
  2063. 1772.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2064. 1772.19 s [shake] Warning: 'apply' is out of scope.
  2065. 1772.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2066. 1772.19 s [shake] Warning: '-<.>' is out of scope.
  2067. 1772.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2068. 1772.19 s [shake] Warning: '%>' is out of scope.
  2069. 1772.19 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2070. 1772.22 s [pointed] shrinking RPATHs of ELF executables and libraries in /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc
  2071. 1772.23 s [pointed] checking for references to /build/ in /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc...
  2072. 1772.25 s [pointed] patching script interpreter paths in /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc
  2073. 1772.54 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
  2074. 1773.87 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2075. 1774.01 s [post-build-hook] Uploading to the NixCI cache: /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
  2076. 1774.18 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2077. 1774.37 s [post-build-hook] copying 1 paths...
  2078. 1774.38 s [post-build-hook] copying path '/nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5' to 'https://cache.nix-ci.com'...
  2079. 1775.70 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2080. 1776.43 s [post-build-hook] copying 0 paths...
  2081. 1776.43 s Progress: 102 of 177 built (6 building), 373 of 373 downloaded from cache
  2082. 1776.43 s Building vector-instances
  2083. 1776.43 s [lens] [14 of 85] Compiling Control.Lens.Internal.Prism ( src/Control/Lens/Internal/Prism.hs, dist/build/Control/Lens/Internal/Prism.o, dist/build/Control/Lens/Internal/Prism.dyn_o )
  2084. 1776.43 s [lens] [15 of 85] Compiling Control.Lens.Internal.Profunctor ( src/Control/Lens/Internal/Profunctor.hs, dist/build/Control/Lens/Internal/Profunctor.o, dist/build/Control/Lens/Internal/Profunctor.dyn_o )
  2085. 1776.43 s [lens] [16 of 85] Compiling Control.Lens.Internal.Review ( src/Control/Lens/Internal/Review.hs, dist/build/Control/Lens/Internal/Review.o, dist/build/Control/Lens/Internal/Review.dyn_o )
  2086. 1776.43 s [lens] [17 of 85] Compiling Control.Lens.Internal.Setter ( src/Control/Lens/Internal/Setter.hs, dist/build/Control/Lens/Internal/Setter.o, dist/build/Control/Lens/Internal/Setter.dyn_o )
  2087. 1776.43 s [lens] [18 of 85] Compiling Control.Lens.Internal.Zoom ( src/Control/Lens/Internal/Zoom.hs, dist/build/Control/Lens/Internal/Zoom.o, dist/build/Control/Lens/Internal/Zoom.dyn_o )
  2088. 1776.43 s [lens] [19 of 85] Compiling Control.Lens.Internal ( src/Control/Lens/Internal.hs, dist/build/Control/Lens/Internal.o, dist/build/Control/Lens/Internal.dyn_o )
  2089. 1776.43 s [lens] [20 of 85] Compiling Control.Lens.Type ( src/Control/Lens/Type.hs, dist/build/Control/Lens/Type.o, dist/build/Control/Lens/Type.dyn_o )
  2090. 1776.43 s [lens] [21 of 85] Compiling Control.Lens.Setter ( src/Control/Lens/Setter.hs, dist/build/Control/Lens/Setter.o, dist/build/Control/Lens/Setter.dyn_o )
  2091. 1776.43 s [lens] [22 of 85] Compiling Control.Lens.Lens ( src/Control/Lens/Lens.hs, dist/build/Control/Lens/Lens.o, dist/build/Control/Lens/Lens.dyn_o )
  2092. 1776.43 s [lens] [23 of 85] Compiling Control.Lens.Tuple ( src/Control/Lens/Tuple.hs, dist/build/Control/Lens/Tuple.o, dist/build/Control/Lens/Tuple.dyn_o )
  2093. 1776.43 s [shake] Warning: 'need' is out of scope.
  2094. 1776.43 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2095. 1776.43 s [shake] Warning: 'produces' is out of scope.
  2096. 1776.43 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2097. 1776.43 s [shake] Warning: 'need' is out of scope.
  2098. 1776.43 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2099. 1776.43 s [shake] Warning: 'ByteString' is out of scope.
  2100. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2101. 1776.44 s [shake] 100% ( 38 / 38) in 'Development.Shake.Rule'
  2102. 1776.44 s [shake] Warning: 'newCache' is out of scope.
  2103. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2104. 1776.44 s [shake] Warning: 'getDirectoryFiles' is out of scope.
  2105. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2106. 1776.44 s [shake] Warning: 'getEnv' is out of scope.
  2107. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2108. 1776.44 s [shake] Warning: 'cmd_' is out of scope.
  2109. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2110. 1776.44 s [shake] Warning: 'neededMakefileDependencies' is out of scope.
  2111. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2112. 1776.44 s [shake] Warning: 'needMakefileDependencies' is out of scope.
  2113. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2114. 1776.44 s [shake] Warning: 'shakeArgs' is out of scope.
  2115. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2116. 1776.44 s [shake] Warning: 'dropExtension' is out of scope.
  2117. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2118. 1776.44 s [shake] Warning: 'ByteString' is out of scope.
  2119. 1776.44 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2120. 1776.44 s [shake] 100% ( 24 / 24) in 'Development.Shake.Command'
  2121. 1776.50 s [vector-instances] Phase: setupCompilerEnvironmentPhase
  2122. 1776.51 s [vector-instances] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
  2123. 1777.16 s [vector-instances] Phase: unpackPhase
  2124. 1777.17 s [vector-instances] unpacking source archive /nix/store/nqfgw14d48gylm57fvgdbpjxc79yrsqj-vector-instances-3.4.2.tar.gz
  2125. 1777.19 s [vector-instances] source root is vector-instances-3.4.2
  2126. 1777.20 s [vector-instances] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "vector-instances-3.4.2/.vim.custom"
  2127. 1777.20 s [vector-instances] Phase: patchPhase
  2128. 1777.21 s [shake] Warning: 'lookupEnv' is out of scope.
  2129. 1777.21 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2130. 1777.21 s [shake] Warning: 'cmd' is out of scope.
  2131. 1777.21 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2132. 1777.22 s [vector-instances] Phase: compileBuildDriverPhase
  2133. 1777.23 s [shake] Warning: 'phony' is out of scope.
  2134. 1777.23 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2135. 1777.23 s [vector-instances] setupCompileFlags: -package-db=/build/tmp.vwfwQtcM7Q/setup-package.conf.d -threaded
  2136. 1777.23 s [shake] Warning: 'shakeFiles' is out of scope.
  2137. 1777.23 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2138. 1777.42 s [vector-instances] [1 of 2] Compiling Main ( Setup.lhs, /build/tmp.vwfwQtcM7Q/Main.o )
  2139. 1777.61 s [vector-instances] [2 of 2] Linking Setup
  2140. 1779.76 s [shake] 100% ( 10 / 10) in 'Development.Shake.Database'
  2141. 1780.15 s [shake] Warning: 'cmd' is out of scope.
  2142. 1780.15 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2143. 1780.71 s [shake] Warning: 'Binary' is out of scope.
  2144. 1780.71 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2145. 1780.73 s [shake] Warning: 'Hashable' is out of scope.
  2146. 1780.73 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2147. 1780.73 s [shake] Warning: 'NFData' is out of scope.
  2148. 1780.73 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2149. 1780.73 s [shake] 100% (173 /173) in 'Development.Shake'
  2150. 1780.80 s [shake] 100% ( 7 / 7) in 'Development.Shake.Util'
  2151. 1780.94 s [shake] 100% ( 8 / 8) in 'Development.Shake.Forward'
  2152. 1781.12 s [shake] Warning: '-<.>' is out of scope.
  2153. 1781.12 s [shake] If you qualify the identifier, haddock can try to link it anyway.
  2154. 1781.12 s [shake] 100% ( 7 / 7) in 'Development.Shake.Config'
  2155. 1781.22 s [vector-instances] Phase: updateAutotoolsGnuConfigScriptsPhase
  2156. 1781.25 s [vector-instances] Phase: configurePhase
  2157. 1781.26 s [vector-instances] configureFlags: --verbose --prefix=/nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/fb379avd5rc2i8g8c8znn0mwqq71h8h7-vector-instances-3.4.2-doc/share/doc/vector-instances-3.4.2 --with-gcc=gcc --package-db=/build/tmp.vwfwQtcM7Q/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/vj3rmg6937p9icir6bazbdcb4xdnrg9j-ncurses-6.5/lib --extra-lib-dirs=/nix/store/0aaj6jbxclpwvrphggqz4vf5hg8360fr-libffi-3.4.8/lib --extra-lib-dirs=/nix/store/vaix9m2syrilm7hv3690plsk35y0arwm-elfutils-0.192/lib --extra-lib-dirs=/nix/store/m9fycbkaairz8kampnsl7sx1aanvl0db-gmp-with-cxx-6.3.0/lib
  2158. 1781.28 s [vector-instances] Using Parsec parser
  2159. 1781.28 s [vector-instances] Configuring vector-instances-3.4.2...
  2160. 1782.50 s [shake] Warning: Development.Shake.Classes: could not find link destinations for:
  2161. 1782.50 s [shake] - System.FilePattern.Core.Pattern
  2162. 1782.50 s [shake] - System.FilePattern.Core.Path
  2163. 1782.50 s [shake] - System.Random.GFinite.Cardinality
  2164. 1782.50 s [shake] - Data.List.Extra.RB
  2165. 1782.50 s [shake] - System.Time.Extra.Timeout
  2166. 1782.50 s [shake] - Data.Heap.Forest
  2167. 1782.50 s [shake] - Data.Heap.Tree
  2168. 1782.50 s [shake] - System.FilePattern.Step.Pat
  2169. 1782.76 s [shake] Warning: Development.Shake.Command: could not find link destinations for:
  2170. 1782.77 s [shake] - Development.Shake.Command.cmdResult
  2171. 1782.77 s [shake] - Development.Shake.Command.Unit
  2172. 1782.77 s [shake] - Development.Shake.Command.cmdString
  2173. 1782.77 s [shake] - Development.Shake.Command.Result
  2174. 1782.77 s [shake] - Development.Shake.Command.Str
  2175. 1782.85 s [vector-instances] Flags chosen: hashable=True
  2176. 1782.85 s [vector-instances] Dependency base >=4.9 && <5: using base-4.18.1.0
  2177. 1782.85 s [vector-instances] Dependency comonad >=3: using comonad-5.0.9
  2178. 1782.85 s [vector-instances] Dependency hashable >=1.2.5.0: using hashable-1.4.7.0
  2179. 1782.85 s [vector-instances] Dependency keys >=3: using keys-3.12.4
  2180. 1782.85 s [vector-instances] Dependency pointed >=3: using pointed-5.0.5
  2181. 1782.85 s [vector-instances] Dependency semigroupoids >=3: using semigroupoids-6.0.1
  2182. 1782.85 s [vector-instances] Dependency vector >=0.12 && <0.14: using vector-0.13.2.0
  2183. 1782.95 s [shake] Warning: Development.Shake: could not find link destinations for:
  2184. 1782.95 s [shake] - General.Extra.Located
  2185. 1782.95 s [shake] - Development.Shake.Internal.Options.Hidden
  2186. 1782.95 s [shake] - Development.Shake.Command.cmdResult
  2187. 1782.95 s [shake] - Development.Shake.Command.Unit
  2188. 1782.95 s [shake] - Development.Shake.Command.cmdString
  2189. 1782.95 s [shake] - Development.Shake.Command.Result
  2190. 1782.95 s [shake] - Development.Shake.Command.Str
  2191. 1783.94 s [vector-instances] Source component graph: component lib
  2192. 1783.94 s [vector-instances] Configured component graph:
  2193. 1783.94 s [vector-instances] component vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
  2194. 1783.94 s [vector-instances] include base-4.18.1.0
  2195. 1783.94 s [vector-instances] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  2196. 1783.94 s [vector-instances] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  2197. 1783.94 s [vector-instances] include keys-3.12.4-7TfTjMqPI8yFOyhlMyd9Q
  2198. 1783.94 s [vector-instances] include pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  2199. 1783.94 s [vector-instances] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  2200. 1783.94 s [vector-instances] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
  2201. 1783.94 s [vector-instances] Linked component graph:
  2202. 1783.94 s [vector-instances] unit vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
  2203. 1783.94 s [vector-instances] include base-4.18.1.0
  2204. 1783.94 s [vector-instances] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  2205. 1783.94 s [vector-instances] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  2206. 1783.94 s [vector-instances] include keys-3.12.4-7TfTjMqPI8yFOyhlMyd9Q
  2207. 1783.94 s [vector-instances] include pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  2208. 1783.94 s [vector-instances] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  2209. 1783.94 s [vector-instances] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
  2210. 1783.94 s [vector-instances] Data.Vector.Instances=vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR:Data.Vector.Instances
  2211. 1783.94 s [vector-instances] Ready component graph:
  2212. 1783.94 s [vector-instances] definite vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
  2213. 1783.94 s [vector-instances] depends base-4.18.1.0
  2214. 1783.94 s [vector-instances] depends comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
  2215. 1783.94 s [vector-instances] depends hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
  2216. 1783.94 s [vector-instances] depends keys-3.12.4-7TfTjMqPI8yFOyhlMyd9Q
  2217. 1783.94 s [vector-instances] depends pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
  2218. 1783.94 s [vector-instances] depends semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
  2219. 1783.94 s [vector-instances] depends vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
  2220. 1783.94 s [vector-instances] Using Cabal-3.10.1.0 compiled by ghc-9.6
  2221. 1783.94 s [vector-instances] Using compiler: ghc-9.6.3
  2222. 1783.94 s [vector-instances] Using install prefix:
  2223. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2
  2224. 1783.94 s [vector-instances] Executables installed in:
  2225. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/bin
  2226. 1783.94 s [vector-instances] Libraries installed in:
  2227. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
  2228. 1783.94 s [vector-instances] Dynamic Libraries installed in:
  2229. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3
  2230. 1783.94 s [vector-instances] Private executables installed in:
  2231. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/libexec/x86_64-linux-ghc-9.6.3/vector-instances-3.4.2
  2232. 1783.94 s [vector-instances] Data files installed in:
  2233. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/share/x86_64-linux-ghc-9.6.3/vector-instances-3.4.2
  2234. 1783.94 s [vector-instances] Documentation installed in:
  2235. 1783.94 s [vector-instances] /nix/store/fb379avd5rc2i8g8c8znn0mwqq71h8h7-vector-instances-3.4.2-doc/share/doc/vector-instances-3.4.2
  2236. 1783.94 s [vector-instances] Configuration files installed in:
  2237. 1783.94 s [vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/etc
  2238. 1783.94 s [vector-instances] No alex found
  2239. 1783.94 s [vector-instances] Using ar found on system at:
  2240. 1783.94 s [vector-instances] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
  2241. 1783.94 s [vector-instances] No c2hs found
  2242. 1783.94 s [vector-instances] No cpphs found
  2243. 1783.94 s [vector-instances] No doctest found
  2244. 1783.94 s [vector-instances] Using gcc version 14.3.0 given by user at:
  2245. 1783.94 s [vector-instances] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
  2246. 1783.94 s [vector-instances] Using ghc version 9.6.3 found on system at:
  2247. 1783.94 s [vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
  2248. 1783.94 s [vector-instances] Using ghc-pkg version 9.6.3 found on system at:
  2249. 1783.94 s [vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
  2250. 1783.94 s [vector-instances] No ghcjs found
  2251. 1783.94 s [vector-instances] No ghcjs-pkg found
  2252. 1783.94 s [vector-instances] No greencard found
  2253. 1783.94 s [vector-instances] Using haddock version 2.29.1 found on system at:
  2254. 1783.94 s [vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
  2255. 1783.94 s [vector-instances] No happy found
  2256. 1783.94 s [vector-instances] Using haskell-suite found on system at: haskell-suite-dummy-location
  2257. 1783.94 s [vector-instances] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  2258. 1783.94 s [vector-instances] No hmake found
  2259. 1783.94 s [vector-instances] Using hpc version 0.68 found on system at:
  2260. 1783.94 s [vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
  2261. 1783.94 s [vector-instances] Using hsc2hs version 0.68.9 found on system at:
  2262. 1783.94 s [vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
  2263. 1783.94 s [vector-instances] Using hscolour version 1.25 found on system at:
  2264. 1783.94 s [vector-instances] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
  2265. 1783.94 s [vector-instances] No jhc found
  2266. 1783.94 s [vector-instances] Using ld found on system at:
  2267. 1783.94 s [vector-instances] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
  2268. 1783.94 s [vector-instances] No pkg-config found
  2269. 1783.94 s [vector-instances] Using runghc version 9.6.3 found on system at:
  2270. 1783.94 s [vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
  2271. 1783.94 s [vector-instances] Using strip version 2.44 found on system at:
  2272. 1783.94 s [vector-instances] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
  2273. 1783.94 s [vector-instances] Using tar found on system at:
  2274. 1783.94 s [vector-instances] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
  2275. 1783.94 s [vector-instances] No uhc found
  2276. 1784.35 s [vector-instances] Phase: buildPhase
  2277. 1784.55 s [vector-instances] Preprocessing library for vector-instances-3.4.2..
  2278. 1784.55 s [vector-instances] Building library for vector-instances-3.4.2..
  2279. 1785.18 s [vector-instances] [1 of 1] Compiling Data.Vector.Instances ( src/Data/Vector/Instances.hs, dist/build/Data/Vector/Instances.o, dist/build/Data/Vector/Instances.dyn_o )
  2280. 1787.88 s [lens] [24 of 85] Compiling Control.Lens.Getter ( src/Control/Lens/Getter.hs, dist/build/Control/Lens/Getter.o, dist/build/Control/Lens/Getter.dyn_o )
  2281. 1787.91 s [lens] [25 of 85] Compiling Control.Lens.Review ( src/Control/Lens/Review.hs, dist/build/Control/Lens/Review.o, dist/build/Control/Lens/Review.dyn_o )
  2282. 1787.91 s [lens] [26 of 85] Compiling Control.Lens.Prism ( src/Control/Lens/Prism.hs, dist/build/Control/Lens/Prism.o, dist/build/Control/Lens/Prism.dyn_o )
  2283. 1787.91 s [lens] [27 of 85] Compiling Control.Lens.Fold ( src/Control/Lens/Fold.hs, dist/build/Control/Lens/Fold.o, dist/build/Control/Lens/Fold.dyn_o )
  2284. 1787.91 s [lens] [28 of 85] Compiling Control.Lens.Traversal ( src/Control/Lens/Traversal.hs, dist/build/Control/Lens/Traversal.o, dist/build/Control/Lens/Traversal.dyn_o )
  2285. 1787.91 s [lens] [29 of 85] Compiling Control.Lens.Level ( src/Control/Lens/Level.hs, dist/build/Control/Lens/Level.o, dist/build/Control/Lens/Level.dyn_o )
  2286. 1787.91 s [lens] [30 of 85] Compiling Control.Lens.Reified ( src/Control/Lens/Reified.hs, dist/build/Control/Lens/Reified.o, dist/build/Control/Lens/Reified.dyn_o )
  2287. 1788.90 s [lens] [31 of 85] Compiling Control.Lens.Internal.Exception ( src/Control/Lens/Internal/Exception.hs, dist/build/Control/Lens/Internal/Exception.o, dist/build/Control/Lens/Internal/Exception.dyn_o )
  2288. 1788.90 s [lens] [32 of 85] Compiling Control.Lens.Indexed ( src/Control/Lens/Indexed.hs, dist/build/Control/Lens/Indexed.o, dist/build/Control/Lens/Indexed.dyn_o )
  2289. 1788.90 s [lens] [33 of 85] Compiling Control.Lens.Internal.ByteString ( src/Control/Lens/Internal/ByteString.hs, dist/build/Control/Lens/Internal/ByteString.o, dist/build/Control/Lens/Internal/ByteString.dyn_o )
  2290. 1788.90 s [lens] [34 of 85] Compiling Control.Lens.Equality ( src/Control/Lens/Equality.hs, dist/build/Control/Lens/Equality.o, dist/build/Control/Lens/Equality.dyn_o )
  2291. 1788.90 s [lens] [35 of 85] Compiling Control.Lens.Iso ( src/Control/Lens/Iso.hs, dist/build/Control/Lens/Iso.o, dist/build/Control/Lens/Iso.dyn_o )
  2292. 1788.90 s [lens] [36 of 85] Compiling Control.Lens.Empty ( src/Control/Lens/Empty.hs, dist/build/Control/Lens/Empty.o, dist/build/Control/Lens/Empty.dyn_o )
  2293. 1788.90 s [lens] [37 of 85] Compiling Control.Lens.Cons ( src/Control/Lens/Cons.hs, dist/build/Control/Lens/Cons.o, dist/build/Control/Lens/Cons.dyn_o )
  2294. 1788.95 s [cassava] [2 of 2] Linking dist/build/unit-tests/unit-tests
  2295. 1789.63 s [aeson] Documentation created: dist/doc/html/aeson/index.html,
  2296. 1789.63 s [aeson] dist/doc/html/aeson/aeson.txt
  2297. 1789.87 s [aeson] haddockPhase completed in 1 minutes 2 seconds
  2298. 1789.87 s [aeson] Phase: installPhase
  2299. 1790.19 s [aeson] Installing library in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/aeson-2.2.3.0-DZHt59qlakc7HOREJnMUtZ
  2300. 1790.96 s [vector-instances] [1 of 1] Compiling Data.Vector.Instances ( src/Data/Vector/Instances.hs, dist/build/Data/Vector/Instances.p_o )
  2301. 1791.40 s [cassava] buildPhase completed in 2 minutes 4 seconds
  2302. 1791.40 s [cassava] Phase: checkPhase
  2303. 1791.54 s [cassava] Running 1 test suites...
  2304. 1791.54 s [cassava] Test suite unit-tests: RUNNING...
  2305. 1791.77 s [cassava] positional:
  2306. 1791.77 s [cassava] encode:
  2307. 1791.77 s [cassava] simple: [OK]
  2308. 1791.77 s [cassava] quoted: [OK]
  2309. 1791.77 s [cassava] quote: [OK]
  2310. 1791.77 s [cassava] quotedQuote: [OK]
  2311. 1791.77 s [cassava] leadingSpace: [OK]
  2312. 1791.77 s [cassava] comma: [OK]
  2313. 1791.77 s [cassava] twoFields: [OK]
  2314. 1791.77 s [cassava] twoRecords: [OK]
  2315. 1791.77 s [cassava] newline: [OK]
  2316. 1791.77 s [cassava] encode:
  2317. 1791.77 s [cassava] simple: [OK]
  2318. 1791.77 s [cassava] quoted: [OK]
  2319. 1791.77 s [cassava] quote: [OK]
  2320. 1791.77 s [cassava] quotedQuote: [OK]
  2321. 1791.77 s [cassava] leadingSpace: [OK]
  2322. 1791.77 s [cassava] comma: [OK]
  2323. 1791.77 s [cassava] twoFields: [OK]
  2324. 1791.77 s [cassava] twoRecords: [OK]
  2325. 1791.77 s [cassava] newline: [OK]
  2326. 1791.77 s [cassava] encode:
  2327. 1791.77 s [cassava] simple: [OK]
  2328. 1791.77 s [cassava] quoted: [OK]
  2329. 1791.77 s [cassava] quote: [OK]
  2330. 1791.77 s [cassava] quotedQuote: [OK]
  2331. 1791.77 s [cassava] leadingSpace: [OK]
  2332. 1791.77 s [cassava] comma: [OK]
  2333. 1791.77 s [cassava] twoFields: [OK]
  2334. 1791.77 s [cassava] twoRecords: [OK]
  2335. 1791.77 s [cassava] newline: [OK]
  2336. 1791.77 s [cassava] encodeWith:
  2337. 1791.77 s [cassava] tab-delim: [OK]
  2338. 1791.77 s [cassava] newline: [OK]
  2339. 1791.77 s [cassava] decode:
  2340. 1791.77 s [cassava] simple: [OK]
  2341. 1791.77 s [cassava] crlf: [OK]
  2342. 1791.77 s [cassava] noEol: [OK]
  2343. 1791.77 s [cassava] blankLine: [OK]
  2344. 1791.77 s [cassava] leadingSpace: [OK]
  2345. 1791.77 s [cassava] rfc4180: [OK]
  2346. 1791.77 s [cassava] escapedDoubleQuotes: [OK]
  2347. 1791.77 s [cassava] decodeWith:
  2348. 1791.77 s [cassava] tab-delim: [OK]
  2349. 1791.77 s [cassava] streaming:
  2350. 1791.77 s [cassava] decode:
  2351. 1791.77 s [cassava] simple: [OK]
  2352. 1791.77 s [cassava] crlf: [OK]
  2353. 1791.77 s [cassava] noEol: [OK]
  2354. 1791.77 s [cassava] blankLine: [OK]
  2355. 1791.77 s [cassava] leadingSpace: [OK]
  2356. 1791.77 s [cassava] rfc4180: [OK]
  2357. 1791.77 s [cassava] escapedDoubleQuotes: [OK]
  2358. 1791.77 s [cassava] decodeWith:
  2359. 1791.77 s [cassava] tab-delim: [OK]
  2360. 1791.77 s [cassava] failing:
  2361. 1791.77 s [cassava] escapedMalformed0: [OK]
  2362. 1791.77 s [cassava] named:
  2363. 1791.77 s [cassava] encode:
  2364. 1791.77 s [cassava] simple: [OK]
  2365. 1791.77 s [cassava] twoFields: [OK]
  2366. 1791.77 s [cassava] twoRecords: [OK]
  2367. 1791.77 s [cassava] encodeWith:
  2368. 1791.77 s [cassava] no header: [OK]
  2369. 1791.77 s [cassava] decode:
  2370. 1791.77 s [cassava] simple: [OK]
  2371. 1791.77 s [cassava] twoFields: [OK]
  2372. 1791.77 s [cassava] twoRecords: [OK]
  2373. 1791.77 s [cassava] cr header: [OK]
  2374. 1791.77 s [cassava] cr trailing: [OK]
  2375. 1791.77 s [cassava] cr separator: [OK]
  2376. 1791.77 s [cassava] streaming:
  2377. 1791.77 s [cassava] decode:
  2378. 1791.77 s [cassava] simple: [OK]
  2379. 1791.77 s [cassava] twoFields: [OK]
  2380. 1791.77 s [cassava] twoRecords: [OK]
  2381. 1791.77 s [cassava] cr header: [OK]
  2382. 1791.77 s [cassava] cr trailing: [OK]
  2383. 1791.77 s [cassava] cr separator: [OK]
  2384. 1791.77 s [cassava] conversion:
  2385. 1791.77 s [cassava] roundTrip:
  2386. 1791.77 s [cassava] Char: [OK, passed 100 tests]
  2387. 1791.77 s [cassava] ByteString: [OK, passed 100 tests]
  2388. 1791.77 s [cassava] Int: [OK, passed 100 tests]
  2389. 1791.77 s [cassava] Integer: [OK, passed 100 tests]
  2390. 1791.77 s [cassava] Int8: [OK, passed 100 tests]
  2391. 1791.77 s [cassava] Int16: [OK, passed 100 tests]
  2392. 1791.77 s [cassava] Int32: [OK, passed 100 tests]
  2393. 1791.77 s [cassava] Int64: [OK, passed 100 tests]
  2394. 1791.77 s [cassava] Natural: [OK, passed 100 tests]
  2395. 1791.77 s [cassava] Word: [OK, passed 100 tests]
  2396. 1791.77 s [cassava] Word8: [OK, passed 100 tests]
  2397. 1791.77 s [cassava] Word16: [OK, passed 100 tests]
  2398. 1791.77 s [cassava] Word32: [OK, passed 100 tests]
  2399. 1791.77 s [cassava] Word64: [OK, passed 100 tests]
  2400. 1791.77 s [cassava] Scientific: [OK, passed 100 tests]
  2401. 1791.77 s [cassava] lazy ByteString: [OK, passed 100 tests]
  2402. 1791.77 s [cassava] Text: [OK, passed 100 tests]
  2403. 1791.77 s [cassava] lazy Text: [OK, passed 100 tests]
  2404. 1791.77 s [cassava] Const Char: [OK, passed 100 tests]
  2405. 1791.77 s [cassava] boundary:
  2406. 1791.77 s [cassava] Int: [OK, passed 1 tests]
  2407. 1791.77 s [cassava] Int8: [OK, passed 1 tests]
  2408. 1791.77 s [cassava] Int16: [OK, passed 1 tests]
  2409. 1791.77 s [cassava] Int32: [OK, passed 1 tests]
  2410. 1791.77 s [cassava] Int64: [OK, passed 1 tests]
  2411. 1791.77 s [cassava] Word: [OK, passed 1 tests]
  2412. 1791.77 s [cassava] Word8: [OK, passed 1 tests]
  2413. 1791.77 s [cassava] Word16: [OK, passed 1 tests]
  2414. 1791.77 s [cassava] Word32: [OK, passed 1 tests]
  2415. 1791.77 s [cassava] Word64: [OK, passed 1 tests]
  2416. 1791.77 s [cassava] Unicode:
  2417. 1791.77 s [cassava] Chinese: [OK]
  2418. 1791.77 s [cassava] Icelandic: [OK]
  2419. 1791.77 s [cassava] Turkish: [OK]
  2420. 1791.77 s [cassava] Partial Decodes:
  2421. 1791.77 s [cassava] Int: [OK]
  2422. 1791.77 s [cassava] Natural: [OK]
  2423. 1791.77 s [cassava] Word: [OK]
  2424. 1791.77 s [cassava] Scientific: [OK]
  2425. 1791.77 s [cassava] Double: [OK]
  2426. 1791.77 s [cassava] Integer: [OK]
  2427. 1791.77 s [cassava] Space trimming:
  2428. 1791.77 s [cassava] _Int: [OK]
  2429. 1791.77 s [cassava] Int_: [OK]
  2430. 1791.77 s [cassava] _Int_: [OK]
  2431. 1791.77 s [cassava] _Natural: [OK]
  2432. 1791.77 s [cassava] Natural_: [OK]
  2433. 1791.77 s [cassava] _Natural_: [OK]
  2434. 1791.77 s [cassava] _Word: [OK]
  2435. 1791.77 s [cassava] Word_: [OK]
  2436. 1791.77 s [cassava] _Word_: [OK]
  2437. 1791.77 s [cassava] _Scientific: [OK]
  2438. 1791.77 s [cassava] Scientific_: [OK]
  2439. 1791.77 s [cassava] _Scientific_: [OK]
  2440. 1791.77 s [cassava] _Double: [OK]
  2441. 1791.77 s [cassava] Double_: [OK]
  2442. 1791.77 s [cassava] _Double_: [OK]
  2443. 1791.77 s [cassava] custom-options:
  2444. 1791.77 s [cassava] customDelim: [OK, passed 100 tests]
  2445. 1791.77 s [cassava] instances:
  2446. 1791.77 s [cassava] Records instances:
  2447. 1791.77 s [cassava] foldr Foldable: [OK]
  2448. 1791.77 s [cassava] foldl' Foldable: [OK]
  2449. 1791.77 s [cassava] generic-conversions:
  2450. 1791.77 s [cassava] headerOrder: [OK]
  2451. 1791.77 s [cassava] encode: [OK]
  2452. 1791.77 s [cassava] decode: [OK]
  2453. 1791.77 s [cassava] roundTrip: [OK, passed 100 tests]
  2454. 1791.77 s [cassava]
  2455. 1791.77 s [cassava] Properties Test Cases Total
  2456. 1791.78 s [cassava] Passed 31 91 122
  2457. 1791.78 s [cassava] Failed 0 0 0
  2458. 1791.78 s [cassava] Total 31 91 122
  2459. 1791.78 s [cassava] Test suite unit-tests: PASS
  2460. 1791.78 s [cassava] Test suite logged to: dist/test/cassava-0.5.3.2-unit-tests.log
  2461. 1791.78 s [cassava] 1 of 1 test suites (1 of 1 test cases) passed.
  2462. 1791.80 s [cassava] Phase: haddockPhase
  2463. 1792.30 s [cassava] Preprocessing library for cassava-0.5.3.2..
  2464. 1792.31 s [cassava] Running Haddock on library for cassava-0.5.3.2..
  2465. 1792.31 s [cassava] Warning: The documentation for the following packages are not installed. No
  2466. 1792.31 s [cassava] links will be generated to these packages: attoparsec-0.14.4,
  2467. 1792.31 s [cassava] attoparsec-0.14.4, vector-0.13.2.0
  2468. 1792.58 s [cassava] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
  2469. 1792.73 s [lens] [38 of 85] Compiling Control.Lens.Internal.Deque ( src/Control/Lens/Internal/Deque.hs, dist/build/Control/Lens/Internal/Deque.o, dist/build/Control/Lens/Internal/Deque.dyn_o )
  2470. 1794.21 s [cassava] Warning: 'liftM2' is out of scope.
  2471. 1794.21 s [cassava] If you qualify the identifier, haddock can try to link it anyway.
  2472. 1794.44 s [cassava] Warning: 'sepBy1'' is out of scope.
  2473. 1794.50 s [cassava] If you qualify the identifier, haddock can try to link it anyway.
  2474. 1794.50 s [cassava] 100% ( 9 / 9) in 'Data.Csv.Parser'
  2475. 1794.61 s [aeson] Phase: fixupPhase
  2476. 1794.69 s [aeson] shrinking RPATHs of ELF executables and libraries in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0
  2477. 1794.70 s [aeson] shrinking /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3/libHSaeson-2.2.3.0-DZHt59qlakc7HOREJnMUtZ-ghc9.6.3.so
  2478. 1794.79 s [aeson] checking for references to /build/ in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0...
  2479. 1794.92 s [aeson] patching script interpreter paths in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0
  2480. 1794.95 s [aeson] stripping (with command strip and flags -S -p) in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0/lib
  2481. 1796.09 s [cassava] Warning: 'toNamedRecord' is ambiguous. It is defined
  2482. 1796.09 s [cassava] * at src/Data/Csv/Types.hs:46:1
  2483. 1796.09 s [cassava] * at src/Data/Csv/Conversion.hs:633:5
  2484. 1796.09 s [cassava] You may be able to disambiguate the identifier by qualifying it or
  2485. 1796.09 s [cassava] by specifying the type/value namespace explicitly.
  2486. 1796.09 s [cassava] Defaulting to the one defined at src/Data/Csv/Conversion.hs:631:1
  2487. 1796.09 s [cassava] Warning: 'rational' is out of scope.
  2488. 1796.09 s [cassava] If you qualify the identifier, haddock can try to link it anyway.
  2489. 1797.33 s [aeson] shrinking RPATHs of ELF executables and libraries in /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc
  2490. 1797.36 s [aeson] checking for references to /build/ in /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc...
  2491. 1797.42 s [aeson] patching script interpreter paths in /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc
  2492. 1798.11 s [post-build-hook] Uploading to cachix cache "sellout": /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0 /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc
  2493. 1799.14 s [post-build-hook] Nothing to push - all store paths are already on Cachix.
  2494. 1799.19 s [post-build-hook] Uploading to the NixCI cache: /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0 /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc
  2495. 1799.51 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2496. 1799.77 s [post-build-hook] copying 9 paths...
  2497. 1799.79 s [post-build-hook] copying path '/nix/store/f2f0rv4m91qfdg1jyjsi8gb2kr62acqq-th-compat-0.1.6-doc' to 'https://cache.nix-ci.com'...
  2498. 1799.79 s [post-build-hook] copying path '/nix/store/i5ybxrwsh2pmlp6xjjv8j0ym60sy14z6-character-ps-0.1-doc' to 'https://cache.nix-ci.com'...
  2499. 1799.79 s [post-build-hook] copying path '/nix/store/wpx69sgwrndmmcrss6yp7h6pdm1v5pqm-generically-0.1.1-doc' to 'https://cache.nix-ci.com'...
  2500. 1800.07 s interrupted by the user