build devShells.x86_64-linux.ghc963
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.gmap ============
1697.37 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
1697.37 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
1697.37 s
[algebraic-graphs] OK: gmap id == id
1697.37 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induce1 ============
1697.37 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
1697.37 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
1697.37 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
1697.37 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.induceJust1 ============
1697.37 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
1697.37 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
1697.37 s
[algebraic-graphs] OK: induceJust1 . gmap Just == Just
1697.37 s
[algebraic-graphs] OK: induceJust1 . gmap (\x -> if p x then Just x else Nothing) == induce1 p
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.closure ============
1697.37 s
[algebraic-graphs] OK: closure (vertex x) == edge x x
1697.37 s
[algebraic-graphs] OK: closure (edge x x) == edge x x
1697.37 s
[algebraic-graphs] OK: closure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
1697.37 s
[algebraic-graphs] OK: closure (path1 $ nub xs) == reflexiveClosure (clique1 $ nub xs)
1697.37 s
[algebraic-graphs] OK: closure == reflexiveClosure . transitiveClosure
1697.37 s
[algebraic-graphs] OK: closure == transitiveClosure . reflexiveClosure
1697.37 s
[algebraic-graphs] OK: closure . closure == closure
1697.37 s
[algebraic-graphs] OK: postSet x (closure y) == Set.fromList (reachable y x)
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.reflexiveClosure ============
1697.37 s
[algebraic-graphs] OK: reflexiveClosure (vertex x) == edge x x
1697.37 s
[algebraic-graphs] OK: reflexiveClosure (edge x x) == edge x x
1697.37 s
[algebraic-graphs] OK: reflexiveClosure (edge x y) == edges1 [(x,x), (x,y), (y,y)]
1697.37 s
[algebraic-graphs] OK: reflexiveClosure . reflexiveClosure == reflexiveClosure
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.symmetricClosure ============
1697.37 s
[algebraic-graphs] OK: symmetricClosure (vertex x) == vertex x
1697.37 s
[algebraic-graphs] OK: symmetricClosure (edge x y) == edges1 [(x,y), (y,x)]
1697.37 s
[algebraic-graphs] OK: symmetricClosure x == overlay x (transpose x)
1697.37 s
[algebraic-graphs] OK: symmetricClosure . symmetricClosure == symmetricClosure
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.AdjacencyMap.transitiveClosure ============
1697.37 s
[algebraic-graphs] OK: transitiveClosure (vertex x) == vertex x
1697.37 s
[algebraic-graphs] OK: transitiveClosure (edge x y) == edge x y
1697.37 s
[algebraic-graphs] OK: transitiveClosure (path1 $ nub xs) == clique1 (nub $ xs)
1697.37 s
[algebraic-graphs] OK: transitiveClosure . transitiveClosure == transitiveClosure
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ NonEmpty.Graph.============
1697.37 s
[algebraic-graphs] OK: Axioms of non-empty graphs
1697.37 s
[algebraic-graphs] OK: Theorems of non-empty graphs
1697.37 s
[algebraic-graphs]
1697.37 s
[algebraic-graphs] ============ Ord (NonEmpty.Graph a) ============
1697.37 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1697.37 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1697.37 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1697.37 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1697.37 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1697.38 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
1697.38 s
[algebraic-graphs] OK: x <= x + y
1697.38 s
[algebraic-graphs] OK: x + y <= x * y
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ Functor (NonEmpty.Graph a) ============
1697.38 s
[algebraic-graphs] OK: fmap f (vertex x) == vertex (f x)
1697.38 s
[algebraic-graphs] OK: fmap f (edge x y) == edge (f x) (f y)
1697.38 s
[algebraic-graphs] OK: fmap id == id
1697.38 s
[algebraic-graphs] OK: fmap f . fmap g == fmap (f . g)
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ Monad (NonEmpty.Graph a) ============
1697.38 s
[algebraic-graphs] OK: (vertex x >>= f) == f x
1697.38 s
[shake] [71 of 73] Compiling Development.Shake.Util ( src/Development/Shake/Util.hs, dist/build/Development/Shake/Util.p_o )
1697.38 s
[algebraic-graphs] OK: (edge x y >>= f) == connect (f x) (f y)
1697.38 s
[algebraic-graphs] OK: (vertices1 xs >>= f) == overlays1 (fmap f xs)
1697.38 s
[algebraic-graphs] OK: (x >>= vertex) == x
1697.38 s
[algebraic-graphs] OK: ((x >>= f) >>= g) == (x >>= (\y -> (f y) >>= g))
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.toNonEmpty ============
1697.38 s
[algebraic-graphs] OK: toNonEmpty empty == Nothing
1697.38 s
[algebraic-graphs] OK: toNonEmpty (toGraph x) == Just (x :: NonEmpty.Graph a)
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.vertex ============
1697.38 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1697.38 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1697.38 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1697.38 s
[algebraic-graphs] OK: size (vertex x) == 1
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.edge ============
1697.38 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1697.38 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1697.38 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1697.38 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1697.38 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay ============
1697.38 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1697.38 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1697.38 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1697.38 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1697.38 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1697.38 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
1697.38 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1697.38 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.overlay1 ============
1697.38 s
[algebraic-graphs] OK: overlay1 empty x == x
1697.38 s
[algebraic-graphs] OK: x /= empty ==> overlay1 x y == overlay (fromJust $ toNonEmpty x) y
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.connect ============
1697.38 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1697.38 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1697.38 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1697.38 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1697.38 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1697.38 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
1697.38 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1697.38 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
1697.38 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1697.38 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.vertices1 ============
1697.38 s
[algebraic-graphs] OK: vertices1 [x] == vertex x
1697.38 s
[algebraic-graphs] OK: hasVertex x . vertices1 == elem x
1697.38 s
[algebraic-graphs] OK: vertexCount . vertices1 == length . nub
1697.38 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.edges1 ============
1697.38 s
[algebraic-graphs] OK: edges1 [(x,y)] == edge x y
1697.38 s
[algebraic-graphs] OK: edges1 == overlays1 . fmap (uncurry edge)
1697.38 s
[algebraic-graphs] OK: edgeCount . edges1 == length . nub
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.overlays1 ============
1697.38 s
[algebraic-graphs] OK: overlays1 [x] == x
1697.38 s
[algebraic-graphs] OK: overlays1 [x,y] == overlay x y
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.connects1 ============
1697.38 s
[algebraic-graphs] OK: connects1 [x] == x
1697.38 s
[algebraic-graphs] OK: connects1 [x,y] == connect x y
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.foldg1 ============
1697.38 s
[algebraic-graphs] OK: foldg1 vertex overlay connect == id
1697.38 s
[algebraic-graphs] OK: foldg1 vertex overlay (flip connect) == transpose
1697.38 s
[algebraic-graphs] OK: foldg1 (const 1) (+) (+) == size
1697.38 s
[algebraic-graphs] OK: foldg1 (== x) (||) (||) == hasVertex x
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.isSubgraphOf ============
1697.38 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1697.38 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1697.38 s
[algebraic-graphs] OK: isSubgraphOf (path1 xs) (circuit1 xs) == True
1697.38 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.(===) ============
1697.38 s
[algebraic-graphs] OK: x === x == True
1697.38 s
[algebraic-graphs] OK: x + y === x + y == True
1697.38 s
[algebraic-graphs] OK: 1 + 2 === 2 + 1 == False
1697.38 s
[algebraic-graphs] OK: x + y === x * y == False
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.size ============
1697.38 s
[algebraic-graphs] OK: size (vertex x) == 1
1697.38 s
[algebraic-graphs] OK: size (overlay x y) == size x + size y
1697.38 s
[algebraic-graphs] OK: size (connect x y) == size x + size y
1697.38 s
[algebraic-graphs] OK: size x >= 1
1697.38 s
[algebraic-graphs] OK: size x >= vertexCount x
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.hasVertex ============
1697.38 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.hasEdge ============
1697.38 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
1697.38 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1697.38 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
1697.38 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexCount ============
1697.38 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1697.38 s
[algebraic-graphs] OK: vertexCount x >= 1
1697.38 s
[algebraic-graphs] OK: vertexCount == length . vertexList1
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeCount ============
1697.38 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1697.38 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1697.38 s
[algebraic-graphs] OK: edgeCount == length . edgeList
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexList1 ============
1697.38 s
[algebraic-graphs] OK: vertexList1 (vertex x) == [x]
1697.38 s
[algebraic-graphs] OK: vertexList1 . vertices1 == nub . sort
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeList ============
1697.38 s
[algebraic-graphs] OK: edgeList (vertex x) == []
1697.38 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
1697.38 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
1697.38 s
[algebraic-graphs] OK: edgeList . edges1 == nub . sort . toList
1697.38 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.vertexSet ============
1697.38 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
1697.38 s
[algebraic-graphs] OK: vertexSet . vertices1 == Set.fromList . toList
1697.38 s
[algebraic-graphs] OK: vertexSet . clique1 == Set.fromList . toList
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.edgeSet ============
1697.38 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
1697.38 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
1697.38 s
[algebraic-graphs] OK: edgeSet . edges1 == Set.fromList . toList
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.path1 ============
1697.38 s
[algebraic-graphs] OK: path1 [x] == vertex x
1697.38 s
[algebraic-graphs] OK: path1 [x,y] == edge x y
1697.38 s
[algebraic-graphs] OK: path1 . reverse == transpose . path1
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.circuit1 ============
1697.38 s
[algebraic-graphs] OK: circuit1 [x] == edge x x
1697.38 s
[algebraic-graphs] OK: circuit1 [x,y] == edges1 [(x,y), (y,x)]
1697.38 s
[algebraic-graphs] OK: circuit1 . reverse == transpose . circuit1
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.clique1 ============
1697.38 s
[algebraic-graphs] OK: clique1 [x] == vertex x
1697.38 s
[algebraic-graphs] OK: clique1 [x,y] == edge x y
1697.38 s
[algebraic-graphs] OK: clique1 [x,y,z] == edges1 [(x,y), (x,z), (y,z)]
1697.38 s
[algebraic-graphs] OK: clique1 (xs <> ys) == connect (clique1 xs) (clique1 ys)
1697.38 s
[algebraic-graphs] OK: clique1 . reverse == transpose . clique1
1697.38 s
[algebraic-graphs]
1697.38 s
[algebraic-graphs] ============ NonEmpty.Graph.biclique1 ============
1697.38 s
[algebraic-graphs] OK: biclique1 [x1,x2] [y1,y2] == edges1 [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1697.38 s
[algebraic-graphs] OK: biclique1 xs ys == connect (vertices1 xs) (vertices1 ys)
1697.38 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.star ============
1697.39 s
[algebraic-graphs] OK: star x [] == vertex x
1697.39 s
[algebraic-graphs] OK: star x [y] == edge x y
1697.39 s
[algebraic-graphs] OK: star x [y,z] == edges1 [(x,y), (x,z)]
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.stars1 ============
1697.39 s
[algebraic-graphs] OK: stars1 [(x, [] )] == vertex x
1697.39 s
[algebraic-graphs] OK: stars1 [(x, [y])] == edge x y
1697.39 s
[algebraic-graphs] OK: stars1 [(x, ys )] == star x ys
1697.39 s
[algebraic-graphs] OK: stars1 == overlays1 . fmap (uncurry star)
1697.39 s
[algebraic-graphs] OK: overlay (stars1 xs) (stars1 ys) == stars1 (xs <> ys)
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.tree ============
1697.39 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1697.39 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path1 [x,y,z]
1697.39 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
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)]
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.mesh1 ============
1697.39 s
[algebraic-graphs] OK: mesh1 [x] [y] == vertex (x, y)
1697.39 s
[algebraic-graphs] OK: mesh1 xs ys == box (path1 xs) (path1 ys)
1697.39 s
[algebraic-graphs] OK: mesh1 [1,2,3] ['a', 'b'] == <correct result>
1697.39 s
[algebraic-graphs] OK: size (mesh xs ys) == max 1 (3 * length xs * length ys - length xs - length ys -1)
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.torus1 ============
1697.39 s
[algebraic-graphs] OK: torus1 [x] [y] == edge (x,y) (x,y)
1697.39 s
[algebraic-graphs] OK: torus1 xs ys == box (circuit1 xs) (circuit1 ys)
1697.39 s
[algebraic-graphs] OK: torus1 [1,2] ['a', 'b'] == <correct result>
1697.39 s
[algebraic-graphs] OK: size (torus1 xs ys) == max 1 (3 * length xs * length ys)
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.removeVertex1 ============
1697.39 s
[algebraic-graphs] OK: removeVertex1 x (vertex x) == Nothing
1697.39 s
[algebraic-graphs] OK: removeVertex1 1 (vertex 2) == Just (vertex 2)
1697.39 s
[algebraic-graphs] OK: removeVertex1 x (edge x x) == Nothing
1697.39 s
[algebraic-graphs] OK: removeVertex1 1 (edge 1 2) == Just (vertex 2)
1697.39 s
[algebraic-graphs] OK: removeVertex1 x >=> removeVertex1 x == removeVertex1 x
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.removeEdge ============
1697.39 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices1 [x,y]
1697.39 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1697.39 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1697.39 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1697.39 s
[algebraic-graphs] OK: size (removeEdge x y z) <= 3 * size z
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.replaceVertex ============
1697.39 s
[algebraic-graphs] OK: replaceVertex x x == id
1697.39 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1697.39 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1697.39 s
[algebraic-graphs]
1697.39 s
[algebraic-graphs] ============ NonEmpty.Graph.mergeVertices ============
1697.39 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1697.51 s
[fuzzy] Phase: setupCompilerEnvironmentPhase
1697.52 s
[fuzzy] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
1698.08 s
[shake] [72 of 73] Compiling Development.Shake.Forward ( src/Development/Shake/Forward.hs, dist/build/Development/Shake/Forward.p_o )
1698.16 s
[fuzzy] Phase: unpackPhase
1698.19 s
[fuzzy] unpacking source archive /nix/store/wavjqvgbmq1q6aawwsk6iydx5lzi3p5l-fuzzy-0.1.1.0.tar.gz
1698.22 s
[fuzzy] source root is fuzzy-0.1.1.0
1698.25 s
[fuzzy] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "fuzzy-0.1.1.0/tests/tests.hs"
1698.28 s
[fuzzy] Phase: patchPhase
1698.33 s
[fuzzy] Phase: compileBuildDriverPhase
1698.35 s
[fuzzy] setupCompileFlags: -package-db=/build/tmp.HIlK3OPMUh/setup-package.conf.d -threaded
1698.58 s
[fuzzy] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.HIlK3OPMUh/Main.o )
1698.78 s
[fuzzy] [2 of 2] Linking Setup
1699.18 s
[shake] [73 of 73] Compiling Development.Shake.Config ( src/Development/Shake/Config.hs, dist/build/Development/Shake/Config.p_o )
1699.91 s
[kan-extensions] Phase: checkPhase
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 )
1699.95 s
[cassava] [ 5 of 10] Compiling Data.Csv.Conversion ( src/Data/Csv/Conversion.hs, dist/build/Data/Csv/Conversion.p_o )
1700.06 s
[kan-extensions] Package has no test suites.
1700.08 s
[kan-extensions] Phase: haddockPhase
1700.59 s
[kan-extensions] Preprocessing library for kan-extensions-5.2.6..
1700.59 s
[kan-extensions] Running Haddock on library for kan-extensions-5.2.6..
1700.86 s
[kan-extensions] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
1702.26 s
[kan-extensions] 100% ( 5 / 5) in 'Data.Functor.Contravariant.Coyoneda'
1702.45 s
[fuzzy] Phase: updateAutotoolsGnuConfigScriptsPhase
1702.48 s
[fuzzy] Phase: configurePhase
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
1702.51 s
[kan-extensions] 100% ( 14 / 14) in 'Data.Functor.Contravariant.Day'
1702.52 s
[fuzzy] Using Parsec parser
1702.52 s
[fuzzy] Configuring fuzzy-0.1.1.0...
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 )
1702.70 s
[aeson]
1702.70 s
[aeson] src/Data/Aeson/Types/ToJSON.hs:1615:23: warning : [ GHC-68441 ] [ -Wdeprecations ]
1702.70 s
[aeson] In the use of data constructor ‘Solo’
1702.70 s
[aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
1702.70 s
[aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
1702.70 s
[aeson] |
1702.70 s
[aeson] 1615 | liftToJSON _ t _ (Solo a) = t a
1702.70 s
[aeson] | ^^^^
1702.70 s
[aeson]
1702.70 s
[aeson] src/Data/Aeson/Types/ToJSON.hs:1618:27: warning : [ GHC-68441 ] [ -Wdeprecations ]
1702.70 s
[aeson] In the use of data constructor ‘Solo’
1702.70 s
[aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
1702.70 s
[aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
1702.70 s
[aeson] |
1702.70 s
[aeson] 1618 | liftToEncoding _ t _ (Solo a) = t a
1702.70 s
[aeson] | ^^^^
1702.88 s
[kan-extensions] 75% ( 3 / 4) in 'Data.Functor.Contravariant.Yoneda'
1702.88 s
[kan-extensions] Missing documentation for:
1702.88 s
[kan-extensions] lowerYoneda (src/Data/Functor/Contravariant/Yoneda.hs:40)
1703.23 s
[kan-extensions] 93% ( 14 / 15) in 'Data.Functor.Day'
1703.23 s
[kan-extensions] Missing documentation for:
1703.23 s
[kan-extensions] cayley (src/Data/Functor/Day.hs:199)
1703.49 s
[kan-extensions] Warning: 'Compose' is out of scope.
1703.49 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1703.49 s
[kan-extensions] Warning: 'Rift' is out of scope.
1703.49 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1703.50 s
[kan-extensions] 92% ( 13 / 14) in 'Data.Functor.Day.Curried'
1703.50 s
[kan-extensions] Missing documentation for:
1703.50 s
[kan-extensions] Curried (src/Data/Functor/Day/Curried.hs:36)
1703.66 s
[fuzzy] Dependency base >=4.8 && <5: using base-4.18.1.0
1703.66 s
[fuzzy] Dependency monoid-subclasses >0.4: using monoid-subclasses-1.2.6
1703.66 s
[fuzzy] Dependency HUnit >=1.2.5.0: using HUnit-1.6.2.0
1703.66 s
[fuzzy] Dependency base: using base-4.18.1.0
1703.66 s
[fuzzy] Dependency fuzzy: using fuzzy-0.1.1.0
1703.68 s
[kan-extensions] 100% ( 14 / 14) in 'Data.Functor.Invariant.Day'
1703.92 s
[kan-extensions] Warning: 'Compose' is out of scope.
1703.92 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1703.92 s
[kan-extensions] Warning: 'o' is out of scope.
1703.92 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1703.93 s
[kan-extensions] 75% ( 9 / 12) in 'Data.Functor.Kan.Lan'
1703.93 s
[kan-extensions] Missing documentation for:
1703.93 s
[kan-extensions] decomposeLan (src/Data/Functor/Kan/Lan.hs:108)
1703.93 s
[kan-extensions] lanToAdjoint (src/Data/Functor/Kan/Lan.hs:80)
1703.93 s
[kan-extensions] composedAdjointToLan (src/Data/Functor/Kan/Lan.hs:94)
1704.32 s
[shake] Preprocessing executable 'shake' for shake-0.19.8..
1704.35 s
[shake] Building executable 'shake' for shake-0.19.8..
1704.44 s
[fuzzy] Source component graph:
1704.44 s
[fuzzy] component lib
1704.44 s
[fuzzy] component test:tests dependency lib
1704.44 s
[fuzzy] Configured component graph:
1704.44 s
[fuzzy] component fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
1704.44 s
[fuzzy] include base-4.18.1.0
1704.44 s
[fuzzy] include monoid-subclasses-1.2.6-KQOqYr3uLxsEqY6ywLiQg3
1704.44 s
[fuzzy] component fuzzy-0.1.1.0-CGYhzLGfJ0TEYQLRYpmMVb-tests
1704.44 s
[fuzzy] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
1704.44 s
[fuzzy] include base-4.18.1.0
1704.44 s
[fuzzy] include fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
1704.44 s
[fuzzy] Linked component graph:
1704.44 s
[fuzzy] unit fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
1704.44 s
[fuzzy] include base-4.18.1.0
1704.44 s
[fuzzy] include monoid-subclasses-1.2.6-KQOqYr3uLxsEqY6ywLiQg3
1704.44 s
[fuzzy] Text.Fuzzy=fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm:Text.Fuzzy
1704.44 s
[fuzzy] unit fuzzy-0.1.1.0-CGYhzLGfJ0TEYQLRYpmMVb-tests
1704.44 s
[fuzzy] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
1704.44 s
[fuzzy] include base-4.18.1.0
1704.44 s
[fuzzy] include fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
1704.44 s
[fuzzy] Ready component graph:
1704.44 s
[fuzzy] definite fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
1704.44 s
[fuzzy] depends base-4.18.1.0
1704.44 s
[fuzzy] depends monoid-subclasses-1.2.6-KQOqYr3uLxsEqY6ywLiQg3
1704.44 s
[fuzzy] definite fuzzy-0.1.1.0-CGYhzLGfJ0TEYQLRYpmMVb-tests
1704.44 s
[fuzzy] depends HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
1704.44 s
[fuzzy] depends base-4.18.1.0
1704.44 s
[fuzzy] depends fuzzy-0.1.1.0-GsrBkx81Q9S3SG17mDM9Fm
1704.44 s
[fuzzy] Using Cabal-3.10.1.0 compiled by ghc-9.6
1704.44 s
[fuzzy] Using compiler: ghc-9.6.3
1704.44 s
[fuzzy] Using install prefix:
1704.44 s
[fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
1704.44 s
[fuzzy] Executables installed in:
1704.44 s
[fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/bin
1704.44 s
[fuzzy] Libraries installed in:
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
1704.44 s
[fuzzy] Dynamic Libraries installed in:
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
1704.44 s
[fuzzy] Private executables installed in:
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
1704.44 s
[fuzzy] Data files installed in:
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
1704.44 s
[fuzzy] Documentation installed in:
1704.44 s
[fuzzy] /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc/share/doc/fuzzy-0.1.1.0
1704.44 s
[fuzzy] Configuration files installed in:
1704.44 s
[fuzzy] /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/etc
1704.44 s
[fuzzy] No alex found
1704.44 s
[fuzzy] Using ar found on system at:
1704.44 s
[fuzzy] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
1704.44 s
[fuzzy] No c2hs found
1704.44 s
[fuzzy] No cpphs found
1704.44 s
[fuzzy] No doctest found
1704.44 s
[fuzzy] Using gcc version 14.3.0 given by user at:
1704.44 s
[fuzzy] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
1704.44 s
[fuzzy] Using ghc version 9.6.3 found on system at:
1704.44 s
[fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
1704.44 s
[fuzzy] Using ghc-pkg version 9.6.3 found on system at:
1704.44 s
[fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
1704.44 s
[fuzzy] No ghcjs found
1704.44 s
[fuzzy] No ghcjs-pkg found
1704.44 s
[fuzzy] No greencard found
1704.44 s
[fuzzy] Using haddock version 2.29.1 found on system at:
1704.44 s
[fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
1704.44 s
[fuzzy] No happy found
1704.44 s
[fuzzy] Using haskell-suite found on system at: haskell-suite-dummy-location
1704.44 s
[fuzzy] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1704.44 s
[fuzzy] No hmake found
1704.44 s
[fuzzy] Using hpc version 0.68 found on system at:
1704.45 s
[fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
1704.45 s
[fuzzy] Using hsc2hs version 0.68.9 found on system at:
1704.45 s
[fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
1704.45 s
[fuzzy] Using hscolour version 1.25 found on system at:
1704.45 s
[fuzzy] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
1704.45 s
[fuzzy] No jhc found
1704.45 s
[fuzzy] Using ld found on system at:
1704.45 s
[fuzzy] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
1704.45 s
[fuzzy] No pkg-config found
1704.45 s
[fuzzy] Using runghc version 9.6.3 found on system at:
1704.45 s
[fuzzy] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
1704.45 s
[fuzzy] Using strip version 2.44 found on system at:
1704.45 s
[fuzzy] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
1704.45 s
[fuzzy] Using tar found on system at:
1704.45 s
[fuzzy] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
1704.45 s
[fuzzy] No uhc found
1704.65 s
[kan-extensions] 88% ( 8 / 9) in 'Data.Functor.Coyoneda'
1704.65 s
[kan-extensions] Missing documentation for:
1704.65 s
[kan-extensions] lanToCoyoneda (src/Data/Functor/Coyoneda.hs:75)
1704.77 s
[fuzzy] Phase: buildPhase
1705.01 s
[kan-extensions] 57% ( 4 / 7) in 'Control.Comonad.Density'
1705.02 s
[kan-extensions] Missing documentation for:
1705.02 s
[kan-extensions] Density (src/Control/Comonad/Density.hs:40)
1705.02 s
[kan-extensions] adjunctionToDensity (src/Control/Comonad/Density.hs:96)
1705.02 s
[kan-extensions] densityToLan (src/Control/Comonad/Density.hs:111)
1705.02 s
[fuzzy] Preprocessing library for fuzzy-0.1.1.0..
1705.02 s
[fuzzy] Building library for fuzzy-0.1.1.0..
1705.20 s
[kan-extensions] Warning: 'Hask' is out of scope.
1705.20 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1705.20 s
[kan-extensions] Warning: 'Contravariant' is out of scope.
1705.20 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1705.20 s
[kan-extensions] Warning: 'Rift' is out of scope.
1705.20 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1705.21 s
[kan-extensions] 20% ( 5 / 24) in 'Control.Monad.Co'
1705.21 s
[kan-extensions] Missing documentation for:
1705.21 s
[kan-extensions] Co (src/Control/Monad/Co.hs:72)
1705.21 s
[kan-extensions] co (src/Control/Monad/Co.hs:74)
1705.21 s
[kan-extensions] runCo (src/Control/Monad/Co.hs:77)
1705.21 s
[kan-extensions] liftCoT0 (src/Control/Monad/Co.hs:112)
1705.21 s
[kan-extensions] liftCoT0M (src/Control/Monad/Co.hs:148)
1705.21 s
[kan-extensions] lowerCoT0 (src/Control/Monad/Co.hs:115)
1705.21 s
[kan-extensions] lowerCo0 (src/Control/Monad/Co.hs:118)
1705.21 s
[kan-extensions] liftCoT1 (src/Control/Monad/Co.hs:121)
1705.21 s
[kan-extensions] liftCoT1M (src/Control/Monad/Co.hs:151)
1705.21 s
[kan-extensions] lowerCoT1 (src/Control/Monad/Co.hs:124)
1705.21 s
[kan-extensions] lowerCo1 (src/Control/Monad/Co.hs:127)
1705.21 s
[kan-extensions] diter (src/Control/Monad/Co.hs:154)
1705.21 s
[kan-extensions] dctrlM (src/Control/Monad/Co.hs:157)
1705.21 s
[kan-extensions] posW (src/Control/Monad/Co.hs:130)
1705.21 s
[kan-extensions] peekW (src/Control/Monad/Co.hs:133)
1705.21 s
[kan-extensions] peeksW (src/Control/Monad/Co.hs:136)
1705.21 s
[kan-extensions] askW (src/Control/Monad/Co.hs:139)
1705.21 s
[kan-extensions] asksW (src/Control/Monad/Co.hs:142)
1705.21 s
[kan-extensions] traceW (src/Control/Monad/Co.hs:145)
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 )
1705.43 s
[kan-extensions] Warning: 'Compose'' is out of scope.
1705.43 s
[kan-extensions] If you qualify the identifier, haddock can try to link it anyway.
1705.44 s
[kan-extensions] 53% ( 8 / 15) in 'Data.Functor.Kan.Ran'
1705.44 s
[kan-extensions] Missing documentation for:
1705.44 s
[kan-extensions] decomposeRan (src/Data/Functor/Kan/Ran.hs:115)
1705.44 s
[kan-extensions] ranToAdjoint (src/Data/Functor/Kan/Ran.hs:129)
1705.44 s
[kan-extensions] composedAdjointToRan (src/Data/Functor/Kan/Ran.hs:143)
1705.44 s
[kan-extensions] repToRan (src/Data/Functor/Kan/Ran.hs:152)
1705.44 s
[kan-extensions] ranToRep (src/Data/Functor/Kan/Ran.hs:156)
1705.44 s
[kan-extensions] composedRepToRan (src/Data/Functor/Kan/Ran.hs:164)
1705.44 s
[kan-extensions] ranToComposedRep (src/Data/Functor/Kan/Ran.hs:160)
1705.64 s
[kan-extensions] 85% ( 12 / 14) in 'Control.Monad.Codensity'
1705.64 s
[kan-extensions] Missing documentation for:
1705.64 s
[kan-extensions] adjunctionToCodensity (src/Control/Monad/Codensity.hs:174)
1705.64 s
[kan-extensions] ranToCodensity (src/Control/Monad/Codensity.hs:215)
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 )
1705.97 s
[kan-extensions] 45% ( 5 / 11) in 'Data.Functor.Yoneda'
1705.98 s
[kan-extensions] Missing documentation for:
1705.98 s
[kan-extensions] lowerYoneda (src/Data/Functor/Yoneda.hs:84)
1705.98 s
[kan-extensions] maxF (src/Data/Functor/Yoneda.hs:193)
1705.98 s
[kan-extensions] minF (src/Data/Functor/Yoneda.hs:198)
1705.98 s
[kan-extensions] maxM (src/Data/Functor/Yoneda.hs:203)
1705.98 s
[kan-extensions] minM (src/Data/Functor/Yoneda.hs:208)
1705.98 s
[kan-extensions] ranToYoneda (src/Data/Functor/Yoneda.hs:102)
1706.57 s
[fuzzy] [1 of 1] Compiling Text.Fuzzy ( src/Text/Fuzzy.hs, dist/build/Text/Fuzzy.p_o )
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 )
1707.71 s
[cassava] [ 6 of 10] Compiling Data.Csv.Encoding ( src/Data/Csv/Encoding.hs, dist/build/Data/Csv/Encoding.p_o )
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 )
1709.56 s
[aeson] [26 of 32] Compiling Data.Aeson.Types ( src/Data/Aeson/Types.hs, dist/build/Data/Aeson/Types.p_o )
1710.12 s
[aeson] [27 of 32] Compiling Data.Aeson.Text ( src/Data/Aeson/Text.hs, dist/build/Data/Aeson/Text.p_o )
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 )
1711.96 s
[fuzzy] Preprocessing test suite 'tests' for fuzzy-0.1.1.0..
1711.96 s
[fuzzy] Building test suite 'tests' for fuzzy-0.1.1.0..
1712.18 s
[fuzzy] [1 of 1] Compiling Main ( tests/tests.hs, dist/build/tests/tests-tmp/Main.o )
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 )
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 )
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 )
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 )
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 )
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 )
1712.57 s
[shake] [10 of 71] Compiling General.Bilist ( src/General/Bilist.hs, dist/build/shake/shake-tmp/General/Bilist.o )
1712.57 s
[shake] [11 of 71] Compiling General.Binary ( src/General/Binary.hs, dist/build/shake/shake-tmp/General/Binary.o )
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 )
1712.58 s
[shake] [13 of 71] Compiling General.Cleanup ( src/General/Cleanup.hs, dist/build/shake/shake-tmp/General/Cleanup.o )
1712.58 s
[shake] [14 of 71] Compiling General.EscCodes ( src/General/EscCodes.hs, dist/build/shake/shake-tmp/General/EscCodes.o )
1712.58 s
[shake] [15 of 71] Compiling General.Extra ( src/General/Extra.hs, dist/build/shake/shake-tmp/General/Extra.o )
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 )
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 )
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 )
1713.61 s
[aeson] [28 of 32] Compiling Data.Aeson.Decoding ( src/Data/Aeson/Decoding.hs, dist/build/Data/Aeson/Decoding.p_o )
1713.61 s
[aeson] [29 of 32] Compiling Data.Aeson ( src/Data/Aeson.hs, dist/build/Data/Aeson.p_o )
1713.61 s
[aeson] [30 of 32] Compiling Data.Aeson.RFC8785 ( src/Data/Aeson/RFC8785.hs, dist/build/Data/Aeson/RFC8785.p_o )
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 )
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 )
1713.67 s
[aeson] [32 of 32] Compiling Data.Aeson.TH ( src/Data/Aeson/TH.hs, dist/build/Data/Aeson/TH.p_o )
1713.68 s
[aeson]
1713.68 s
[aeson] src/Data/Aeson/TH.hs:948:7: warning : [ GHC-62161 ] [ -Wincomplete-uni-patterns ]
1713.68 s
[aeson] Pattern match(es) are non-exhaustive
1713.68 s
[aeson] In a pattern binding: Patterns of type ‘[Q Exp]’ not matched: []
1713.68 s
[aeson] |
1713.68 s
[aeson] 948 | x:xs = [ lookupField argTy
1713.68 s
[aeson] | ^^^^^^^^^^^^^^^^^^^^^^^^^^...
1713.68 s
[aeson]
1713.68 s
[aeson] src/Data/Aeson/TH.hs:1064:14: warning : [ GHC-62161 ] [ -Wincomplete-uni-patterns ]
1713.68 s
[aeson] Pattern match(es) are non-exhaustive
1713.68 s
[aeson] In a pattern binding: Patterns of type ‘[Q Exp]’ not matched: []
1713.68 s
[aeson] |
1713.68 s
[aeson] 1064 | let x:xs = [ dispatchParseJSON jc conName tvMap argTy
1713.68 s
[aeson] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1713.81 s
[fuzzy] [2 of 2] Linking dist/build/tests/tests
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 )
1715.73 s
[fuzzy] Phase: checkPhase
1716.00 s
[fuzzy] Running 1 test suites...
1716.00 s
[fuzzy] Test suite tests: RUNNING...
1716.04 s
[fuzzy] ### Failure in: 1:match:3:should be case sensitive is specified:0
1716.04 s
[fuzzy] tests/tests.hs:37
1716.04 s
[fuzzy] expected: Nothing
1716.04 s
[fuzzy] but got: Just (Fuzzy {original = "Haskell", rendered = "Haskell", score = 26})
1716.04 s
[fuzzy] Cases: 14 Tried: 14 Errors: 0 Failures: 1
1716.04 s
[fuzzy] Test suite tests: PASS
1716.04 s
[fuzzy] Test suite logged to: dist/test/fuzzy-0.1.1.0-tests.log
1716.04 s
[fuzzy] 1 of 1 test suites (1 of 1 test cases) passed.
1716.08 s
[fuzzy] Phase: haddockPhase
1716.48 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1716.48 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1716.48 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1716.48 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.splitVertex1 ============
1716.49 s
[algebraic-graphs] OK: splitVertex1 x [x] == id
1716.49 s
[algebraic-graphs] OK: splitVertex1 x [y] == replaceVertex x y
1716.49 s
[algebraic-graphs] OK: splitVertex1 1 [0,1] $ 1 * (2 + 3) == (0 + 1) * (2 + 3)
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.transpose ============
1716.49 s
[algebraic-graphs] OK: transpose (vertex x) == vertex x
1716.49 s
[algebraic-graphs] OK: transpose (edge x y) == edge y x
1716.49 s
[algebraic-graphs] OK: transpose . transpose == id
1716.49 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
1716.49 s
[algebraic-graphs] OK: edgeList . transpose == sort . map swap . edgeList
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.induce1 ============
1716.49 s
[algebraic-graphs] OK: induce1 (const True ) x == Just x
1716.49 s
[algebraic-graphs] OK: induce1 (const False) x == Nothing
1716.49 s
[algebraic-graphs] OK: induce1 (/= x) == removeVertex1 x
1716.49 s
[algebraic-graphs] OK: induce1 p >=> induce1 q == induce1 (\x -> p x && q x)
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.induceJust1 ============
1716.49 s
[algebraic-graphs] OK: induceJust1 (vertex Nothing) == Nothing
1716.49 s
[algebraic-graphs] OK: induceJust1 (edge (Just x) Nothing) == Just (vertex x)
1716.49 s
[algebraic-graphs] OK: induceJust1 . fmap Just == Just
1716.49 s
[algebraic-graphs] OK: induceJust1 . fmap (\x -> if p x then Just x else Nothing) == induce1 p
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.simplify ============
1716.49 s
[algebraic-graphs] OK: simplify == id
1716.49 s
[algebraic-graphs] OK: size (simplify x) <= size x
1716.49 s
[algebraic-graphs] OK: simplify 1 === 1
1716.49 s
[algebraic-graphs] OK: simplify (1 + 1) === 1
1716.49 s
[algebraic-graphs] OK: simplify (1 + 2 + 1) === 1 + 2
1716.49 s
[algebraic-graphs] OK: simplify (1 * 1 * 1) === 1 * 1
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsify ============
1716.49 s
[algebraic-graphs] OK: sort . reachable x == sort . rights . reachable (sparsify x) . Right
1716.49 s
[algebraic-graphs] OK: vertexCount (sparsify x) <= vertexCount x + size x + 1
1716.49 s
[algebraic-graphs] OK: edgeCount (sparsify x) <= 3 * size x
1716.49 s
[algebraic-graphs] OK: size (sparsify x) <= 3 * size x
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.sparsifyKL ============
1716.49 s
[algebraic-graphs] OK: sort . reachable x == sort . filter (<= n) . reachable (sparsifyKL n x)
1716.49 s
[algebraic-graphs] OK: length (vertices $ sparsifyKL n x) <= vertexCount x + size x + 1
1716.49 s
[algebraic-graphs] OK: length (edges $ sparsifyKL n x) <= 3 * size x
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ NonEmpty.Graph.box ============
1716.49 s
[algebraic-graphs] OK: box (path1 [0,1]) (path1 ['a','b']) == <correct result>
1716.49 s
[algebraic-graphs] OK: box x y ~~ box y x
1716.49 s
[algebraic-graphs] OK: box x (overlay y z) == overlay (box x y) (box x z)
1716.49 s
[algebraic-graphs] OK: box x (vertex ()) ~~ x
1716.49 s
[algebraic-graphs] OK: box x (box y z) ~~ box (box x y) z
1716.49 s
[algebraic-graphs] OK: transpose (box x y) == box (transpose x) (transpose y)
1716.49 s
[algebraic-graphs] OK: vertexCount (box x y) == vertexCount x * vertexCount y
1716.49 s
[algebraic-graphs] OK: edgeCount (box x y) <= vertexCount x * edgeCount y + edgeCount x * vertexCount y
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation ============
1716.49 s
[algebraic-graphs] OK: Axioms of graphs
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.consistent ============
1716.49 s
[algebraic-graphs] OK: Consistency of the Arbitrary instance
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] OK: consistent empty == True
1716.49 s
[algebraic-graphs] OK: consistent (vertex x) == True
1716.49 s
[algebraic-graphs] OK: consistent (overlay x y) == True
1716.49 s
[algebraic-graphs] OK: consistent (connect x y) == True
1716.49 s
[algebraic-graphs] OK: consistent (edge x y) == True
1716.49 s
[algebraic-graphs] OK: consistent (edges xs) == True
1716.49 s
[algebraic-graphs] OK: consistent (stars xs) == True
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.Show ============
1716.49 s
[algebraic-graphs] OK: show (empty ) == "empty"
1716.49 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
1716.49 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
1716.49 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
1716.49 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
1716.49 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
1716.49 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
1716.49 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
1716.49 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
1716.49 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.Ord ============
1716.49 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1716.49 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1716.49 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1716.49 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1716.49 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1716.49 s
[algebraic-graphs] OK: edge 1 2 < edge 1 3
1716.49 s
[algebraic-graphs] OK: x <= x + y
1716.49 s
[algebraic-graphs] OK: x + y <= x * y
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.empty ============
1716.49 s
[algebraic-graphs] OK: isEmpty empty == True
1716.49 s
[algebraic-graphs] OK: hasVertex x empty == False
1716.49 s
[algebraic-graphs] OK: vertexCount empty == 0
1716.49 s
[algebraic-graphs] OK: edgeCount empty == 0
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.vertex ============
1716.49 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1716.49 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1716.49 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1716.49 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.edge ============
1716.49 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1716.49 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1716.49 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1716.49 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1716.49 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.overlay ============
1716.49 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
1716.49 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1716.49 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1716.49 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1716.49 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1716.49 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1716.49 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1716.49 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.connect ============
1716.49 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
1716.49 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1716.49 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1716.49 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1716.49 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1716.49 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1716.49 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y
1716.49 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1716.49 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1716.49 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.vertices ============
1716.49 s
[algebraic-graphs] OK: vertices [] == empty
1716.49 s
[algebraic-graphs] OK: vertices [x] == vertex x
1716.49 s
[algebraic-graphs] OK: vertices == overlays . map vertex
1716.49 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
1716.49 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
1716.49 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.edges ============
1716.49 s
[algebraic-graphs] OK: edges [] == empty
1716.49 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
1716.49 s
[algebraic-graphs] OK: edges == overlays . map (uncurry edge)
1716.49 s
[algebraic-graphs] OK: edgeCount . edges == length . nub
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.overlays ============
1716.49 s
[algebraic-graphs] OK: overlays [] == empty
1716.49 s
[algebraic-graphs] OK: overlays [x] == x
1716.49 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
1716.49 s
[algebraic-graphs] OK: overlays == foldr overlay empty
1716.49 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.connects ============
1716.49 s
[algebraic-graphs] OK: connects [] == empty
1716.49 s
[algebraic-graphs] OK: connects [x] == x
1716.49 s
[algebraic-graphs] OK: connects [x,y] == connect x y
1716.49 s
[algebraic-graphs] OK: connects == foldr connect empty
1716.49 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.isSubgraphOf ============
1716.49 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
1716.49 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
1716.49 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1716.49 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1716.49 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
1716.49 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1716.49 s
[algebraic-graphs]
1716.49 s
[algebraic-graphs] ============ Relation.toGraph et al. ============
1716.49 s
[algebraic-graphs] OK: toGraph == foldg Empty Vertex Overlay Connect
1716.49 s
[algebraic-graphs] OK: foldg == Algebra.Graph.foldg . toGraph
1716.49 s
[algebraic-graphs] OK: isEmpty == foldg True (const False) (&&) (&&)
1716.49 s
[algebraic-graphs] OK: size == foldg 1 (const 1) (+) (+)
1716.49 s
[algebraic-graphs] OK: hasVertex x == foldg False (==x) (||) (||)
1716.49 s
[algebraic-graphs] OK: hasEdge x y == Algebra.Graph.hasEdge x y . toGraph
1716.49 s
[algebraic-graphs] OK: vertexCount == Set.size . vertexSet
1716.49 s
[algebraic-graphs] OK: edgeCount == Set.size . edgeSet
1716.49 s
[algebraic-graphs] OK: vertexList == Set.toAscList . vertexSet
1716.49 s
[algebraic-graphs] OK: edgeList == Set.toAscList . edgeSet
1716.49 s
[algebraic-graphs] OK: vertexSet == foldg Set.empty Set.singleton Set.union Set.union
1716.50 s
[algebraic-graphs] OK: vertexIntSet == foldg IntSet.empty IntSet.singleton IntSet.union IntSet.union
1716.50 s
[algebraic-graphs] OK: edgeSet == Algebra.Graph.AdjacencyMap.edgeSet . foldg empty vertex overlay connect
1716.50 s
[algebraic-graphs] OK: preSet x == Algebra.Graph.AdjacencyMap.preSet x . toAdjacencyMap
1716.50 s
[algebraic-graphs] OK: preIntSet x == Algebra.Graph.AdjacencyIntMap.preIntSet x . toAdjacencyIntMap
1716.50 s
[algebraic-graphs] OK: postSet x == Algebra.Graph.AdjacencyMap.postSet x . toAdjacencyMap
1716.50 s
[algebraic-graphs] OK: postIntSet x == Algebra.Graph.AdjacencyIntMap.postIntSet x . toAdjacencyIntMap
1716.55 s
[fuzzy] Preprocessing library for fuzzy-0.1.1.0..
1716.55 s
[fuzzy] Running Haddock on library for fuzzy-0.1.1.0..
1716.55 s
[fuzzy] Warning: The documentation for the following packages are not installed. No
1716.56 s
[fuzzy] links will be generated to these packages: vector-0.13.2.0
1716.68 s
[cassava] [ 7 of 10] Compiling Data.Csv.Incremental ( src/Data/Csv/Incremental.hs, dist/build/Data/Csv/Incremental.p_o )
1716.80 s
[fuzzy] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
1717.47 s
[fuzzy] Warning: 'TextualMonoid' is out of scope.
1717.47 s
[fuzzy] If you qualify the identifier, haddock can try to link it anyway.
1717.58 s
[fuzzy] 100% ( 6 / 6) in 'Text.Fuzzy'
1719.86 s
[cassava] [ 8 of 10] Compiling Data.Csv.Streaming ( src/Data/Csv/Streaming.hs, dist/build/Data/Csv/Streaming.p_o )
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 )
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 )
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 )
1719.98 s
[shake] [24 of 71] Compiling General.Fence ( src/General/Fence.hs, dist/build/shake/shake-tmp/General/Fence.o )
1719.98 s
[shake] [25 of 71] Compiling General.FileLock ( src/General/FileLock.hs, dist/build/shake/shake-tmp/General/FileLock.o )
1719.98 s
[shake] [26 of 71] Compiling General.GetOpt ( src/General/GetOpt.hs, dist/build/shake/shake-tmp/General/GetOpt.o )
1719.98 s
[shake] [27 of 71] Compiling General.Intern ( src/General/Intern.hs, dist/build/shake/shake-tmp/General/Intern.o )
1719.98 s
[shake] [28 of 71] Compiling General.Ids ( src/General/Ids.hs, dist/build/shake/shake-tmp/General/Ids.o )
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 )
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 )
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 )
1719.99 s
[shake] [32 of 71] Compiling General.ListBuilder ( src/General/ListBuilder.hs, dist/build/shake/shake-tmp/General/ListBuilder.o )
1719.99 s
[shake] [33 of 71] Compiling General.Makefile ( src/General/Makefile.hs, dist/build/shake/shake-tmp/General/Makefile.o )
1719.99 s
[shake] [34 of 71] Compiling General.Process ( src/General/Process.hs, dist/build/shake/shake-tmp/General/Process.o )
1719.99 s
[shake] [35 of 71] Compiling General.Thread ( src/General/Thread.hs, dist/build/shake/shake-tmp/General/Thread.o )
1719.99 s
[shake] [36 of 71] Compiling General.Chunks ( src/General/Chunks.hs, dist/build/shake/shake-tmp/General/Chunks.o )
1719.99 s
[shake] [37 of 71] Compiling General.Timing ( src/General/Timing.hs, dist/build/shake/shake-tmp/General/Timing.o )
1719.99 s
[shake] [38 of 71] Compiling General.Pool ( src/General/Pool.hs, dist/build/shake/shake-tmp/General/Pool.o )
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 )
1720.90 s
[cassava] [ 9 of 10] Compiling Data.Csv.Builder ( src/Data/Csv/Builder.hs, dist/build/Data/Csv/Builder.p_o )
1720.90 s
[cassava] [10 of 10] Compiling Data.Csv ( src/Data/Csv.hs, dist/build/Data/Csv.p_o )
1721.72 s
[shake] [40 of 71] Compiling General.TypeMap ( src/General/TypeMap.hs, dist/build/shake/shake-tmp/General/TypeMap.o )
1721.72 s
[shake] [41 of 71] Compiling General.Wait ( src/General/Wait.hs, dist/build/shake/shake-tmp/General/Wait.o )
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 )
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 )
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 )
1722.19 s
[kan-extensions] Documentation created: dist/doc/html/kan-extensions/index.html,
1722.19 s
[kan-extensions] dist/doc/html/kan-extensions/kan-extensions.txt
1722.37 s
[kan-extensions] Phase: installPhase
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
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 )
1724.44 s
[kan-extensions] Phase: fixupPhase
1724.49 s
[kan-extensions] shrinking RPATHs of ELF executables and libraries in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6
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
1724.54 s
[kan-extensions] checking for references to /build/ in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6...
1724.59 s
[kan-extensions] patching script interpreter paths in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6
1724.64 s
[kan-extensions] stripping (with command strip and flags -S -p) in /nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6/lib
1725.41 s
[kan-extensions] shrinking RPATHs of ELF executables and libraries in /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc
1725.43 s
[kan-extensions] checking for references to /build/ in /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc...
1725.47 s
[kan-extensions] patching script interpreter paths in /nix/store/9781n7qw09l613s5da0rnlmcg2597wf0-kan-extensions-5.2.6-doc
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
1726.75 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
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
1727.00 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1727.19 s
[post-build-hook] copying 1 paths...
1727.19 s
[post-build-hook] copying path '/nix/store/zjavljvqgjsnicm7gmp96k7q1ynwbxqy-kan-extensions-5.2.6' to 'https://cache.nix-ci.com'...
1731.23 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1731.43 s
[post-build-hook] copying 0 paths...
1731.53 s
Progress: 100 of 177 built (6 building), 373 of 373 downloaded from cache
1731.70 s
Building lens
1731.84 s
Building pointed
1731.84 s
[aeson] buildPhase completed in 8 minutes 13 seconds
1731.84 s
[aeson] Phase: haddockPhase
1731.84 s
[aeson] Preprocessing library for aeson-2.2.3.0..
1731.84 s
[aeson] Running Haddock on library for aeson-2.2.3.0..
1731.84 s
[aeson] Warning: The documentation for the following packages are not installed. No
1731.84 s
[aeson] links will be generated to these packages: vector-0.13.2.0
1731.84 s
[aeson] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
1731.84 s
[aeson] Warning: Couldn't find .haddock for export Vector
1731.84 s
[aeson] Warning: 'letE' is out of scope.
1731.84 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1731.84 s
[algebraic-graphs] OK: adjacencyList == Algebra.Graph.AdjacencyMap.adjacencyList . toAdjacencyMap
1731.84 s
[algebraic-graphs] OK: adjacencyMap == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: adjacencyIntMap == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMap
1731.85 s
[algebraic-graphs] OK: adjacencyMapTranspose == Algebra.Graph.AdjacencyMap.adjacencyMap . toAdjacencyMapTranspose
1731.85 s
[algebraic-graphs] OK: adjacencyIntMapTranspose == Algebra.Graph.AdjacencyIntMap.adjacencyIntMap . toAdjacencyIntMapTranspose
1731.85 s
[algebraic-graphs] OK: dfsForest == Algebra.Graph.AdjacencyMap.dfsForest . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: dfsForestFrom == Algebra.Graph.AdjacencyMap.dfsForestFrom . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: dfs == Algebra.Graph.AdjacencyMap.dfs . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: reachable == Algebra.Graph.AdjacencyMap.reachable . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: topSort == Algebra.Graph.AdjacencyMap.topSort . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: isAcyclic == Algebra.Graph.AdjacencyMap.isAcyclic . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: toAdjacencyMap == foldg empty vertex overlay connect
1731.85 s
[algebraic-graphs] OK: toAdjacencyMapTranspose == foldg empty vertex overlay (flip connect)
1731.85 s
[algebraic-graphs] OK: toAdjacencyIntMap == foldg empty vertex overlay connect
1731.85 s
[algebraic-graphs] OK: toAdjacencyIntMapTranspose == foldg empty vertex overlay (flip connect)
1731.85 s
[algebraic-graphs] OK: isDfsForestOf f == Algebra.Graph.AdjacencyMap.isDfsForestOf f . toAdjacencyMap
1731.85 s
[algebraic-graphs] OK: isTopSortOf vs == Algebra.Graph.AdjacencyMap.isTopSortOf vs . toAdjacencyMap
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.foldg ============
1731.85 s
[algebraic-graphs] OK: foldg empty vertex overlay connect == id
1731.85 s
[algebraic-graphs] OK: foldg empty vertex overlay (flip connect) == transpose
1731.85 s
[algebraic-graphs] OK: foldg 1 (const 1) (+) (+) == size
1731.85 s
[algebraic-graphs] OK: foldg True (const False) (&&) (&&) == isEmpty
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.isEmpty ============
1731.85 s
[algebraic-graphs] OK: isEmpty empty == True
1731.85 s
[algebraic-graphs] OK: isEmpty (overlay empty empty) == True
1731.85 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1731.85 s
[algebraic-graphs] OK: isEmpty (removeVertex x $ vertex x) == True
1731.85 s
[algebraic-graphs] OK: isEmpty (removeEdge x y $ edge x y) == False
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.hasVertex ============
1731.85 s
[algebraic-graphs] OK: hasVertex x empty == False
1731.85 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1731.85 s
[algebraic-graphs] OK: hasVertex x . removeVertex x == const False
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.hasEdge ============
1731.85 s
[algebraic-graphs] OK: hasEdge x y empty == False
1731.85 s
[algebraic-graphs] OK: hasEdge x y (vertex z) == False
1731.85 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1731.85 s
[algebraic-graphs] OK: hasEdge x y . removeEdge x y == const False
1731.85 s
[algebraic-graphs] OK: hasEdge x y == elem (x,y) . edgeList
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.vertexCount ============
1731.85 s
[algebraic-graphs] OK: vertexCount empty == 0
1731.85 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1731.85 s
[algebraic-graphs] OK: vertexCount == length . vertexList
1731.85 s
[algebraic-graphs] OK: vertexCount x < vertexCount y ==> x < y
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.edgeCount ============
1731.85 s
[algebraic-graphs] OK: edgeCount empty == 0
1731.85 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1731.85 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1731.85 s
[algebraic-graphs] OK: edgeCount == length . edgeList
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.vertexList ============
1731.85 s
[algebraic-graphs] OK: vertexList empty == []
1731.85 s
[algebraic-graphs] OK: vertexList (vertex x) == [x]
1731.85 s
[algebraic-graphs] OK: vertexList . vertices == nub . sort
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.vertexSet ============
1731.85 s
[algebraic-graphs] OK: vertexSet empty == Set.empty
1731.85 s
[algebraic-graphs] OK: vertexSet . vertex == Set.singleton
1731.85 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.vertexIntSet ============
1731.85 s
[algebraic-graphs] OK: vertexIntSet empty == IntSet.empty
1731.85 s
[algebraic-graphs] OK: vertexIntSet . vertex == IntSet.singleton
1731.85 s
[algebraic-graphs] OK: vertexIntSet . vertices == IntSet.fromList
1731.85 s
[algebraic-graphs] OK: vertexIntSet . clique == IntSet.fromList
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.edgeList ============
1731.85 s
[algebraic-graphs] OK: edgeList empty == []
1731.85 s
[algebraic-graphs] OK: edgeList (vertex x) == []
1731.85 s
[algebraic-graphs] OK: edgeList (edge x y) == [(x,y)]
1731.85 s
[algebraic-graphs] OK: edgeList (star 2 [3,1]) == [(2,1), (2,3)]
1731.85 s
[algebraic-graphs] OK: edgeList . edges == nub . sort
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.edgeSet ============
1731.85 s
[algebraic-graphs] OK: edgeSet empty == Set.empty
1731.85 s
[algebraic-graphs] OK: edgeSet (vertex x) == Set.empty
1731.85 s
[algebraic-graphs] OK: edgeSet (edge x y) == Set.singleton (x,y)
1731.85 s
[algebraic-graphs] OK: edgeSet . edges == Set.fromList
1731.85 s
[algebraic-graphs]
1731.85 s
[algebraic-graphs] ============ Relation.adjacencyList ============
1731.85 s
[algebraic-graphs] OK: adjacencyList empty == []
1731.85 s
[cassava] Preprocessing test suite 'unit-tests' for cassava-0.5.3.2..
1731.85 s
[cassava] Building test suite 'unit-tests' for cassava-0.5.3.2..
1731.85 s
[cassava] [1 of 1] Compiling Main ( tests/UnitTests.hs, dist/build/unit-tests/unit-tests-tmp/Main.o )
1731.85 s
[fuzzy] Documentation created: dist/doc/html/fuzzy/index.html,
1731.85 s
[fuzzy] dist/doc/html/fuzzy/fuzzy.txt
1731.85 s
[fuzzy] Preprocessing test suite 'tests' for fuzzy-0.1.1.0..
1731.85 s
[fuzzy] Phase: installPhase
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
1731.85 s
[fuzzy] Phase: fixupPhase
1731.85 s
[fuzzy] shrinking RPATHs of ELF executables and libraries in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
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
1731.85 s
[fuzzy] checking for references to /build/ in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0...
1731.85 s
[fuzzy] patching script interpreter paths in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0
1731.85 s
[fuzzy] stripping (with command strip and flags -S -p) in /nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0/lib
1731.85 s
[fuzzy] shrinking RPATHs of ELF executables and libraries in /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc
1731.85 s
[fuzzy] checking for references to /build/ in /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc...
1731.85 s
[fuzzy] patching script interpreter paths in /nix/store/13il00ii2cil5vnaysbva45yvql29x77-fuzzy-0.1.1.0-doc
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 )
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 )
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 )
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 )
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 )
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 )
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 )
1731.86 s
[algebraic-graphs] OK: adjacencyList (vertex x) == [(x, [])]
1731.86 s
[algebraic-graphs] OK: adjacencyList (edge 1 2) == [(1, [2]), (2, [])]
1731.86 s
[algebraic-graphs] OK: adjacencyList (star 2 [3,1]) == [(1, []), (2, [1,3]), (3, [])]
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.preSet ============
1731.86 s
[algebraic-graphs] OK: preSet x empty == Set.empty
1731.86 s
[algebraic-graphs] OK: preSet x (vertex x) == Set.empty
1731.86 s
[algebraic-graphs] OK: preSet 1 (edge 1 2) == Set.empty
1731.86 s
[algebraic-graphs] OK: preSet y (edge x y) == Set.fromList [x]
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.preIntSet ============
1731.86 s
[algebraic-graphs] OK: preIntSet x empty == IntSet.empty
1731.86 s
[algebraic-graphs] OK: preIntSet x (vertex x) == IntSet.empty
1731.86 s
[algebraic-graphs] OK: preIntSet 1 (edge 1 2) == IntSet.empty
1731.86 s
[algebraic-graphs] OK: preIntSet y (edge x y) == IntSet.fromList [x]
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.postSet ============
1731.86 s
[algebraic-graphs] OK: postSet x empty == Set.empty
1731.86 s
[algebraic-graphs] OK: postSet x (vertex x) == Set.empty
1731.86 s
[algebraic-graphs] OK: postSet x (edge x y) == Set.fromList [y]
1731.86 s
[algebraic-graphs] OK: postSet 2 (edge 1 2) == Set.empty
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.postIntSet ============
1731.86 s
[algebraic-graphs] OK: postIntSet x empty == IntSet.empty
1731.86 s
[algebraic-graphs] OK: postIntSet x (vertex x) == IntSet.empty
1731.86 s
[algebraic-graphs] OK: postIntSet 2 (edge 1 2) == IntSet.empty
1731.86 s
[algebraic-graphs] OK: postIntSet x (edge x y) == IntSet.fromList [y]
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.path ============
1731.86 s
[algebraic-graphs] OK: path [] == empty
1731.86 s
[algebraic-graphs] OK: path [x] == vertex x
1731.86 s
[algebraic-graphs] OK: path [x,y] == edge x y
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.circuit ============
1731.86 s
[algebraic-graphs] OK: circuit [] == empty
1731.86 s
[algebraic-graphs] OK: circuit [x] == edge x x
1731.86 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.clique ============
1731.86 s
[algebraic-graphs] OK: clique [] == empty
1731.86 s
[algebraic-graphs] OK: clique [x] == vertex x
1731.86 s
[algebraic-graphs] OK: clique [x,y] == edge x y
1731.86 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
1731.86 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.biclique ============
1731.86 s
[algebraic-graphs] OK: biclique [] [] == empty
1731.86 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
1731.86 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
1731.86 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1731.86 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.star ============
1731.86 s
[algebraic-graphs] OK: star x [] == vertex x
1731.86 s
[algebraic-graphs] OK: star x [y] == edge x y
1731.86 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
1731.86 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.stars ============
1731.86 s
[algebraic-graphs] OK: stars [] == empty
1731.86 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
1731.86 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
1731.86 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
1731.86 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
1731.86 s
[algebraic-graphs] OK: stars . adjacencyList == id
1731.86 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.tree ============
1731.86 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1731.86 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
1731.86 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
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)]
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.forest ============
1731.86 s
[algebraic-graphs] OK: forest [] == empty
1731.86 s
[algebraic-graphs] OK: forest [x] == tree x
1731.86 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
1731.86 s
[algebraic-graphs] OK: forest == overlays . map tree
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.removeVertex ============
1731.86 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
1731.86 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
1731.86 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
1731.86 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
1731.86 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.removeEdge ============
1731.86 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
1731.86 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1731.86 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
1731.86 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1731.86 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.replaceVertex ============
1731.86 s
[algebraic-graphs] OK: replaceVertex x x == id
1731.86 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1731.86 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1731.86 s
[algebraic-graphs]
1731.86 s
[algebraic-graphs] ============ Relation.mergeVertices ============
1731.86 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
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
1733.38 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
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
1734.07 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1734.49 s
[post-build-hook] copying 1 paths...
1734.49 s
[post-build-hook] copying path '/nix/store/p0kx3g9cgynnc6kkarbs68pvchs2cgvc-fuzzy-0.1.1.0' to 'https://cache.nix-ci.com'...
1735.42 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1736.29 s
[post-build-hook] copying 0 paths...
1736.54 s
Progress: 101 of 177 built (7 building), 373 of 373 downloaded from cache
1736.54 s
[aeson] Warning: 'Coercible' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'coercing' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] 44% ( 4 / 9) in 'Data.Aeson.Key'
1736.58 s
[aeson] Missing documentation for:
1736.58 s
[aeson] Key (src/Data/Aeson/Key.hs:44)
1736.58 s
[aeson] fromString (src/Data/Aeson/Key.hs:47)
1736.58 s
[aeson] toString (src/Data/Aeson/Key.hs:50)
1736.58 s
[aeson] toText (src/Data/Aeson/Key.hs:56)
1736.58 s
[aeson] fromText (src/Data/Aeson/Key.hs:53)
1736.58 s
[aeson] 100% ( 7 / 7) in 'Data.Aeson.Decoding.Tokens'
1736.58 s
[aeson] Warning: 'ByteString' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] 100% ( 2 / 2) in 'Data.Aeson.Decoding.Text'
1736.58 s
[aeson] 100% ( 2 / 2) in 'Data.Aeson.Decoding.ByteString.Lazy'
1736.58 s
[aeson] 100% ( 2 / 2) in 'Data.Aeson.Decoding.ByteString'
1736.58 s
[aeson] Warning: 'v' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'const' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] 88% ( 61 / 69) in 'Data.Aeson.KeyMap'
1736.58 s
[aeson] Missing documentation for:
1736.58 s
[aeson] coercionToHashMap (src/Data/Aeson/KeyMap.hs:316)
1736.58 s
[aeson] coercionToMap (src/Data/Aeson/KeyMap.hs:320)
1736.58 s
[aeson] foldr (src/Data/Aeson/KeyMap.hs:205)
1736.58 s
[aeson] foldr' (src/Data/Aeson/KeyMap.hs:208)
1736.58 s
[aeson] foldl (src/Data/Aeson/KeyMap.hs:211)
1736.58 s
[aeson] foldl' (src/Data/Aeson/KeyMap.hs:214)
1736.58 s
[aeson] foldMapWithKey (src/Data/Aeson/KeyMap.hs:202)
1736.58 s
[aeson] Key (src/Data/Aeson/Key.hs:44)
1736.58 s
[aeson] Warning: 'ToJSON' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'FromJSON' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'ToJSON1' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'FromJSON1' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'hashable' is out of scope.
1736.58 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.58 s
[aeson] Warning: 'Array' is ambiguous. It is defined
1736.58 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:367:14
1736.58 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:363:1
1736.58 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1736.58 s
[aeson] by specifying the type/value namespace explicitly.
1736.58 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:363:1
1736.58 s
[aeson] Warning: 'String' is ambiguous. It is defined
1736.58 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:368:14
1736.58 s
[aeson] * in ‘GHC.Base’
1736.58 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1736.58 s
[aeson] by specifying the type/value namespace explicitly.
1736.58 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
1736.58 s
[aeson] Warning: 'Object' is ambiguous. It is defined
1736.58 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
1736.58 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
1736.58 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1736.59 s
[aeson] by specifying the type/value namespace explicitly.
1736.59 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
1736.59 s
[aeson] Warning: '(.:)' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'allowOmittedFieds' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'omittedField' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'ToJSONKey' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'toJSONKey' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'genericToJSONKey' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'FromJSONKey' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'fromJSONKey' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'genericFromJSONKey' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[aeson] Warning: 'API' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1736.59 s
[lens] Phase: setupCompilerEnvironmentPhase
1736.59 s
[lens] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
1736.59 s
[lens] Phase: unpackPhase
1736.59 s
[lens] unpacking source archive /nix/store/94srckviqabk285cpndqlgjy1zidzbf2-lens-5.3.4.tar.gz
1736.59 s
[lens] source root is lens-5.3.4
1736.59 s
[lens] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "lens-5.3.4/.vim.custom"
1736.59 s
[lens] Phase: patchPhase
1736.59 s
[lens] Phase: compileBuildDriverPhase
1736.59 s
[lens] setupCompileFlags: -package-db=/build/tmp.TdJRWpjbRb/setup-package.conf.d -threaded
1736.59 s
[lens] [1 of 2] Compiling Main ( Setup.lhs, /build/tmp.TdJRWpjbRb/Main.o )
1736.59 s
[lens] [2 of 2] Linking Setup
1736.59 s
[pointed] Phase: setupCompilerEnvironmentPhase
1736.59 s
[pointed] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
1736.59 s
[pointed] Phase: unpackPhase
1736.59 s
[pointed] unpacking source archive /nix/store/3bqs3pyybjh308mn3bqh91670m0m7v5y-pointed-5.0.5.tar.gz
1736.59 s
[pointed] source root is pointed-5.0.5
1736.59 s
[pointed] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pointed-5.0.5/src/Data/Pointed.hs"
1736.59 s
[pointed] Phase: patchPhase
1736.59 s
[pointed] Replace Cabal file with edited version from mirror://hackage/pointed-5.0.5/revision/1.cabal.
1736.59 s
[pointed] Phase: compileBuildDriverPhase
1736.59 s
[pointed] setupCompileFlags: -package-db=/build/tmp.Bt1dZAJyMn/setup-package.conf.d -threaded
1736.59 s
[pointed] [1 of 2] Compiling Main ( Setup.lhs, /build/tmp.Bt1dZAJyMn/Main.o )
1736.59 s
[pointed] [2 of 2] Linking Setup
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 )
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 )
1736.59 s
[aeson] Warning: 'throwDecode' is out of scope.
1736.59 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1737.64 s
[aeson] Warning: 'Value' is ambiguous. It is defined
1737.64 s
[aeson] * at src/Data/Aeson/Encoding/Internal.hs:130:15
1737.64 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:1
1737.64 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1737.64 s
[aeson] by specifying the type/value namespace explicitly.
1737.64 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Encoding/Internal.hs:129:1
1737.64 s
[aeson] Warning: '.=' is out of scope.
1737.64 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1737.65 s
[aeson] Warning: 'unsafePair' is out of scope.
1737.65 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1737.66 s
[aeson] 25% ( 21 / 82) in 'Data.Aeson.Encoding.Internal'
1737.67 s
[aeson] Missing documentation for:
1737.67 s
[aeson] Module header
1737.67 s
[aeson] encodingToLazyByteString (src/Data/Aeson/Encoding/Internal.hs:97)
1737.67 s
[aeson] retagEncoding (src/Data/Aeson/Encoding/Internal.hs:101)
1737.67 s
[aeson] pair (src/Data/Aeson/Encoding/Internal.hs:133)
1737.67 s
[aeson] pairStr (src/Data/Aeson/Encoding/Internal.hs:137)
1737.67 s
[aeson] pair' (src/Data/Aeson/Encoding/Internal.hs:141)
1737.67 s
[aeson] nullEncoding (src/Data/Aeson/Encoding/Internal.hs:167)
1737.67 s
[aeson] emptyArray_ (src/Data/Aeson/Encoding/Internal.hs:170)
1737.67 s
[aeson] emptyObject_ (src/Data/Aeson/Encoding/Internal.hs:173)
1737.67 s
[aeson] wrapObject (src/Data/Aeson/Encoding/Internal.hs:179)
1737.67 s
[aeson] wrapArray (src/Data/Aeson/Encoding/Internal.hs:176)
1737.67 s
[aeson] null_ (src/Data/Aeson/Encoding/Internal.hs:182)
1737.67 s
[aeson] bool (src/Data/Aeson/Encoding/Internal.hs:185)
1737.67 s
[aeson] key (src/Data/Aeson/Encoding/Internal.hs:246)
1737.67 s
[aeson] text (src/Data/Aeson/Encoding/Internal.hs:249)
1737.67 s
[aeson] lazyText (src/Data/Aeson/Encoding/Internal.hs:252)
1737.67 s
[aeson] string (src/Data/Aeson/Encoding/Internal.hs:265)
1737.67 s
[aeson] list (src/Data/Aeson/Encoding/Internal.hs:195)
1737.67 s
[aeson] empty (src/Data/Aeson/Encoding/Internal.hs:224)
1737.67 s
[aeson] >< (src/Data/Aeson/Encoding/Internal.hs:231)
1737.67 s
[aeson] econcat (src/Data/Aeson/Encoding/Internal.hs:227)
1737.67 s
[aeson] int8 (src/Data/Aeson/Encoding/Internal.hs:284)
1737.67 s
[aeson] int16 (src/Data/Aeson/Encoding/Internal.hs:287)
1737.67 s
[aeson] int32 (src/Data/Aeson/Encoding/Internal.hs:290)
1737.67 s
[aeson] int64 (src/Data/Aeson/Encoding/Internal.hs:293)
1737.67 s
[aeson] int (src/Data/Aeson/Encoding/Internal.hs:296)
1737.67 s
[aeson] word8 (src/Data/Aeson/Encoding/Internal.hs:299)
1737.67 s
[aeson] word16 (src/Data/Aeson/Encoding/Internal.hs:302)
1737.67 s
[aeson] word32 (src/Data/Aeson/Encoding/Internal.hs:305)
1737.67 s
[aeson] word64 (src/Data/Aeson/Encoding/Internal.hs:308)
1737.67 s
[aeson] word (src/Data/Aeson/Encoding/Internal.hs:311)
1737.67 s
[aeson] integer (src/Data/Aeson/Encoding/Internal.hs:314)
1737.67 s
[aeson] float (src/Data/Aeson/Encoding/Internal.hs:317)
1737.67 s
[aeson] scientific (src/Data/Aeson/Encoding/Internal.hs:337)
1737.67 s
[aeson] int8Text (src/Data/Aeson/Encoding/Internal.hs:351)
1737.67 s
[aeson] int16Text (src/Data/Aeson/Encoding/Internal.hs:354)
1737.67 s
[aeson] int32Text (src/Data/Aeson/Encoding/Internal.hs:357)
1737.67 s
[aeson] int64Text (src/Data/Aeson/Encoding/Internal.hs:360)
1737.67 s
[aeson] intText (src/Data/Aeson/Encoding/Internal.hs:363)
1737.67 s
[aeson] word8Text (src/Data/Aeson/Encoding/Internal.hs:366)
1737.67 s
[aeson] word16Text (src/Data/Aeson/Encoding/Internal.hs:369)
1737.67 s
[aeson] word32Text (src/Data/Aeson/Encoding/Internal.hs:372)
1737.67 s
[aeson] word64Text (src/Data/Aeson/Encoding/Internal.hs:375)
1737.67 s
[aeson] wordText (src/Data/Aeson/Encoding/Internal.hs:378)
1737.67 s
[aeson] integerText (src/Data/Aeson/Encoding/Internal.hs:381)
1737.67 s
[aeson] floatText (src/Data/Aeson/Encoding/Internal.hs:384)
1737.67 s
[aeson] scientificText (src/Data/Aeson/Encoding/Internal.hs:408)
1737.67 s
[aeson] day (src/Data/Aeson/Encoding/Internal.hs:415)
1737.67 s
[aeson] month (src/Data/Aeson/Encoding/Internal.hs:418)
1737.67 s
[aeson] quarter (src/Data/Aeson/Encoding/Internal.hs:421)
1737.67 s
[aeson] localTime (src/Data/Aeson/Encoding/Internal.hs:424)
1737.67 s
[aeson] utcTime (src/Data/Aeson/Encoding/Internal.hs:427)
1737.67 s
[aeson] timeOfDay (src/Data/Aeson/Encoding/Internal.hs:430)
1737.68 s
[aeson] zonedTime (src/Data/Aeson/Encoding/Internal.hs:433)
1737.68 s
[aeson] value (src/Data/Aeson/Encoding/Internal.hs:440)
1737.68 s
[aeson] comma (src/Data/Aeson/Encoding/Internal.hs:272)
1737.68 s
[aeson] colon (src/Data/Aeson/Encoding/Internal.hs:272)
1737.68 s
[aeson] openBracket (src/Data/Aeson/Encoding/Internal.hs:272)
1737.68 s
[aeson] closeBracket (src/Data/Aeson/Encoding/Internal.hs:272)
1737.68 s
[aeson] openCurly (src/Data/Aeson/Encoding/Internal.hs:272)
1737.68 s
[aeson] closeCurly (src/Data/Aeson/Encoding/Internal.hs:272)
1738.23 s
[aeson] Warning: 'Encoding' is ambiguous. It is defined
1738.23 s
[aeson] * at src/Data/Aeson/Encoding/Internal.hs:82:25
1738.23 s
[aeson] * at src/Data/Aeson/Encoding/Internal.hs:88:1
1738.23 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1738.23 s
[aeson] by specifying the type/value namespace explicitly.
1738.23 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Encoding/Internal.hs:82:1
1738.23 s
[aeson] Warning: 'Text' is out of scope.
1738.23 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1738.24 s
[aeson] 27% ( 18 / 65) in 'Data.Aeson.Encoding'
1738.24 s
[aeson] Missing documentation for:
1738.24 s
[aeson] encodingToLazyByteString (src/Data/Aeson/Encoding/Internal.hs:97)
1738.24 s
[aeson] pair (src/Data/Aeson/Encoding/Internal.hs:133)
1738.24 s
[aeson] pairStr (src/Data/Aeson/Encoding/Internal.hs:137)
1738.25 s
[aeson] pair' (src/Data/Aeson/Encoding/Internal.hs:141)
1738.25 s
[aeson] nullEncoding (src/Data/Aeson/Encoding/Internal.hs:167)
1738.25 s
[aeson] emptyArray_ (src/Data/Aeson/Encoding/Internal.hs:170)
1738.25 s
[aeson] emptyObject_ (src/Data/Aeson/Encoding/Internal.hs:173)
1738.25 s
[aeson] text (src/Data/Aeson/Encoding/Internal.hs:249)
1738.25 s
[aeson] lazyText (src/Data/Aeson/Encoding/Internal.hs:252)
1738.25 s
[aeson] string (src/Data/Aeson/Encoding/Internal.hs:265)
1738.25 s
[aeson] list (src/Data/Aeson/Encoding/Internal.hs:195)
1738.25 s
[aeson] null_ (src/Data/Aeson/Encoding/Internal.hs:182)
1738.25 s
[aeson] bool (src/Data/Aeson/Encoding/Internal.hs:185)
1738.25 s
[aeson] int8 (src/Data/Aeson/Encoding/Internal.hs:284)
1738.25 s
[aeson] int16 (src/Data/Aeson/Encoding/Internal.hs:287)
1738.25 s
[aeson] int32 (src/Data/Aeson/Encoding/Internal.hs:290)
1738.25 s
[aeson] int64 (src/Data/Aeson/Encoding/Internal.hs:293)
1738.25 s
[aeson] int (src/Data/Aeson/Encoding/Internal.hs:296)
1738.25 s
[aeson] word8 (src/Data/Aeson/Encoding/Internal.hs:299)
1738.25 s
[aeson] word16 (src/Data/Aeson/Encoding/Internal.hs:302)
1738.25 s
[aeson] word32 (src/Data/Aeson/Encoding/Internal.hs:305)
1738.25 s
[aeson] word64 (src/Data/Aeson/Encoding/Internal.hs:308)
1738.25 s
[aeson] word (src/Data/Aeson/Encoding/Internal.hs:311)
1738.25 s
[aeson] integer (src/Data/Aeson/Encoding/Internal.hs:314)
1738.25 s
[aeson] float (src/Data/Aeson/Encoding/Internal.hs:317)
1738.25 s
[aeson] scientific (src/Data/Aeson/Encoding/Internal.hs:337)
1738.25 s
[aeson] int8Text (src/Data/Aeson/Encoding/Internal.hs:351)
1738.25 s
[aeson] int16Text (src/Data/Aeson/Encoding/Internal.hs:354)
1738.25 s
[aeson] int32Text (src/Data/Aeson/Encoding/Internal.hs:357)
1738.25 s
[aeson] int64Text (src/Data/Aeson/Encoding/Internal.hs:360)
1738.25 s
[aeson] intText (src/Data/Aeson/Encoding/Internal.hs:363)
1738.25 s
[aeson] word8Text (src/Data/Aeson/Encoding/Internal.hs:366)
1738.25 s
[aeson] word16Text (src/Data/Aeson/Encoding/Internal.hs:369)
1738.25 s
[aeson] word32Text (src/Data/Aeson/Encoding/Internal.hs:372)
1738.25 s
[aeson] word64Text (src/Data/Aeson/Encoding/Internal.hs:375)
1738.25 s
[aeson] wordText (src/Data/Aeson/Encoding/Internal.hs:378)
1738.25 s
[aeson] integerText (src/Data/Aeson/Encoding/Internal.hs:381)
1738.25 s
[aeson] floatText (src/Data/Aeson/Encoding/Internal.hs:384)
1738.25 s
[aeson] scientificText (src/Data/Aeson/Encoding/Internal.hs:408)
1738.25 s
[aeson] day (src/Data/Aeson/Encoding/Internal.hs:415)
1738.25 s
[aeson] month (src/Data/Aeson/Encoding/Internal.hs:418)
1738.25 s
[aeson] quarter (src/Data/Aeson/Encoding/Internal.hs:421)
1738.25 s
[aeson] localTime (src/Data/Aeson/Encoding/Internal.hs:424)
1738.25 s
[aeson] utcTime (src/Data/Aeson/Encoding/Internal.hs:427)
1738.25 s
[aeson] timeOfDay (src/Data/Aeson/Encoding/Internal.hs:430)
1738.25 s
[aeson] zonedTime (src/Data/Aeson/Encoding/Internal.hs:433)
1738.25 s
[aeson] value (src/Data/Aeson/Encoding/Internal.hs:440)
1738.29 s
[pointed] Phase: updateAutotoolsGnuConfigScriptsPhase
1738.31 s
[pointed] Phase: configurePhase
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
1738.37 s
[pointed] Using Parsec parser
1738.37 s
[pointed] Configuring pointed-5.0.5...
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 )
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 )
1738.80 s
[lens] Phase: updateAutotoolsGnuConfigScriptsPhase
1738.88 s
[lens] Phase: configurePhase
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
1738.96 s
[lens] Using Parsec parser
1738.96 s
[lens] Configuring lens-5.3.4...
1740.25 s
[aeson] Warning: 'Object' is ambiguous. It is defined
1740.25 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
1740.25 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
1740.25 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1740.25 s
[aeson] by specifying the type/value namespace explicitly.
1740.25 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
1740.25 s
[aeson] Warning: 'Array' is ambiguous. It is defined
1740.25 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:367:14
1740.25 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:363:1
1740.25 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1740.25 s
[aeson] by specifying the type/value namespace explicitly.
1740.25 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:363:1
1740.27 s
[aeson] Warning: 'ToJSONKey' is out of scope.
1740.27 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.27 s
[aeson] Warning: 'String' is ambiguous. It is defined
1740.27 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:368:14
1740.27 s
[aeson] * in ‘GHC.Base’
1740.27 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1740.27 s
[aeson] by specifying the type/value namespace explicitly.
1740.27 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
1740.28 s
[aeson] Warning: 'ToJSONKeyFunction' is out of scope.
1740.28 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.28 s
[aeson] Warning: 'ToJSONKeyValue' is out of scope.
1740.28 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.28 s
[aeson] Warning: 'ToJSONKeyText' is out of scope.
1740.28 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.28 s
[aeson] Warning: 'genericToJSONKey' is out of scope.
1740.28 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.31 s
[aeson] Warning: 'Bool' is ambiguous. It is defined
1740.31 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:370:14
1740.31 s
[aeson] * in ‘GHC.Types’
1740.31 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1740.31 s
[aeson] by specifying the type/value namespace explicitly.
1740.31 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
1740.31 s
[aeson] Warning: 'Boolean' is out of scope.
1740.31 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.35 s
[aeson] Warning: 'ConsParseJSON' is out of scope.
1740.35 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1740.45 s
[pointed] Flags chosen: comonad=True, containers=True, kan-extensions=True,
1740.45 s
[pointed] semigroupoids=True, stm=True, tagged=True, transformers=True,
1740.45 s
[pointed] unordered-containers=True
1740.45 s
[pointed] Dependency base >=4.9 && <5: using base-4.18.1.0
1740.45 s
[pointed] Dependency comonad >=5 && <6: using comonad-5.0.9
1740.45 s
[pointed] Dependency containers >=0.4 && <0.9: using containers-0.6.7
1740.45 s
[pointed] Dependency data-default-class >=0.0.1 && <0.3: using
1740.45 s
[pointed] data-default-class-0.1.2.2
1740.45 s
[pointed] Dependency hashable >=1.1 && <1.6: using hashable-1.4.7.0
1740.45 s
[pointed] Dependency kan-extensions >=5 && <6: using kan-extensions-5.2.6
1740.45 s
[pointed] Dependency semigroupoids >=4 && <7: using semigroupoids-6.0.1
1740.45 s
[pointed] Dependency stm >=2.1.2.1 && <2.6: using stm-2.5.1.0
1740.45 s
[pointed] Dependency tagged >=0.5 && <1: using tagged-0.8.8
1740.45 s
[pointed] Dependency transformers >=0.2 && <0.7: using transformers-0.6.1.0
1740.45 s
[pointed] Dependency transformers-compat >=0.3 && <1: using transformers-compat-0.7.2
1740.45 s
[pointed] Dependency unordered-containers >=0.2 && <0.3: using
1740.45 s
[pointed] unordered-containers-0.2.20
1741.53 s
[lens] Flags chosen: benchmark-uniplate=False, dump-splices=False, inlining=True,
1741.53 s
[lens] j=False, test-hunit=True, test-properties=True, test-templates=True,
1741.53 s
[lens] trustworthy=True
1741.53 s
[lens] Dependency array >=0.5.0.0 && <0.6: using array-0.5.5.0
1741.53 s
[lens] Dependency assoc >=1.0.2 && <1.2: using assoc-1.1.1
1741.53 s
[lens] Dependency base >=4.9 && <5: using base-4.18.1.0
1741.53 s
[lens] Dependency base-orphans >=0.5.2 && <1: using base-orphans-0.9.3
1741.53 s
[lens] Dependency bifunctors >=5.5.7 && <6: using bifunctors-5.6.2
1741.53 s
[lens] Dependency bytestring >=0.10.4.0 && <0.13: using bytestring-0.11.5.2
1741.53 s
[lens] Dependency call-stack >=0.1 && <0.5: using call-stack-0.4.0
1741.53 s
[lens] Dependency comonad >=5.0.7 && <6: using comonad-5.0.9
1741.53 s
[lens] Dependency containers >=0.5.5.1 && <0.9: using containers-0.6.7
1741.53 s
[lens] Dependency contravariant >=1.4 && <2: using contravariant-1.5.5
1741.53 s
[lens] Dependency distributive >=0.5.1 && <1: using distributive-0.6.2.1
1741.53 s
[lens] Dependency exceptions >=0.8.2.1 && <1: using exceptions-0.10.7
1741.53 s
[lens] Dependency filepath >=1.2.0.0 && <1.6: using filepath-1.4.100.4
1741.53 s
[lens] Dependency free >=5.1.5 && <6: using free-5.2
1741.53 s
[lens] Dependency ghc-prim: using ghc-prim-0.10.0
1741.53 s
[lens] Dependency hashable >=1.2.7.0 && <1.6: using hashable-1.4.7.0
1741.53 s
[lens] Dependency indexed-traversable >=0.1 && <0.2: using indexed-traversable-0.1.4
1741.53 s
[lens] Dependency indexed-traversable-instances >=0.1 && <0.2: using
1741.53 s
[lens] indexed-traversable-instances-0.1.2
1741.53 s
[lens] Dependency kan-extensions >=5 && <6: using kan-extensions-5.2.6
1741.53 s
[lens] Dependency mtl >=2.2.1 && <2.4: using mtl-2.3.1
1741.53 s
[lens] Dependency parallel >=3.2.1.0 && <3.3: using parallel-3.2.2.0
1741.53 s
[lens] Dependency profunctors >=5.5.2 && <6: using profunctors-5.6.2
1741.53 s
[lens] Dependency reflection >=2.1 && <3: using reflection-2.1.9
1741.53 s
[lens] Dependency semigroupoids >=5.0.1 && <7: using semigroupoids-6.0.1
1741.54 s
[lens] Dependency strict >=0.4 && <0.6: using strict-0.5.1
1741.54 s
[lens] Dependency tagged >=0.8.6 && <1: using tagged-0.8.8
1741.54 s
[lens] Dependency template-haskell >=2.11.1.0 && <2.24: using
1741.54 s
[lens] template-haskell-2.20.0.0
1741.54 s
[lens] Dependency text >=1.2.3.0 && <2.2: using text-2.0.2
1741.54 s
[lens] Dependency th-abstraction >=0.4.1 && <0.8: using th-abstraction-0.7.1.0
1741.54 s
[lens] Dependency these >=1.1.1.1 && <1.3: using these-1.2.1
1741.54 s
[lens] Dependency transformers >=0.5.0.0 && <0.7: using transformers-0.6.1.0
1741.54 s
[lens] Dependency transformers-compat >=0.5.0.4 && <1: using
1741.54 s
[lens] transformers-compat-0.7.2
1741.54 s
[lens] Dependency unordered-containers >=0.2.10 && <0.3: using
1741.54 s
[lens] unordered-containers-0.2.20
1741.54 s
[lens] Dependency vector >=0.12.1.2 && <0.14: using vector-0.13.2.0
1741.54 s
[lens] Dependency base: using base-4.18.1.0
1741.54 s
[lens] Dependency lens: using lens-5.3.4
1741.54 s
[lens] Dependency QuickCheck >=2.4: using QuickCheck-2.14.3
1741.54 s
[lens] Dependency base: using base-4.18.1.0
1741.54 s
[lens] Dependency lens: using lens-5.3.4
1741.54 s
[lens] Dependency test-framework >=0.6: using test-framework-0.8.2.2
1741.54 s
[lens] Dependency test-framework-quickcheck2 >=0.2: using
1741.54 s
[lens] test-framework-quickcheck2-0.3.0.6
1741.54 s
[lens] Dependency transformers: using transformers-0.6.1.0
1741.54 s
[lens] Dependency HUnit >=1.2: using HUnit-1.6.2.0
1741.54 s
[lens] Dependency base: using base-4.18.1.0
1741.54 s
[lens] Dependency bytestring: using bytestring-0.11.5.2
1741.54 s
[lens] Dependency containers: using containers-0.6.7
1741.54 s
[lens] Dependency lens: using lens-5.3.4
1741.54 s
[lens] Dependency mtl: using mtl-2.3.1
1741.54 s
[lens] Dependency test-framework >=0.6: using test-framework-0.8.2.2
1741.54 s
[lens] Dependency test-framework-hunit >=0.2: using test-framework-hunit-0.3.0.2
1741.54 s
[lens] Dependency text: using text-2.0.2
1741.54 s
[lens] Dependency base <5: using base-4.18.1.0
1741.54 s
[lens] Dependency deepseq: using deepseq-1.4.8.1
1741.54 s
[lens] Dependency simple-reflect >=0.3.1: using simple-reflect-0.3.3
1741.75 s
[pointed] Source component graph: component lib
1741.82 s
[pointed] Configured component graph:
1741.82 s
[pointed] component pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
1741.82 s
[pointed] include base-4.18.1.0
1741.82 s
[pointed] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1741.82 s
[pointed] include containers-0.6.7
1741.82 s
[pointed] include data-default-class-0.1.2.2-AiGPNO3vZSZDePo1Q5RygF
1741.82 s
[pointed] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1741.82 s
[pointed] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
1741.82 s
[pointed] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1741.82 s
[pointed] include stm-2.5.1.0
1741.82 s
[pointed] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
1741.82 s
[pointed] include transformers-0.6.1.0
1741.82 s
[pointed] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
1741.82 s
[pointed] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
1741.82 s
[pointed] Linked component graph:
1741.82 s
[pointed] unit pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
1741.82 s
[pointed] include base-4.18.1.0
1741.82 s
[pointed] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1741.82 s
[pointed] include containers-0.6.7
1741.82 s
[pointed] include data-default-class-0.1.2.2-AiGPNO3vZSZDePo1Q5RygF
1741.82 s
[pointed] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1741.82 s
[pointed] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
1741.82 s
[pointed] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1741.82 s
[pointed] include stm-2.5.1.0
1741.82 s
[pointed] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
1741.82 s
[pointed] include transformers-0.6.1.0
1741.82 s
[pointed] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
1741.82 s
[pointed] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
1741.82 s
[pointed] Data.Copointed=pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4:Data.Copointed,Data.Pointed=pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4:Data.Pointed
1741.82 s
[pointed] Ready component graph:
1741.82 s
[pointed] definite pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
1741.82 s
[pointed] depends base-4.18.1.0
1741.82 s
[pointed] depends comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1741.82 s
[pointed] depends containers-0.6.7
1741.82 s
[pointed] depends data-default-class-0.1.2.2-AiGPNO3vZSZDePo1Q5RygF
1741.82 s
[pointed] depends hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1741.82 s
[pointed] depends kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
1741.82 s
[pointed] depends semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1741.82 s
[pointed] depends stm-2.5.1.0
1741.82 s
[pointed] depends tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
1741.82 s
[pointed] depends transformers-0.6.1.0
1741.82 s
[pointed] depends transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
1741.82 s
[pointed] depends unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
1741.82 s
[pointed] Using Cabal-3.10.1.0 compiled by ghc-9.6
1741.82 s
[pointed] Using compiler: ghc-9.6.3
1741.82 s
[pointed] Using install prefix:
1741.82 s
[pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
1741.82 s
[pointed] Executables installed in:
1741.82 s
[pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/bin
1741.82 s
[pointed] Libraries installed in:
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
1741.82 s
[pointed] Dynamic Libraries installed in:
1741.82 s
[pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3
1741.82 s
[pointed] Private executables installed in:
1741.82 s
[pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/libexec/x86_64-linux-ghc-9.6.3/pointed-5.0.5
1741.82 s
[pointed] Data files installed in:
1741.82 s
[pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/share/x86_64-linux-ghc-9.6.3/pointed-5.0.5
1741.82 s
[pointed] Documentation installed in:
1741.82 s
[pointed] /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc/share/doc/pointed-5.0.5
1741.82 s
[pointed] Configuration files installed in:
1741.82 s
[pointed] /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/etc
1741.82 s
[pointed] No alex found
1741.82 s
[pointed] Using ar found on system at:
1741.82 s
[pointed] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
1741.82 s
[pointed] No c2hs found
1741.82 s
[pointed] No cpphs found
1741.82 s
[pointed] No doctest found
1741.82 s
[pointed] Using gcc version 14.3.0 given by user at:
1741.82 s
[pointed] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
1741.82 s
[pointed] Using ghc version 9.6.3 found on system at:
1741.82 s
[pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
1741.82 s
[pointed] Using ghc-pkg version 9.6.3 found on system at:
1741.82 s
[pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
1741.82 s
[pointed] No ghcjs found
1741.82 s
[pointed] No ghcjs-pkg found
1741.82 s
[pointed] No greencard found
1741.82 s
[pointed] Using haddock version 2.29.1 found on system at:
1741.82 s
[pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
1741.82 s
[pointed] No happy found
1741.82 s
[pointed] Using haskell-suite found on system at: haskell-suite-dummy-location
1741.82 s
[pointed] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1741.82 s
[pointed] No hmake found
1741.82 s
[pointed] Using hpc version 0.68 found on system at:
1741.82 s
[pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
1741.82 s
[pointed] Using hsc2hs version 0.68.9 found on system at:
1741.82 s
[pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
1741.82 s
[pointed] Using hscolour version 1.25 found on system at:
1741.82 s
[pointed] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
1741.82 s
[pointed] No jhc found
1741.82 s
[pointed] Using ld found on system at:
1741.82 s
[pointed] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
1741.82 s
[pointed] No pkg-config found
1741.82 s
[pointed] Using runghc version 9.6.3 found on system at:
1741.82 s
[pointed] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
1741.82 s
[pointed] Using strip version 2.44 found on system at:
1741.82 s
[pointed] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
1741.82 s
[pointed] Using tar found on system at:
1741.82 s
[pointed] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
1741.82 s
[pointed] No uhc found
1742.11 s
[pointed] Phase: buildPhase
1742.42 s
[lens] Source component graph:
1742.42 s
[lens] component test:doctests
1742.42 s
[lens] component lib
1742.42 s
[lens] component test:hunit dependency lib
1742.42 s
[lens] component test:properties dependency lib
1742.42 s
[lens] component test:templates dependency lib
1742.42 s
[lens] Configured component graph:
1742.42 s
[lens] component lens-5.3.4-ViDsUaiM0TJLg2jCtEBXw-doctests
1742.42 s
[lens] include base-4.18.1.0
1742.42 s
[lens] include deepseq-1.4.8.1
1742.42 s
[lens] include simple-reflect-0.3.3-1jKYH5Sh1Yt77S4tHMuf7F
1742.42 s
[lens] component lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.42 s
[lens] include array-0.5.5.0
1742.42 s
[lens] include assoc-1.1.1-Drq9QKvUYiAOaSIX2zWsU
1742.42 s
[lens] include base-4.18.1.0
1742.42 s
[lens] include base-orphans-0.9.3-EsfNI13WQjn4lDOQc9i0fL
1742.42 s
[lens] include bifunctors-5.6.2-Lbz7IW7RbEWLszMdXwAUwT
1742.42 s
[lens] include bytestring-0.11.5.2
1742.42 s
[lens] include call-stack-0.4.0-5MNBRF9AhgOFCmdblAdnEo
1742.42 s
[lens] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1742.42 s
[lens] include containers-0.6.7
1742.42 s
[lens] include contravariant-1.5.5-BJswvy5l6NbKCNb8GIbKMn
1742.42 s
[lens] include distributive-0.6.2.1-IGSS9djK77G3Oq1CJlJAaw
1742.42 s
[lens] include exceptions-0.10.7
1742.42 s
[lens] include filepath-1.4.100.4
1742.42 s
[lens] include free-5.2-pmOseOpbmmJxO61jWrFWI
1742.42 s
[lens] include ghc-prim-0.10.0
1742.42 s
[lens] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1742.42 s
[lens] include indexed-traversable-0.1.4-3KQfryvD6CkLv2KxalzUb5
1742.42 s
[lens] include indexed-traversable-instances-0.1.2-3K6JKtKWWRkLY5MVB3w6xq
1742.42 s
[lens] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
1742.42 s
[lens] include mtl-2.3.1
1742.42 s
[lens] include parallel-3.2.2.0-1kILbc471scI04imHIENqR
1742.42 s
[lens] include profunctors-5.6.2-36avph0rW537qvMb6XX38R
1742.42 s
[lens] include reflection-2.1.9-7DSrmnxebYRFDeqWca0bwP
1742.42 s
[lens] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1742.42 s
[lens] include strict-0.5.1-JQp8IUgd9mIGuI9YRo3e6a
1742.42 s
[lens] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
1742.42 s
[lens] include template-haskell-2.20.0.0
1742.42 s
[lens] include text-2.0.2
1742.42 s
[lens] include th-abstraction-0.7.1.0-705kaaInCfSGFvRe7PqSX0
1742.42 s
[lens] include these-1.2.1-5P6Fv3Pe7oRFsFG3HrYm87
1742.42 s
[lens] include transformers-0.6.1.0
1742.43 s
[lens] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
1742.43 s
[lens] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
1742.43 s
[lens] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
1742.43 s
[lens] component lens-5.3.4-DLosF5BULta67O5fU94xcI-hunit
1742.43 s
[lens] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include bytestring-0.11.5.2
1742.43 s
[lens] include containers-0.6.7
1742.43 s
[lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.43 s
[lens] include mtl-2.3.1
1742.43 s
[lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
1742.43 s
[lens] include test-framework-hunit-0.3.0.2-6IcviKDR8aqGttCrpbvXXU
1742.43 s
[lens] include text-2.0.2
1742.43 s
[lens] component lens-5.3.4-CRRUfaDIeGs3doq65RrjgY-properties
1742.43 s
[lens] include QuickCheck-2.14.3-IAjrznsuljOBEe2hEqHytS
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.43 s
[lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
1742.43 s
[lens] include test-framework-quickcheck2-0.3.0.6-HkHjoisjix325Erf8tshaD
1742.43 s
[lens] include transformers-0.6.1.0
1742.43 s
[lens] component lens-5.3.4-p7HozHjf0z4oRn4be2F4a-templates
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.43 s
[lens] Linked component graph:
1742.43 s
[lens] unit lens-5.3.4-ViDsUaiM0TJLg2jCtEBXw-doctests
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include deepseq-1.4.8.1
1742.43 s
[lens] include simple-reflect-0.3.3-1jKYH5Sh1Yt77S4tHMuf7F
1742.43 s
[lens] unit lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.43 s
[lens] include array-0.5.5.0
1742.43 s
[lens] include assoc-1.1.1-Drq9QKvUYiAOaSIX2zWsU
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include base-orphans-0.9.3-EsfNI13WQjn4lDOQc9i0fL
1742.43 s
[lens] include bifunctors-5.6.2-Lbz7IW7RbEWLszMdXwAUwT
1742.43 s
[lens] include bytestring-0.11.5.2
1742.43 s
[lens] include call-stack-0.4.0-5MNBRF9AhgOFCmdblAdnEo
1742.43 s
[lens] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1742.43 s
[lens] include containers-0.6.7
1742.43 s
[lens] include contravariant-1.5.5-BJswvy5l6NbKCNb8GIbKMn
1742.43 s
[lens] include distributive-0.6.2.1-IGSS9djK77G3Oq1CJlJAaw
1742.43 s
[lens] include exceptions-0.10.7
1742.43 s
[lens] include filepath-1.4.100.4
1742.43 s
[lens] include free-5.2-pmOseOpbmmJxO61jWrFWI
1742.43 s
[lens] include ghc-prim-0.10.0
1742.43 s
[lens] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1742.43 s
[lens] include indexed-traversable-0.1.4-3KQfryvD6CkLv2KxalzUb5
1742.43 s
[lens] include indexed-traversable-instances-0.1.2-3K6JKtKWWRkLY5MVB3w6xq
1742.43 s
[lens] include kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
1742.43 s
[lens] include mtl-2.3.1
1742.43 s
[lens] include parallel-3.2.2.0-1kILbc471scI04imHIENqR
1742.43 s
[lens] include profunctors-5.6.2-36avph0rW537qvMb6XX38R
1742.43 s
[lens] include reflection-2.1.9-7DSrmnxebYRFDeqWca0bwP
1742.43 s
[lens] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1742.43 s
[lens] include strict-0.5.1-JQp8IUgd9mIGuI9YRo3e6a
1742.43 s
[lens] include tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
1742.43 s
[lens] include template-haskell-2.20.0.0
1742.43 s
[lens] include text-2.0.2
1742.43 s
[lens] include th-abstraction-0.7.1.0-705kaaInCfSGFvRe7PqSX0
1742.43 s
[lens] include these-1.2.1-5P6Fv3Pe7oRFsFG3HrYm87
1742.43 s
[lens] include transformers-0.6.1.0
1742.43 s
[lens] include transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
1742.43 s
[lens] include unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
1742.43 s
[lens] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
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
1742.43 s
[lens] unit lens-5.3.4-DLosF5BULta67O5fU94xcI-hunit
1742.43 s
[lens] include HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include bytestring-0.11.5.2
1742.43 s
[lens] include containers-0.6.7
1742.43 s
[lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.43 s
[lens] include mtl-2.3.1
1742.43 s
[lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
1742.43 s
[lens] include test-framework-hunit-0.3.0.2-6IcviKDR8aqGttCrpbvXXU
1742.43 s
[lens] include text-2.0.2
1742.43 s
[lens] unit lens-5.3.4-CRRUfaDIeGs3doq65RrjgY-properties
1742.43 s
[lens] include QuickCheck-2.14.3-IAjrznsuljOBEe2hEqHytS
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.43 s
[lens] include test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
1742.43 s
[lens] include test-framework-quickcheck2-0.3.0.6-HkHjoisjix325Erf8tshaD
1742.43 s
[lens] include transformers-0.6.1.0
1742.43 s
[lens] unit lens-5.3.4-p7HozHjf0z4oRn4be2F4a-templates
1742.43 s
[lens] include base-4.18.1.0
1742.43 s
[lens] include lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.44 s
[lens] Ready component graph:
1742.44 s
[lens] definite lens-5.3.4-ViDsUaiM0TJLg2jCtEBXw-doctests
1742.44 s
[lens] depends base-4.18.1.0
1742.44 s
[lens] depends deepseq-1.4.8.1
1742.44 s
[lens] depends simple-reflect-0.3.3-1jKYH5Sh1Yt77S4tHMuf7F
1742.44 s
[lens] definite lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.44 s
[lens] depends array-0.5.5.0
1742.44 s
[lens] depends assoc-1.1.1-Drq9QKvUYiAOaSIX2zWsU
1742.44 s
[lens] depends base-4.18.1.0
1742.44 s
[lens] depends base-orphans-0.9.3-EsfNI13WQjn4lDOQc9i0fL
1742.44 s
[lens] depends bifunctors-5.6.2-Lbz7IW7RbEWLszMdXwAUwT
1742.44 s
[lens] depends bytestring-0.11.5.2
1742.44 s
[lens] depends call-stack-0.4.0-5MNBRF9AhgOFCmdblAdnEo
1742.44 s
[lens] depends comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1742.44 s
[lens] depends containers-0.6.7
1742.44 s
[lens] depends contravariant-1.5.5-BJswvy5l6NbKCNb8GIbKMn
1742.44 s
[lens] depends distributive-0.6.2.1-IGSS9djK77G3Oq1CJlJAaw
1742.44 s
[lens] depends exceptions-0.10.7
1742.44 s
[lens] depends filepath-1.4.100.4
1742.44 s
[lens] depends free-5.2-pmOseOpbmmJxO61jWrFWI
1742.44 s
[lens] depends ghc-prim-0.10.0
1742.44 s
[lens] depends hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1742.44 s
[lens] depends indexed-traversable-0.1.4-3KQfryvD6CkLv2KxalzUb5
1742.44 s
[lens] depends indexed-traversable-instances-0.1.2-3K6JKtKWWRkLY5MVB3w6xq
1742.44 s
[lens] depends kan-extensions-5.2.6-KlkWmLq57Oc5hnm7ubBXuk
1742.44 s
[lens] depends mtl-2.3.1
1742.44 s
[lens] depends parallel-3.2.2.0-1kILbc471scI04imHIENqR
1742.44 s
[lens] depends profunctors-5.6.2-36avph0rW537qvMb6XX38R
1742.44 s
[lens] depends reflection-2.1.9-7DSrmnxebYRFDeqWca0bwP
1742.44 s
[lens] depends semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1742.44 s
[lens] depends strict-0.5.1-JQp8IUgd9mIGuI9YRo3e6a
1742.44 s
[lens] depends tagged-0.8.8-KnTUHMtQah6DmtzwHmdxEL
1742.44 s
[lens] depends template-haskell-2.20.0.0
1742.44 s
[lens] depends text-2.0.2
1742.44 s
[lens] depends th-abstraction-0.7.1.0-705kaaInCfSGFvRe7PqSX0
1742.44 s
[lens] depends these-1.2.1-5P6Fv3Pe7oRFsFG3HrYm87
1742.44 s
[lens] depends transformers-0.6.1.0
1742.44 s
[lens] depends transformers-compat-0.7.2-3t6mp1IijKeIAaOKqKOu9E
1742.44 s
[lens] depends unordered-containers-0.2.20-Jvmv6sO8RGN72Ih9Ec3cPn
1742.44 s
[lens] depends vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
1742.44 s
[lens] definite lens-5.3.4-CRRUfaDIeGs3doq65RrjgY-properties
1742.44 s
[lens] depends QuickCheck-2.14.3-IAjrznsuljOBEe2hEqHytS
1742.44 s
[lens] depends base-4.18.1.0
1742.44 s
[lens] depends lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.44 s
[lens] depends test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
1742.44 s
[lens] depends test-framework-quickcheck2-0.3.0.6-HkHjoisjix325Erf8tshaD
1742.44 s
[lens] depends transformers-0.6.1.0
1742.44 s
[lens] definite lens-5.3.4-DLosF5BULta67O5fU94xcI-hunit
1742.44 s
[lens] depends HUnit-1.6.2.0-Cmk1z9y2zFk3aX4g3H2nfT
1742.44 s
[lens] depends base-4.18.1.0
1742.44 s
[lens] depends bytestring-0.11.5.2
1742.44 s
[lens] depends containers-0.6.7
1742.44 s
[lens] depends lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.44 s
[lens] depends mtl-2.3.1
1742.44 s
[lens] depends test-framework-0.8.2.2-LvAu41JlrMYAo0mc2w31nY
1742.44 s
[lens] depends test-framework-hunit-0.3.0.2-6IcviKDR8aqGttCrpbvXXU
1742.44 s
[lens] depends text-2.0.2
1742.44 s
[lens] definite lens-5.3.4-p7HozHjf0z4oRn4be2F4a-templates
1742.44 s
[lens] depends base-4.18.1.0
1742.44 s
[lens] depends lens-5.3.4-BKpnf0XBYtTM6GuPu5kiP
1742.44 s
[lens] Using Cabal-3.10.1.0 compiled by ghc-9.6
1742.44 s
[lens] Using compiler: ghc-9.6.3
1742.44 s
[lens] Using install prefix: /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4
1742.44 s
[lens] Executables installed in:
1742.44 s
[lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/bin
1742.44 s
[lens] Libraries installed in:
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
1742.44 s
[lens] Dynamic Libraries installed in:
1742.44 s
[lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/lib/ghc-9.6.3/lib/x86_64-linux-ghc-9.6.3
1742.44 s
[lens] Private executables installed in:
1742.44 s
[lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/libexec/x86_64-linux-ghc-9.6.3/lens-5.3.4
1742.44 s
[lens] Data files installed in:
1742.44 s
[lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/share/x86_64-linux-ghc-9.6.3/lens-5.3.4
1742.44 s
[lens] Documentation installed in:
1742.44 s
[lens] /nix/store/ji17mji4rv431fdl3f1hs007gpfa97gg-lens-5.3.4-doc/share/doc/lens-5.3.4
1742.44 s
[lens] Configuration files installed in:
1742.44 s
[lens] /nix/store/zrzm5wvy412gygd293w91pfllm6ap2i2-lens-5.3.4/etc
1742.44 s
[lens] No alex found
1742.44 s
[lens] Using ar found on system at:
1742.52 s
[lens] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
1742.52 s
[lens] No c2hs found
1742.52 s
[lens] No cpphs found
1742.52 s
[lens] No doctest found
1742.52 s
[lens] Using gcc version 14.3.0 given by user at:
1742.52 s
[lens] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
1742.52 s
[lens] Using ghc version 9.6.3 found on system at:
1742.52 s
[lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
1742.52 s
[lens] Using ghc-pkg version 9.6.3 found on system at:
1742.52 s
[lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
1742.52 s
[lens] No ghcjs found
1742.52 s
[lens] No ghcjs-pkg found
1742.52 s
[lens] No greencard found
1742.52 s
[lens] Using haddock version 2.29.1 found on system at:
1742.52 s
[lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
1742.52 s
[lens] No happy found
1742.52 s
[lens] Using haskell-suite found on system at: haskell-suite-dummy-location
1742.52 s
[lens] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1742.52 s
[lens] No hmake found
1742.52 s
[lens] Using hpc version 0.68 found on system at:
1742.53 s
[lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
1742.53 s
[lens] Using hsc2hs version 0.68.9 found on system at:
1742.53 s
[lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
1742.53 s
[lens] Using hscolour version 1.25 found on system at:
1742.53 s
[lens] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
1742.53 s
[lens] No jhc found
1742.53 s
[lens] Using ld found on system at:
1742.53 s
[lens] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
1742.53 s
[lens] No pkg-config found
1742.53 s
[lens] Using runghc version 9.6.3 found on system at:
1742.53 s
[lens] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
1742.53 s
[lens] Using strip version 2.44 found on system at:
1742.53 s
[lens] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
1742.53 s
[lens] Using tar found on system at:
1742.53 s
[lens] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
1742.53 s
[lens] No uhc found
1742.54 s
[pointed] Preprocessing library for pointed-5.0.5..
1742.55 s
[pointed] Building library for pointed-5.0.5..
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 )
1743.32 s
[lens] Phase: buildPhase
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 )
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 )
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 )
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 )
1743.48 s
[shake] [61 of 71] Compiling General.Template ( src/General/Template.hs, dist/build/shake/shake-tmp/General/Template.o )
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 )
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 )
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 )
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 )
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 )
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 )
1743.87 s
[lens] Preprocessing test suite 'doctests' for lens-5.3.4..
1743.88 s
[lens] Building test suite 'doctests' for lens-5.3.4..
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 )
1744.24 s
[lens] [1 of 1] Compiling Main ( tests/doctests.hs, dist/build/doctests/doctests-tmp/Main.o )
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 )
1745.19 s
[lens] [2 of 2] Linking dist/build/doctests/doctests
1745.62 s
[pointed] [1 of 2] Compiling Data.Copointed ( src/Data/Copointed.hs, dist/build/Data/Copointed.p_o )
1745.91 s
[aeson] Warning: 'pairs' is out of scope.
1745.91 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1745.92 s
[aeson] Warning: 'Object' is ambiguous. It is defined
1745.92 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
1745.92 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
1745.92 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1745.92 s
[aeson] by specifying the type/value namespace explicitly.
1745.92 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
1745.93 s
[aeson] Warning: 'Map' is out of scope.
1745.93 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1745.93 s
[aeson] Warning: 'HashMap' is out of scope.
1745.93 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1745.93 s
[aeson] Warning: 'FromJSONKey' is out of scope.
1745.93 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1745.93 s
[aeson] Warning: 'Foo' is out of scope.
1745.93 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1745.93 s
[aeson] Warning: 'String' is ambiguous. It is defined
1745.93 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:368:14
1745.93 s
[aeson] * in ‘GHC.Base’
1745.93 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1745.93 s
[aeson] by specifying the type/value namespace explicitly.
1745.93 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:366:1
1745.93 s
[aeson] Warning: 'ByteString' is out of scope.
1745.93 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1745.93 s
[aeson] Warning: 'showsList' is out of scope.
1745.93 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1746.99 s
[lens] Preprocessing library for lens-5.3.4..
1747.06 s
[lens] Building library for lens-5.3.4..
1747.14 s
[pointed] [2 of 2] Compiling Data.Pointed ( src/Data/Pointed.hs, dist/build/Data/Pointed.p_o )
1747.54 s
[shake] [69 of 71] Compiling Development.Shake ( src/Development/Shake.hs, dist/build/shake/shake-tmp/Development/Shake.o )
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 )
1750.31 s
[aeson]
1750.31 s
[aeson] src/Data/Aeson/Types/ToJSON.hs:1615:23: warning : [ GHC-68441 ] [ -Wdeprecations ]
1750.31 s
[aeson] In the use of data constructor ‘Solo’
1750.31 s
[aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
1750.31 s
[aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
1750.31 s
[aeson] |
1750.31 s
[aeson] 1615 | liftToJSON _ t _ (Solo a) = t a
1750.31 s
[aeson] | ^^^^
1750.31 s
[aeson]
1750.31 s
[aeson] src/Data/Aeson/Types/ToJSON.hs:1618:27: warning : [ GHC-68441 ] [ -Wdeprecations ]
1750.31 s
[aeson] In the use of data constructor ‘Solo’
1750.31 s
[aeson] (imported from Data.Tuple.Solo, but defined in GHC.Tuple):
1750.31 s
[aeson] Deprecated: "The Solo constructor has been renamed to MkSolo to avoid punning."
1750.31 s
[aeson] |
1750.31 s
[aeson] 1618 | liftToEncoding _ t _ (Solo a) = t a
1750.31 s
[aeson] | ^^^^
1750.48 s
[aeson] 93% (138 /148) in 'Data.Aeson.Types'
1750.48 s
[aeson] Missing documentation for:
1750.48 s
[aeson] Key (src/Data/Aeson/Key.hs:44)
1750.48 s
[aeson] ToJSONKeyFunction (src/Data/Aeson/Types/ToJSON.hs:532)
1750.48 s
[aeson] GToJSONKey (src/Data/Aeson/Types/ToJSON.hs:596)
1750.48 s
[aeson] genericToJSONKey (src/Data/Aeson/Types/ToJSON.hs:592)
1750.48 s
[aeson] GFromJSONKey (src/Data/Aeson/Types/FromJSON.hs:521)
1750.48 s
[aeson] omitField1 (src/Data/Aeson/Types/ToJSON.hs:690)
1750.48 s
[aeson] omitField2 (src/Data/Aeson/Types/ToJSON.hs:723)
1750.48 s
[aeson] GToJSON (src/Data/Aeson/Types/Class.hs:120)
1750.48 s
[aeson] GToEncoding (src/Data/Aeson/Types/Class.hs:121)
1750.48 s
[aeson] JSONPath (src/Data/Aeson/Types/Internal.hs:116)
1750.55 s
[aeson] Warning: 'encode' is out of scope.
1750.55 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1750.55 s
[aeson] Warning: 'fromEncoding' is out of scope.
1750.55 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1750.56 s
[aeson] 100% ( 3 / 3) in 'Data.Aeson.Text'
1750.68 s
[aeson] 100% ( 12 / 12) in 'Data.Aeson.Decoding'
1750.90 s
[aeson] Warning: 'json' is out of scope.
1750.90 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1750.91 s
[aeson] Warning: 'Generic' is out of scope.
1750.91 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1750.92 s
[aeson] Warning: 'name' is out of scope.
1750.92 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1750.93 s
[aeson] Warning: 'Object' is ambiguous. It is defined
1750.93 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
1750.93 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
1750.93 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1750.93 s
[aeson] by specifying the type/value namespace explicitly.
1750.93 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
1750.95 s
[aeson] Cannot find documentation for: $optionsFields
1750.96 s
[aeson] 92% (132 /143) in 'Data.Aeson'
1750.96 s
[aeson] Missing documentation for:
1750.96 s
[aeson] Key (src/Data/Aeson/Key.hs:44)
1750.96 s
[aeson] JSONPath (src/Data/Aeson/Types/Internal.hs:116)
1750.96 s
[aeson] ToJSONKeyFunction (src/Data/Aeson/Types/ToJSON.hs:532)
1750.96 s
[aeson] GToJSONKey (src/Data/Aeson/Types/ToJSON.hs:596)
1750.96 s
[aeson] genericToJSONKey (src/Data/Aeson/Types/ToJSON.hs:592)
1750.96 s
[aeson] GFromJSONKey (src/Data/Aeson/Types/FromJSON.hs:521)
1750.96 s
[aeson] omitField1 (src/Data/Aeson/Types/ToJSON.hs:690)
1750.96 s
[aeson] omitField2 (src/Data/Aeson/Types/ToJSON.hs:723)
1750.96 s
[aeson] GToJSON (src/Data/Aeson/Types/Class.hs:120)
1750.96 s
[aeson] GToEncoding (src/Data/Aeson/Types/Class.hs:121)
1750.96 s
[aeson] parseIndexedJSON (src/Data/Aeson/Types/FromJSON.hs:170)
1751.26 s
[aeson] Warning: 'Value' is ambiguous. It is defined
1751.26 s
[aeson] * at src/Data/Aeson/Encoding/Internal.hs:130:15
1751.26 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:1
1751.26 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1751.26 s
[aeson] by specifying the type/value namespace explicitly.
1751.26 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Encoding/Internal.hs:129:1
1751.26 s
[aeson] 100% ( 2 / 2) in 'Data.Aeson.RFC8785'
1751.33 s
[shake] [71 of 71] Compiling Run ( src/Run.hs, dist/build/shake/shake-tmp/Run.o )
1751.37 s
[aeson] 100% ( 2 / 2) in 'Data.Aeson.QQ.Simple'
1751.93 s
[aeson] Warning: 'ToJSON' is ambiguous. It is defined
1751.93 s
[aeson] * at src/Data/Aeson/TH.hs:1906:16
1751.93 s
[aeson] * at src/Data/Aeson/Types/ToJSON.hs:291:1
1751.93 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1751.93 s
[aeson] by specifying the type/value namespace explicitly.
1751.93 s
[aeson] Defaulting to the one defined at src/Data/Aeson/TH.hs:1906:1
1751.94 s
[aeson] Warning: 'Value' is ambiguous. It is defined
1751.94 s
[aeson] * at src/Data/Aeson/TH.hs:1909:18
1751.94 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:1
1751.94 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1751.94 s
[aeson] by specifying the type/value namespace explicitly.
1751.94 s
[aeson] Defaulting to the one defined at src/Data/Aeson/TH.hs:1909:1
1751.95 s
[aeson] Warning: 'Object' is ambiguous. It is defined
1751.95 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:366:14
1751.95 s
[aeson] * at src/Data/Aeson/Types/Internal.hs:360:1
1751.95 s
[aeson] You may be able to disambiguate the identifier by qualifying it or
1751.95 s
[aeson] by specifying the type/value namespace explicitly.
1751.96 s
[aeson] Defaulting to the one defined at src/Data/Aeson/Types/Internal.hs:360:1
1751.96 s
[aeson] Warning: 'FromJSON3' is out of scope.
1751.96 s
[aeson] If you qualify the identifier, haddock can try to link it anyway.
1752.00 s
[aeson] 100% ( 25 / 25) in 'Data.Aeson.TH'
1754.24 s
[pointed] Phase: checkPhase
1754.44 s
[shake] [72 of 72] Linking dist/build/shake/shake
1754.50 s
[pointed] Package has no test suites.
1754.53 s
[pointed] Phase: haddockPhase
1755.18 s
[pointed] Preprocessing library for pointed-5.0.5..
1755.18 s
[pointed] Running Haddock on library for pointed-5.0.5..
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 )
1755.48 s
[pointed] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
1756.26 s
[aeson] Warning: Data.Aeson.Encoding.Internal: could not find link destinations for:
1756.26 s
[aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
1756.26 s
[aeson] - Data.Aeson.Types.ToJSON.gToJSON
1756.27 s
[aeson] Warning: Data.Aeson.Encoding: could not find link destinations for:
1756.27 s
[aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
1756.27 s
[aeson] - Data.Aeson.Types.ToJSON.gToJSON
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 )
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 )
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 )
1756.80 s
[pointed] 50% ( 1 / 2) in 'Data.Copointed'
1756.80 s
[pointed] Missing documentation for:
1756.81 s
[pointed] Module header
1757.25 s
[pointed] 0% ( 0 / 2) in 'Data.Pointed'
1757.25 s
[pointed] Missing documentation for:
1757.25 s
[pointed] Module header
1757.25 s
[pointed] Pointed (src/Data/Pointed.hs:88)
1757.49 s
[shake] buildPhase completed in 8 minutes 43 seconds
1757.49 s
[shake] Phase: haddockPhase
1758.25 s
[shake] Preprocessing library for shake-0.19.8..
1758.30 s
[shake] Running Haddock on library for shake-0.19.8..
1758.70 s
[shake] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
1758.72 s
[aeson] Warning: Data.Aeson.Types: could not find link destinations for:
1758.72 s
[aeson] - Data.Vector.Vector
1758.72 s
[aeson] - Data.Vector.Generic.Base.Vector
1758.72 s
[aeson] - Data.Aeson.Types.Generic.ProductSize
1758.72 s
[aeson] - Data.Aeson.Types.Generic.AllNullary
1758.72 s
[aeson] - Data.Vector.Primitive.Vector
1758.72 s
[aeson] - Data.Vector.Storable.Vector
1758.72 s
[aeson] - Data.Vector.Unboxed.Base.Vector
1758.72 s
[aeson] - Data.Aeson.Types.FromJSON.ConstructorNames
1758.72 s
[aeson] - Data.Aeson.Types.FromJSON.SumFromString
1758.72 s
[aeson] - Data.Aeson.Types.FromJSON.GFromJSON'
1758.72 s
[aeson] - Data.Aeson.Types.FromJSON.gParseJSON
1758.72 s
[aeson] - Data.Aeson.Types.FromJSON.withBoundedScientific
1758.72 s
[aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
1758.72 s
[aeson] - Data.Aeson.Types.ToJSON.WriteProduct
1758.72 s
[aeson] - Data.Aeson.Types.ToJSON.ConsToJSON
1758.72 s
[aeson] - Data.Aeson.Types.ToJSON.GetConName
1758.72 s
[aeson] - Data.Aeson.Types.ToJSON.SumToJSON
1758.72 s
[aeson] - Data.Aeson.Types.ToJSON.gToJSON
1759.24 s
[aeson] Warning: Data.Aeson: could not find link destinations for:
1759.24 s
[aeson] - Data.Vector.Vector
1759.24 s
[aeson] - Data.Vector.Generic.Base.Vector
1759.24 s
[aeson] - Data.Aeson.Types.Generic.ProductSize
1759.24 s
[aeson] - Data.Aeson.Types.Generic.AllNullary
1759.24 s
[aeson] - Data.Vector.Primitive.Vector
1759.24 s
[aeson] - Data.Vector.Storable.Vector
1759.24 s
[aeson] - Data.Vector.Unboxed.Base.Vector
1759.24 s
[aeson] - Data.Aeson.Types.FromJSON.ConstructorNames
1759.24 s
[aeson] - Data.Aeson.Types.FromJSON.SumFromString
1759.24 s
[aeson] - Data.Aeson.Types.FromJSON.GFromJSON'
1759.24 s
[aeson] - Data.Aeson.Types.FromJSON.gParseJSON
1759.24 s
[aeson] - Data.Aeson.Types.FromJSON.withBoundedScientific
1759.24 s
[aeson] - Data.Aeson.Types.ToJSON.EncodeProduct
1759.24 s
[aeson] - Data.Aeson.Types.ToJSON.WriteProduct
1759.24 s
[aeson] - Data.Aeson.Types.ToJSON.ConsToJSON
1759.24 s
[aeson] - Data.Aeson.Types.ToJSON.GetConName
1759.24 s
[aeson] - Data.Aeson.Types.ToJSON.SumToJSON
1759.24 s
[aeson] - Data.Aeson.Types.ToJSON.gToJSON
1759.26 s
[aeson] Warning: Data.Aeson.TH: could not find link destinations for:
1759.26 s
[aeson] - Data.Aeson.TH.ToJSONFun
1759.26 s
[aeson] - Data.Aeson.TH.JSONFun
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 )
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 )
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 )
1762.30 s
[shake] Warning: 'ShakeValue' is out of scope.
1762.30 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.35 s
[shake] 100% ( 7 / 7) in 'Development.Shake.Classes'
1762.51 s
[shake] 100% ( 62 / 62) in 'Development.Shake.FilePath'
1762.67 s
[shake] Warning: 'command' is out of scope.
1762.67 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.67 s
[shake] Warning: 'cmd' is out of scope.
1762.67 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'ByteString' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'traced' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'interruptProcessGroupOf' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'terminateProcess' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'Stdout' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'Stderr' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1762.69 s
[shake] Warning: 'shakeLintInside' is out of scope.
1762.69 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
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 )
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 )
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 )
1765.51 s
[shake] Warning: 'normaliseEx' is out of scope.
1765.51 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
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 )
1766.09 s
[shake] Warning: 'needed' is out of scope.
1766.09 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.10 s
[shake] Warning: 'progressDisplay' is out of scope.
1766.10 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.11 s
[shake] Warning: 'getShakeOptions' is out of scope.
1766.11 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.12 s
[shake] Warning: 'stdout' is out of scope.
1766.12 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.12 s
[shake] Warning: 'stderr' is out of scope.
1766.12 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.13 s
[shake] Warning: 'progressSimple' is out of scope.
1766.13 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.13 s
[shake] Warning: 'addShakeExtra' is out of scope.
1766.13 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1766.13 s
[shake] Warning: 'getShakeExtra' is out of scope.
1766.13 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
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 )
1768.82 s
[shake] Warning: 'Fence' is out of scope.
1768.82 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1768.96 s
[shake] Warning: 'writeChunks' is out of scope.
1768.96 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1769.18 s
[shake] Warning: 'addPoolException' is out of scope.
1769.18 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1769.19 s
[shake] Warning: 'addPoolResume' is out of scope.
1769.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1769.19 s
[shake] Warning: 'addPoolStart' is out of scope.
1769.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1769.19 s
[shake] Warning: 'addPoolBatch' is out of scope.
1769.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.13 s
[shake] Warning: 'Fence' is out of scope.
1770.13 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
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 )
1770.73 s
[pointed] Documentation created: dist/doc/html/pointed/index.html,
1770.73 s
[pointed] dist/doc/html/pointed/pointed.txt
1770.85 s
[shake] Warning: 'addUserRule' is out of scope.
1770.85 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.85 s
[shake] Warning: 'action' is out of scope.
1770.85 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.86 s
[shake] Warning: 'need' is out of scope.
1770.86 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.90 s
[shake] Warning: 'Rules' is out of scope.
1770.90 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.90 s
[shake] Warning: 'priority' is out of scope.
1770.90 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.90 s
[shake] Warning: 'alternatives' is out of scope.
1770.90 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.90 s
[shake] Warning: 'versioned' is out of scope.
1770.90 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.90 s
[shake] Warning: 'lintTrackRead' is out of scope.
1770.90 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.90 s
[shake] Warning: 'lintTrackWrite' is out of scope.
1770.90 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1770.95 s
[pointed] Phase: installPhase
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
1771.52 s
[shake] Warning: 'writeFile'' is out of scope.
1771.52 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.00 s
[pointed] Phase: fixupPhase
1772.04 s
[pointed] shrinking RPATHs of ELF executables and libraries in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
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
1772.07 s
[pointed] checking for references to /build/ in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5...
1772.09 s
[pointed] patching script interpreter paths in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5
1772.11 s
[pointed] stripping (with command strip and flags -S -p) in /nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5/lib
1772.15 s
[shake] Warning: 'need' is out of scope.
1772.15 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.18 s
[shake] Warning: 'alwaysRerun' is out of scope.
1772.18 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.18 s
[shake] Warning: 'produces' is out of scope.
1772.18 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.18 s
[shake] Warning: 'orderOnly' is out of scope.
1772.18 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.19 s
[shake] Warning: 'withResource' is out of scope.
1772.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.19 s
[shake] Warning: 'cmd' is out of scope.
1772.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.19 s
[shake] Warning: 'command' is out of scope.
1772.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.19 s
[shake] Warning: 'apply' is out of scope.
1772.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.19 s
[shake] Warning: '-<.>' is out of scope.
1772.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.19 s
[shake] Warning: '%>' is out of scope.
1772.19 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1772.22 s
[pointed] shrinking RPATHs of ELF executables and libraries in /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc
1772.23 s
[pointed] checking for references to /build/ in /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc...
1772.25 s
[pointed] patching script interpreter paths in /nix/store/3ib1f4gv4g2am7bmrq0cv13lcjpzcald-pointed-5.0.5-doc
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
1773.87 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
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
1774.18 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1774.37 s
[post-build-hook] copying 1 paths...
1774.38 s
[post-build-hook] copying path '/nix/store/pwnjb4ynadzhlykgis3zdnvq24vc7yc3-pointed-5.0.5' to 'https://cache.nix-ci.com'...
1775.70 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1776.43 s
[post-build-hook] copying 0 paths...
1776.43 s
Progress: 102 of 177 built (6 building), 373 of 373 downloaded from cache
1776.43 s
Building vector-instances
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
1776.43 s
[shake] Warning: 'need' is out of scope.
1776.43 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.43 s
[shake] Warning: 'produces' is out of scope.
1776.43 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.43 s
[shake] Warning: 'need' is out of scope.
1776.43 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.43 s
[shake] Warning: 'ByteString' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] 100% ( 38 / 38) in 'Development.Shake.Rule'
1776.44 s
[shake] Warning: 'newCache' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'getDirectoryFiles' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'getEnv' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'cmd_' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'neededMakefileDependencies' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'needMakefileDependencies' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'shakeArgs' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'dropExtension' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] Warning: 'ByteString' is out of scope.
1776.44 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1776.44 s
[shake] 100% ( 24 / 24) in 'Development.Shake.Command'
1776.50 s
[vector-instances] Phase: setupCompilerEnvironmentPhase
1776.51 s
[vector-instances] Build with /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3.
1777.16 s
[vector-instances] Phase: unpackPhase
1777.17 s
[vector-instances] unpacking source archive /nix/store/nqfgw14d48gylm57fvgdbpjxc79yrsqj-vector-instances-3.4.2.tar.gz
1777.19 s
[vector-instances] source root is vector-instances-3.4.2
1777.20 s
[vector-instances] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "vector-instances-3.4.2/.vim.custom"
1777.20 s
[vector-instances] Phase: patchPhase
1777.21 s
[shake] Warning: 'lookupEnv' is out of scope.
1777.21 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1777.21 s
[shake] Warning: 'cmd' is out of scope.
1777.21 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1777.22 s
[vector-instances] Phase: compileBuildDriverPhase
1777.23 s
[shake] Warning: 'phony' is out of scope.
1777.23 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1777.23 s
[vector-instances] setupCompileFlags: -package-db=/build/tmp.vwfwQtcM7Q/setup-package.conf.d -threaded
1777.23 s
[shake] Warning: 'shakeFiles' is out of scope.
1777.23 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1777.42 s
[vector-instances] [1 of 2] Compiling Main ( Setup.lhs, /build/tmp.vwfwQtcM7Q/Main.o )
1777.61 s
[vector-instances] [2 of 2] Linking Setup
1779.76 s
[shake] 100% ( 10 / 10) in 'Development.Shake.Database'
1780.15 s
[shake] Warning: 'cmd' is out of scope.
1780.15 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1780.71 s
[shake] Warning: 'Binary' is out of scope.
1780.71 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1780.73 s
[shake] Warning: 'Hashable' is out of scope.
1780.73 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1780.73 s
[shake] Warning: 'NFData' is out of scope.
1780.73 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1780.73 s
[shake] 100% (173 /173) in 'Development.Shake'
1780.80 s
[shake] 100% ( 7 / 7) in 'Development.Shake.Util'
1780.94 s
[shake] 100% ( 8 / 8) in 'Development.Shake.Forward'
1781.12 s
[shake] Warning: '-<.>' is out of scope.
1781.12 s
[shake] If you qualify the identifier, haddock can try to link it anyway.
1781.12 s
[shake] 100% ( 7 / 7) in 'Development.Shake.Config'
1781.22 s
[vector-instances] Phase: updateAutotoolsGnuConfigScriptsPhase
1781.25 s
[vector-instances] Phase: configurePhase
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
1781.28 s
[vector-instances] Using Parsec parser
1781.28 s
[vector-instances] Configuring vector-instances-3.4.2...
1782.50 s
[shake] Warning: Development.Shake.Classes: could not find link destinations for:
1782.50 s
[shake] - System.FilePattern.Core.Pattern
1782.50 s
[shake] - System.FilePattern.Core.Path
1782.50 s
[shake] - System.Random.GFinite.Cardinality
1782.50 s
[shake] - Data.List.Extra.RB
1782.50 s
[shake] - System.Time.Extra.Timeout
1782.50 s
[shake] - Data.Heap.Forest
1782.50 s
[shake] - Data.Heap.Tree
1782.50 s
[shake] - System.FilePattern.Step.Pat
1782.76 s
[shake] Warning: Development.Shake.Command: could not find link destinations for:
1782.77 s
[shake] - Development.Shake.Command.cmdResult
1782.77 s
[shake] - Development.Shake.Command.Unit
1782.77 s
[shake] - Development.Shake.Command.cmdString
1782.77 s
[shake] - Development.Shake.Command.Result
1782.77 s
[shake] - Development.Shake.Command.Str
1782.85 s
[vector-instances] Flags chosen: hashable=True
1782.85 s
[vector-instances] Dependency base >=4.9 && <5: using base-4.18.1.0
1782.85 s
[vector-instances] Dependency comonad >=3: using comonad-5.0.9
1782.85 s
[vector-instances] Dependency hashable >=1.2.5.0: using hashable-1.4.7.0
1782.85 s
[vector-instances] Dependency keys >=3: using keys-3.12.4
1782.85 s
[vector-instances] Dependency pointed >=3: using pointed-5.0.5
1782.85 s
[vector-instances] Dependency semigroupoids >=3: using semigroupoids-6.0.1
1782.85 s
[vector-instances] Dependency vector >=0.12 && <0.14: using vector-0.13.2.0
1782.95 s
[shake] Warning: Development.Shake: could not find link destinations for:
1782.95 s
[shake] - General.Extra.Located
1782.95 s
[shake] - Development.Shake.Internal.Options.Hidden
1782.95 s
[shake] - Development.Shake.Command.cmdResult
1782.95 s
[shake] - Development.Shake.Command.Unit
1782.95 s
[shake] - Development.Shake.Command.cmdString
1782.95 s
[shake] - Development.Shake.Command.Result
1782.95 s
[shake] - Development.Shake.Command.Str
1783.94 s
[vector-instances] Source component graph: component lib
1783.94 s
[vector-instances] Configured component graph:
1783.94 s
[vector-instances] component vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
1783.94 s
[vector-instances] include base-4.18.1.0
1783.94 s
[vector-instances] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1783.94 s
[vector-instances] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1783.94 s
[vector-instances] include keys-3.12.4-7TfTjMqPI8yFOyhlMyd9Q
1783.94 s
[vector-instances] include pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
1783.94 s
[vector-instances] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1783.94 s
[vector-instances] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
1783.94 s
[vector-instances] Linked component graph:
1783.94 s
[vector-instances] unit vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
1783.94 s
[vector-instances] include base-4.18.1.0
1783.94 s
[vector-instances] include comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1783.94 s
[vector-instances] include hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1783.94 s
[vector-instances] include keys-3.12.4-7TfTjMqPI8yFOyhlMyd9Q
1783.94 s
[vector-instances] include pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
1783.94 s
[vector-instances] include semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1783.94 s
[vector-instances] include vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
1783.94 s
[vector-instances] Data.Vector.Instances=vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR:Data.Vector.Instances
1783.94 s
[vector-instances] Ready component graph:
1783.94 s
[vector-instances] definite vector-instances-3.4.2-5ZegXyVAGHw8mTWSxCy1DR
1783.94 s
[vector-instances] depends base-4.18.1.0
1783.94 s
[vector-instances] depends comonad-5.0.9-4DUsPyp1st69KlD7PYDzRF
1783.94 s
[vector-instances] depends hashable-1.4.7.0-4pQcVzsiriKJL8YNcpzeI3
1783.94 s
[vector-instances] depends keys-3.12.4-7TfTjMqPI8yFOyhlMyd9Q
1783.94 s
[vector-instances] depends pointed-5.0.5-6CXikc4wKMtyNLMsfbrF4
1783.94 s
[vector-instances] depends semigroupoids-6.0.1-1W2tGRcCKBULFl2sTeAMQR
1783.94 s
[vector-instances] depends vector-0.13.2.0-JxdPGLzxQoqG597l8mW4DO
1783.94 s
[vector-instances] Using Cabal-3.10.1.0 compiled by ghc-9.6
1783.94 s
[vector-instances] Using compiler: ghc-9.6.3
1783.94 s
[vector-instances] Using install prefix:
1783.94 s
[vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2
1783.94 s
[vector-instances] Executables installed in:
1783.94 s
[vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/bin
1783.94 s
[vector-instances] Libraries installed in:
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
1783.94 s
[vector-instances] Dynamic Libraries installed in:
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
1783.94 s
[vector-instances] Private executables installed in:
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
1783.94 s
[vector-instances] Data files installed in:
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
1783.94 s
[vector-instances] Documentation installed in:
1783.94 s
[vector-instances] /nix/store/fb379avd5rc2i8g8c8znn0mwqq71h8h7-vector-instances-3.4.2-doc/share/doc/vector-instances-3.4.2
1783.94 s
[vector-instances] Configuration files installed in:
1783.94 s
[vector-instances] /nix/store/iqqzn4d796xnsw3q6plww8mslk2w36nl-vector-instances-3.4.2/etc
1783.94 s
[vector-instances] No alex found
1783.94 s
[vector-instances] Using ar found on system at:
1783.94 s
[vector-instances] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ar
1783.94 s
[vector-instances] No c2hs found
1783.94 s
[vector-instances] No cpphs found
1783.94 s
[vector-instances] No doctest found
1783.94 s
[vector-instances] Using gcc version 14.3.0 given by user at:
1783.94 s
[vector-instances] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/gcc
1783.94 s
[vector-instances] Using ghc version 9.6.3 found on system at:
1783.94 s
[vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc
1783.94 s
[vector-instances] Using ghc-pkg version 9.6.3 found on system at:
1783.94 s
[vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/ghc-pkg-9.6.3
1783.94 s
[vector-instances] No ghcjs found
1783.94 s
[vector-instances] No ghcjs-pkg found
1783.94 s
[vector-instances] No greencard found
1783.94 s
[vector-instances] Using haddock version 2.29.1 found on system at:
1783.94 s
[vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/haddock-ghc-9.6.3
1783.94 s
[vector-instances] No happy found
1783.94 s
[vector-instances] Using haskell-suite found on system at: haskell-suite-dummy-location
1783.94 s
[vector-instances] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1783.94 s
[vector-instances] No hmake found
1783.94 s
[vector-instances] Using hpc version 0.68 found on system at:
1783.94 s
[vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hpc-ghc-9.6.3
1783.94 s
[vector-instances] Using hsc2hs version 0.68.9 found on system at:
1783.94 s
[vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/hsc2hs-ghc-9.6.3
1783.94 s
[vector-instances] Using hscolour version 1.25 found on system at:
1783.94 s
[vector-instances] /nix/store/gzxm9n7gdyswybkchci8vx0pmhqway25-hscolour-1.25/bin/HsColour
1783.94 s
[vector-instances] No jhc found
1783.94 s
[vector-instances] Using ld found on system at:
1783.94 s
[vector-instances] /nix/store/iga4lv0say4pbbbgkf1v79403n1ip7hf-binutils-wrapper-2.44/bin/ld.gold
1783.94 s
[vector-instances] No pkg-config found
1783.94 s
[vector-instances] Using runghc version 9.6.3 found on system at:
1783.94 s
[vector-instances] /nix/store/kqcfch35vgmr9icpjd43a5dm8sxy4wy2-ghc-9.6.3/bin/runghc-9.6.3
1783.94 s
[vector-instances] Using strip version 2.44 found on system at:
1783.94 s
[vector-instances] /nix/store/kks0nbx2riwry5qsx0qr87qr0lswmhzi-gcc-wrapper-14.3.0/bin/strip
1783.94 s
[vector-instances] Using tar found on system at:
1783.94 s
[vector-instances] /nix/store/76df6j9sq1ar58id3y3v4rkijany1wxp-gnutar-1.35/bin/tar
1783.94 s
[vector-instances] No uhc found
1784.35 s
[vector-instances] Phase: buildPhase
1784.55 s
[vector-instances] Preprocessing library for vector-instances-3.4.2..
1784.55 s
[vector-instances] Building library for vector-instances-3.4.2..
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
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 )
1788.95 s
[cassava] [2 of 2] Linking dist/build/unit-tests/unit-tests
1789.63 s
[aeson] Documentation created: dist/doc/html/aeson/index.html,
1789.63 s
[aeson] dist/doc/html/aeson/aeson.txt
1789.87 s
[aeson] haddockPhase completed in 1 minutes 2 seconds
1789.87 s
[aeson] Phase: installPhase
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
1790.96 s
[vector-instances] [1 of 1] Compiling Data.Vector.Instances ( src/Data/Vector/Instances.hs, dist/build/Data/Vector/Instances.p_o )
1791.40 s
[cassava] buildPhase completed in 2 minutes 4 seconds
1791.40 s
[cassava] Phase: checkPhase
1791.54 s
[cassava] Running 1 test suites...
1791.54 s
[cassava] Test suite unit-tests: RUNNING...
1791.77 s
[cassava] positional:
1791.77 s
[cassava] encode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] quoted: [OK]
1791.77 s
[cassava] quote: [OK]
1791.77 s
[cassava] quotedQuote: [OK]
1791.77 s
[cassava] leadingSpace: [OK]
1791.77 s
[cassava] comma: [OK]
1791.77 s
[cassava] twoFields: [OK]
1791.77 s
[cassava] twoRecords: [OK]
1791.77 s
[cassava] newline: [OK]
1791.77 s
[cassava] encode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] quoted: [OK]
1791.77 s
[cassava] quote: [OK]
1791.77 s
[cassava] quotedQuote: [OK]
1791.77 s
[cassava] leadingSpace: [OK]
1791.77 s
[cassava] comma: [OK]
1791.77 s
[cassava] twoFields: [OK]
1791.77 s
[cassava] twoRecords: [OK]
1791.77 s
[cassava] newline: [OK]
1791.77 s
[cassava] encode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] quoted: [OK]
1791.77 s
[cassava] quote: [OK]
1791.77 s
[cassava] quotedQuote: [OK]
1791.77 s
[cassava] leadingSpace: [OK]
1791.77 s
[cassava] comma: [OK]
1791.77 s
[cassava] twoFields: [OK]
1791.77 s
[cassava] twoRecords: [OK]
1791.77 s
[cassava] newline: [OK]
1791.77 s
[cassava] encodeWith:
1791.77 s
[cassava] tab-delim: [OK]
1791.77 s
[cassava] newline: [OK]
1791.77 s
[cassava] decode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] crlf: [OK]
1791.77 s
[cassava] noEol: [OK]
1791.77 s
[cassava] blankLine: [OK]
1791.77 s
[cassava] leadingSpace: [OK]
1791.77 s
[cassava] rfc4180: [OK]
1791.77 s
[cassava] escapedDoubleQuotes: [OK]
1791.77 s
[cassava] decodeWith:
1791.77 s
[cassava] tab-delim: [OK]
1791.77 s
[cassava] streaming:
1791.77 s
[cassava] decode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] crlf: [OK]
1791.77 s
[cassava] noEol: [OK]
1791.77 s
[cassava] blankLine: [OK]
1791.77 s
[cassava] leadingSpace: [OK]
1791.77 s
[cassava] rfc4180: [OK]
1791.77 s
[cassava] escapedDoubleQuotes: [OK]
1791.77 s
[cassava] decodeWith:
1791.77 s
[cassava] tab-delim: [OK]
1791.77 s
[cassava] failing:
1791.77 s
[cassava] escapedMalformed0: [OK]
1791.77 s
[cassava] named:
1791.77 s
[cassava] encode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] twoFields: [OK]
1791.77 s
[cassava] twoRecords: [OK]
1791.77 s
[cassava] encodeWith:
1791.77 s
[cassava] no header: [OK]
1791.77 s
[cassava] decode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] twoFields: [OK]
1791.77 s
[cassava] twoRecords: [OK]
1791.77 s
[cassava] cr header: [OK]
1791.77 s
[cassava] cr trailing: [OK]
1791.77 s
[cassava] cr separator: [OK]
1791.77 s
[cassava] streaming:
1791.77 s
[cassava] decode:
1791.77 s
[cassava] simple: [OK]
1791.77 s
[cassava] twoFields: [OK]
1791.77 s
[cassava] twoRecords: [OK]
1791.77 s
[cassava] cr header: [OK]
1791.77 s
[cassava] cr trailing: [OK]
1791.77 s
[cassava] cr separator: [OK]
1791.77 s
[cassava] conversion:
1791.77 s
[cassava] roundTrip:
1791.77 s
[cassava] Char: [OK, passed 100 tests]
1791.77 s
[cassava] ByteString: [OK, passed 100 tests]
1791.77 s
[cassava] Int: [OK, passed 100 tests]
1791.77 s
[cassava] Integer: [OK, passed 100 tests]
1791.77 s
[cassava] Int8: [OK, passed 100 tests]
1791.77 s
[cassava] Int16: [OK, passed 100 tests]
1791.77 s
[cassava] Int32: [OK, passed 100 tests]
1791.77 s
[cassava] Int64: [OK, passed 100 tests]
1791.77 s
[cassava] Natural: [OK, passed 100 tests]
1791.77 s
[cassava] Word: [OK, passed 100 tests]
1791.77 s
[cassava] Word8: [OK, passed 100 tests]
1791.77 s
[cassava] Word16: [OK, passed 100 tests]
1791.77 s
[cassava] Word32: [OK, passed 100 tests]
1791.77 s
[cassava] Word64: [OK, passed 100 tests]
1791.77 s
[cassava] Scientific: [OK, passed 100 tests]
1791.77 s
[cassava] lazy ByteString: [OK, passed 100 tests]
1791.77 s
[cassava] Text: [OK, passed 100 tests]
1791.77 s
[cassava] lazy Text: [OK, passed 100 tests]
1791.77 s
[cassava] Const Char: [OK, passed 100 tests]
1791.77 s
[cassava] boundary:
1791.77 s
[cassava] Int: [OK, passed 1 tests]
1791.77 s
[cassava] Int8: [OK, passed 1 tests]
1791.77 s
[cassava] Int16: [OK, passed 1 tests]
1791.77 s
[cassava] Int32: [OK, passed 1 tests]
1791.77 s
[cassava] Int64: [OK, passed 1 tests]
1791.77 s
[cassava] Word: [OK, passed 1 tests]
1791.77 s
[cassava] Word8: [OK, passed 1 tests]
1791.77 s
[cassava] Word16: [OK, passed 1 tests]
1791.77 s
[cassava] Word32: [OK, passed 1 tests]
1791.77 s
[cassava] Word64: [OK, passed 1 tests]
1791.77 s
[cassava] Unicode:
1791.77 s
[cassava] Chinese: [OK]
1791.77 s
[cassava] Icelandic: [OK]
1791.77 s
[cassava] Turkish: [OK]
1791.77 s
[cassava] Partial Decodes:
1791.77 s
[cassava] Int: [OK]
1791.77 s
[cassava] Natural: [OK]
1791.77 s
[cassava] Word: [OK]
1791.77 s
[cassava] Scientific: [OK]
1791.77 s
[cassava] Double: [OK]
1791.77 s
[cassava] Integer: [OK]
1791.77 s
[cassava] Space trimming:
1791.77 s
[cassava] _Int: [OK]
1791.77 s
[cassava] Int_: [OK]
1791.77 s
[cassava] _Int_: [OK]
1791.77 s
[cassava] _Natural: [OK]
1791.77 s
[cassava] Natural_: [OK]
1791.77 s
[cassava] _Natural_: [OK]
1791.77 s
[cassava] _Word: [OK]
1791.77 s
[cassava] Word_: [OK]
1791.77 s
[cassava] _Word_: [OK]
1791.77 s
[cassava] _Scientific: [OK]
1791.77 s
[cassava] Scientific_: [OK]
1791.77 s
[cassava] _Scientific_: [OK]
1791.77 s
[cassava] _Double: [OK]
1791.77 s
[cassava] Double_: [OK]
1791.77 s
[cassava] _Double_: [OK]
1791.77 s
[cassava] custom-options:
1791.77 s
[cassava] customDelim: [OK, passed 100 tests]
1791.77 s
[cassava] instances:
1791.77 s
[cassava] Records instances:
1791.77 s
[cassava] foldr Foldable: [OK]
1791.77 s
[cassava] foldl' Foldable: [OK]
1791.77 s
[cassava] generic-conversions:
1791.77 s
[cassava] headerOrder: [OK]
1791.77 s
[cassava] encode: [OK]
1791.77 s
[cassava] decode: [OK]
1791.77 s
[cassava] roundTrip: [OK, passed 100 tests]
1791.77 s
[cassava]
1791.77 s
[cassava] Properties Test Cases Total
1791.78 s
[cassava] Passed 31 91 122
1791.78 s
[cassava] Failed 0 0 0
1791.78 s
[cassava] Total 31 91 122
1791.78 s
[cassava] Test suite unit-tests: PASS
1791.78 s
[cassava] Test suite logged to: dist/test/cassava-0.5.3.2-unit-tests.log
1791.78 s
[cassava] 1 of 1 test suites (1 of 1 test cases) passed.
1791.80 s
[cassava] Phase: haddockPhase
1792.30 s
[cassava] Preprocessing library for cassava-0.5.3.2..
1792.31 s
[cassava] Running Haddock on library for cassava-0.5.3.2..
1792.31 s
[cassava] Warning: The documentation for the following packages are not installed. No
1792.31 s
[cassava] links will be generated to these packages: attoparsec-0.14.4,
1792.31 s
[cassava] attoparsec-0.14.4, vector-0.13.2.0
1792.58 s
[cassava] Warning: --source-* options are ignored when --hyperlinked-source is enabled.
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 )
1794.21 s
[cassava] Warning: 'liftM2' is out of scope.
1794.21 s
[cassava] If you qualify the identifier, haddock can try to link it anyway.
1794.44 s
[cassava] Warning: 'sepBy1'' is out of scope.
1794.50 s
[cassava] If you qualify the identifier, haddock can try to link it anyway.
1794.50 s
[cassava] 100% ( 9 / 9) in 'Data.Csv.Parser'
1794.61 s
[aeson] Phase: fixupPhase
1794.69 s
[aeson] shrinking RPATHs of ELF executables and libraries in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0
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
1794.79 s
[aeson] checking for references to /build/ in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0...
1794.92 s
[aeson] patching script interpreter paths in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0
1794.95 s
[aeson] stripping (with command strip and flags -S -p) in /nix/store/7hd0ji69xxm7g5597q2zchr8vsd8p08m-aeson-2.2.3.0/lib
1796.09 s
[cassava] Warning: 'toNamedRecord' is ambiguous. It is defined
1796.09 s
[cassava] * at src/Data/Csv/Types.hs:46:1
1796.09 s
[cassava] * at src/Data/Csv/Conversion.hs:633:5
1796.09 s
[cassava] You may be able to disambiguate the identifier by qualifying it or
1796.09 s
[cassava] by specifying the type/value namespace explicitly.
1796.09 s
[cassava] Defaulting to the one defined at src/Data/Csv/Conversion.hs:631:1
1796.09 s
[cassava] Warning: 'rational' is out of scope.
1796.09 s
[cassava] If you qualify the identifier, haddock can try to link it anyway.
1797.33 s
[aeson] shrinking RPATHs of ELF executables and libraries in /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc
1797.36 s
[aeson] checking for references to /build/ in /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc...
1797.42 s
[aeson] patching script interpreter paths in /nix/store/nrh6bj75p2wl48glccha4fm79f9m28mn-aeson-2.2.3.0-doc
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
1799.14 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
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
1799.51 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1799.77 s
[post-build-hook] copying 9 paths...
1799.79 s
[post-build-hook] copying path '/nix/store/f2f0rv4m91qfdg1jyjsi8gb2kr62acqq-th-compat-0.1.6-doc' to 'https://cache.nix-ci.com'...
1799.79 s
[post-build-hook] copying path '/nix/store/i5ybxrwsh2pmlp6xjjv8j0ym60sy14z6-character-ps-0.1-doc' to 'https://cache.nix-ci.com'...
1799.79 s
[post-build-hook] copying path '/nix/store/wpx69sgwrndmmcrss6yp7h6pdm1v5pqm-generically-0.1.1-doc' to 'https://cache.nix-ci.com'...
1800.07 s
interrupted by the user