build devShells.x86_64-linux.ghc9103
1174.53 s
[algebraic-graphs] ============ Symmetric.Relation.induce ============
1174.53 s
[algebraic-graphs] OK: induce (const True ) x == x
1174.53 s
[algebraic-graphs] OK: induce (const False) x == empty
1174.53 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
1174.53 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
1174.53 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Symmetric.Relation.induceJust ============
1174.53 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
1174.53 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
1174.53 s
[algebraic-graphs] OK: induceJust . gmap Just == id
1174.53 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Example.Todo (Holiday) ============
1174.53 s
[algebraic-graphs] OK: A todo list is semantically Maybe [a]
1174.53 s
[algebraic-graphs] OK: The overlay operator (+) adds non-dependent items to the todo list
1174.53 s
[algebraic-graphs] OK: The connect operator (*) adds dependency between items
1174.53 s
[algebraic-graphs] OK: Contradictory constraints make the todo list impossible to schedule
1174.53 s
[algebraic-graphs] OK: Introduce item priority to schedule the todo list
1174.53 s
[algebraic-graphs] OK: Custom connect operators pull/repel arguments during scheduling
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Example.Todo (Commandline) ============
1174.53 s
[algebraic-graphs] OK: The pull connect operator maintains command line semantics
1174.53 s
[algebraic-graphs] OK: Swapping flags are allowed by the commutative overlay opeartor
1174.53 s
[algebraic-graphs] OK: The usual connect operator breaks semantics
1174.53 s
[algebraic-graphs] OK: Transform command lines by adding optimisation flag
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed ============
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed.fromAdjacencyMap ============
1174.53 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
1174.53 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
1174.53 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == vertexList g
1174.53 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed.fromAdjacencyIntMap ============
1174.53 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 3 * 1)) == array (0,2) [(0,[1]), (1,[]), (2,[0])]
1174.53 s
[algebraic-graphs] OK: toGraphKL (fromAdjacencyIntMap (1 * 2 + 2 * 1)) == array (0,1) [(0,[1]), (1,[0])]
1174.53 s
[algebraic-graphs] OK: map (fromVertexKL h) (vertices $ toGraphKL h) == IntSet.toAscList (vertexIntSet g)
1174.53 s
[algebraic-graphs] OK: map (\(x, y) -> (fromVertexKL h x, fromVertexKL h y)) (edges $ toGraphKL h) == edgeList g
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed.dfsForest ============
1174.53 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 1) == vertex 1
1174.53 s
[algebraic-graphs] OK: forest (dfsForest % edge 1 2) == edge 1 2
1174.53 s
[haskell-language-server] Preprocessing library 'ghcide-bench-lib' for haskell-language-server-2.12.0.0...
1174.53 s
[haskell-language-server] Building library 'ghcide-bench-lib' for haskell-language-server-2.12.0.0...
1174.53 s
[haskell-language-server] [1 of 2] Compiling Experiments.Types ( ghcide-bench/src/Experiments/Types.hs, dist/build/ghcide-bench-lib/Experiments/Types.o, dist/build/ghcide-bench-lib/Experiments/Types.dyn_o )
1174.53 s
[haskell-language-server] [2 of 2] Compiling Experiments ( ghcide-bench/src/Experiments.hs, dist/build/ghcide-bench-lib/Experiments.o, dist/build/ghcide-bench-lib/Experiments.dyn_o )
1174.53 s
[haskell-language-server] ghcide-bench/src/Experiments.hs:345:1: warning : [ GHC-62161 ] [ -Wincomplete-uni-patterns ]
1174.53 s
[haskell-language-server] Pattern match(es) are non-exhaustive
1174.53 s
[haskell-language-server] In a pattern binding:
1174.53 s
[haskell-language-server] Patterns of type ‘ParserResult Config’ not matched:
1174.53 s
[haskell-language-server] Failure _
1174.53 s
[haskell-language-server] CompletionInvoked _
1174.53 s
[haskell-language-server] |
1174.53 s
[haskell-language-server] 345 | Success defConfig = execParserPure defaultPrefs (info configP fullDesc) []
1174.53 s
[haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1174.53 s
[haskell-language-server]
1174.53 s
[haskell-language-server] ghcide-bench/src/Experiments.hs:453:42: warning : [ GHC-62161 ] [ -Wincomplete-uni-patterns ]
1174.53 s
[haskell-language-server] Pattern match(es) are non-exhaustive
1174.53 s
[haskell-language-server] In a lambda abstraction:
1174.53 s
[haskell-language-server] Patterns of type ‘Maybe Handle’, ‘Maybe Handle’, ‘Maybe Handle’,
1174.53 s
[haskell-language-server] ‘ProcessHandle’ not matched:
1174.53 s
[haskell-language-server] Nothing _ _ _
1174.53 s
[haskell-language-server] (Just _) Nothing _ _
1174.53 s
[haskell-language-server] (Just _) (Just _) Nothing _
1174.53 s
[haskell-language-server] |
1174.53 s
[haskell-language-server] 453 | run sess = withCreateProcess p $ \(Just inH) (Just outH) (Just errH) pH -> do
1174.53 s
[haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1174.53 s
[haskell-language-server]
1174.53 s
[haskell-language-server] ghcide-bench/src/Experiments.hs:630:37: warning : [ GHC-63394 ] [ -Wx-partial ]
1174.53 s
[haskell-language-server] In the use of ‘head’
1174.53 s
[haskell-language-server] (imported from Data.List, but defined in GHC.Internal.List):
1174.53 s
[haskell-language-server] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
1174.53 s
[haskell-language-server] |
1174.53 s
[haskell-language-server] 630 | let DocumentPositions{..} = head docs
1174.53 s
[haskell-language-server] | ^^^^
1174.53 s
[haskell-language-server]
1174.53 s
[haskell-language-server] [1 of 2] Compiling Experiments.Types ( ghcide-bench/src/Experiments/Types.hs, dist/build/ghcide-bench-lib/Experiments/Types.p_o )
1174.53 s
[haskell-language-server] [2 of 2] Compiling Experiments ( ghcide-bench/src/Experiments.hs, dist/build/ghcide-bench-lib/Experiments.p_o )
1174.53 s
[haskell-language-server] ghcide-bench/src/Experiments.hs:345:1: warning : [ GHC-62161 ] [ -Wincomplete-uni-patterns ]
1174.53 s
[haskell-language-server] Pattern match(es) are non-exhaustive
1174.53 s
[haskell-language-server] In a pattern binding:
1174.53 s
[haskell-language-server] Patterns of type ‘ParserResult Config’ not matched:
1174.53 s
[haskell-language-server] Failure _
1174.53 s
[haskell-language-server] CompletionInvoked _
1174.53 s
[haskell-language-server] |
1174.53 s
[haskell-language-server] 345 | Success defConfig = execParserPure defaultPrefs (info configP fullDesc) []
1174.53 s
[haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1174.53 s
[haskell-language-server]
1174.53 s
[haskell-language-server] ghcide-bench/src/Experiments.hs:453:42: warning : [ GHC-62161 ] [ -Wincomplete-uni-patterns ]
1174.53 s
[haskell-language-server] Pattern match(es) are non-exhaustive
1174.53 s
[haskell-language-server] In a lambda abstraction:
1174.53 s
[haskell-language-server] Patterns of type ‘Maybe Handle’, ‘Maybe Handle’, ‘Maybe Handle’,
1174.53 s
[haskell-language-server] ‘ProcessHandle’ not matched:
1174.53 s
[haskell-language-server] Nothing _ _ _
1174.53 s
[haskell-language-server] (Just _) Nothing _ _
1174.53 s
[algebraic-graphs] OK: forest (dfsForest % edge 2 1) == vertices [1, 2]
1174.53 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForest % x) x == True
1174.53 s
[algebraic-graphs] OK: dfsForest % forest (dfsForest % x) == dfsForest % x
1174.53 s
[algebraic-graphs] OK: dfsForest % vertices vs == map (\v -> Node v []) (nub $ sort vs)
1174.53 s
[algebraic-graphs] OK: dfsForest % (3 * (1 + 4) * (1 + 5)) == <correct result>
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed.dfsForestFrom ============
1174.53 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 1) [1] == vertex 1
1174.53 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [0] == empty
1174.53 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [1] == edge 1 2
1174.53 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2] == vertex 2
1174.53 s
[algebraic-graphs] OK: forest $ (dfsForestFrom % edge 1 2) [2,1] == vertices [1,2]
1174.53 s
[algebraic-graphs] OK: isSubgraphOf (forest $ dfsForestFrom % x $ vs) x == True
1174.53 s
[algebraic-graphs] OK: dfsForestFrom % x $ vertexList x == dfsForest % x
1174.53 s
[algebraic-graphs] OK: dfsForestFrom % vertices vs $ vs == map (\v -> Node v []) (nub vs)
1174.53 s
[algebraic-graphs] OK: dfsForestFrom % x $ [] == []
1174.53 s
[algebraic-graphs] OK: dfsForestFrom % (3 * (1 + 4) * (1 + 5)) $ [1,4] == <correct result>
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed.dfs ============
1174.53 s
[algebraic-graphs] OK: dfs % edge 1 1 $ [1] == [1]
1174.53 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [0] == []
1174.53 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1] == [1,2]
1174.53 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2] == [2]
1174.53 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [1,2] == [1,2]
1174.53 s
[algebraic-graphs] OK: dfs % edge 1 2 $ [2,1] == [2,1]
1174.53 s
[algebraic-graphs] OK: dfs % x $ [] == []
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] OK: dfs % (3 * (1 + 4) * (1 + 5)) $ [1,4] == [1,5,4]
1174.53 s
[algebraic-graphs] OK: and [ hasVertex v x | v <- dfs % x $ vs ] == True
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Typed.topSort ============
1174.53 s
[algebraic-graphs] OK: topSort % (1 * 2 + 3 * 1) == [3,1,2]
1174.53 s
[algebraic-graphs] OK: topSort % (1 * 2 + 2 * 1) == [1,2]
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Graph.Undirected ============
1174.53 s
[algebraic-graphs] OK: Axioms of undirected graphs
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Graph.Undirected.Show ============
1174.53 s
[algebraic-graphs] OK: show (empty ) == "empty"
1174.53 s
[algebraic-graphs] OK: show (1 ) == "vertex 1"
1174.53 s
[algebraic-graphs] OK: show (1 + 2 ) == "vertices [1,2]"
1174.53 s
[algebraic-graphs] OK: show (1 * 2 ) == "edge 1 2"
1174.53 s
[algebraic-graphs] OK: show (1 * 2 * 3) == "edges [(1,2),(1,3),(2,3)]"
1174.53 s
[algebraic-graphs] OK: show (1 * 2 + 3) == "overlay (vertex 3) (edge 1 2)"
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] OK: show (vertex (-1) ) == "vertex (-1)"
1174.53 s
[algebraic-graphs] OK: show (vertex (-1) + vertex (-2) ) == "vertices [-2,-1]"
1174.53 s
[algebraic-graphs] OK: show (vertex (-2) * vertex (-1) ) == "edge (-2) (-1)"
1174.53 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) * vertex (-1)) == "edges [(-3,-2),(-3,-1),(-2,-1)]"
1174.53 s
[algebraic-graphs] OK: show (vertex (-3) * vertex (-2) + vertex (-1)) == "overlay (vertex (-1)) (edge (-3) (-2))"
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] OK: show (2 * 1 ) == "edge 1 2"
1174.53 s
[algebraic-graphs] OK: show (1 * 2 * 1) == "edges [(1,1),(1,2)]"
1174.53 s
[algebraic-graphs] OK: show (3 * 2 * 1) == "edges [(1,2),(1,3),(2,3)]"
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Graph.Undirected.toUndirected ============
1174.53 s
[algebraic-graphs] OK: toUndirected (edge 1 2) == edge 1 2
1174.53 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
1174.53 s
[algebraic-graphs] OK: vertexCount . toUndirected == vertexCount
1174.53 s
[algebraic-graphs] OK: (*2) . edgeCount . toUndirected >= edgeCount
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Graph.Undirected.fromUndirected ============
1174.53 s
[algebraic-graphs] OK: fromUndirected (edge 1 2) == edges [(1,2),(2,1)]
1174.53 s
[algebraic-graphs] OK: toUndirected . fromUndirected == id
1174.53 s
[algebraic-graphs] OK: vertexCount . fromUndirected == vertexCount
1174.53 s
[algebraic-graphs] OK: edgeCount . fromUndirected <= (*2) . edgeCount
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Graph.Undirected.complement ================
1174.53 s
[algebraic-graphs] OK: complement empty == empty
1174.53 s
[algebraic-graphs] OK: complement (vertex x) == vertex x
1174.53 s
[algebraic-graphs] OK: complement (edge 1 1) == edge 1 1
1174.53 s
[algebraic-graphs] OK: complement (edge 1 2) == vertices [1, 2]
1174.53 s
[algebraic-graphs] OK: complement (star 1 [2, 3]) == overlay (vertex 1) (edge 2 3)
1174.53 s
[algebraic-graphs] OK: complement . complement == id
1174.53 s
[algebraic-graphs]
1174.53 s
[algebraic-graphs] ============ Graph.Undirected.Ord ============
1174.53 s
[algebraic-graphs] OK: vertex 1 < vertex 2
1174.53 s
[algebraic-graphs] OK: vertex 3 < edge 1 2
1174.53 s
[algebraic-graphs] OK: vertex 1 < edge 1 1
1174.53 s
[algebraic-graphs] OK: edge 1 1 < edge 1 2
1174.54 s
[algebraic-graphs] OK: edge 1 2 < edge 1 1 + edge 2 2
1174.54 s
[algebraic-graphs] OK: edge 2 1 < edge 1 3
1174.54 s
[algebraic-graphs] OK: edge 1 2 == edge 2 1
1174.54 s
[algebraic-graphs] OK: x <= x + y
1174.54 s
[algebraic-graphs] OK: x + y <= x * y
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.empty ============
1174.54 s
[algebraic-graphs] OK: isEmpty empty == True
1174.54 s
[algebraic-graphs] OK: hasVertex x empty == False
1174.54 s
[algebraic-graphs] OK: vertexCount empty == 0
1174.54 s
[algebraic-graphs] OK: edgeCount empty == 0
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.vertex ============
1174.54 s
[algebraic-graphs] OK: isEmpty (vertex x) == False
1174.54 s
[algebraic-graphs] OK: hasVertex x (vertex y) == (x == y)
1174.54 s
[algebraic-graphs] OK: vertexCount (vertex x) == 1
1174.54 s
[algebraic-graphs] OK: edgeCount (vertex x) == 0
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.edge ============
1174.54 s
[algebraic-graphs] OK: edge x y == connect (vertex x) (vertex y)
1174.54 s
[algebraic-graphs] OK: edge x y == edge y x
1174.54 s
[haskell-language-server] (Just _) (Just _) Nothing _
1174.54 s
[haskell-language-server] |
1174.54 s
[haskell-language-server] 453 | run sess = withCreateProcess p $ \(Just inH) (Just outH) (Just errH) pH -> do
1174.54 s
[haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] ghcide-bench/src/Experiments.hs:630:37: warning : [ GHC-63394 ] [ -Wx-partial ]
1174.54 s
[haskell-language-server] In the use of ‘head’
1174.54 s
[haskell-language-server] (imported from Data.List, but defined in GHC.Internal.List):
1174.54 s
[haskell-language-server] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
1174.54 s
[haskell-language-server] |
1174.54 s
[haskell-language-server] 630 | let DocumentPositions{..} = head docs
1174.54 s
[haskell-language-server] | ^^^^
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] Preprocessing library 'hls-stylish-haskell-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] Building library 'hls-stylish-haskell-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.StylishHaskell ( plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs, dist/build/hls-stylish-haskell-plugin/Ide/Plugin/StylishHaskell.o, dist/build/hls-stylish-haskell-plugin/Ide/Plugin/StylishHaskell.dyn_o )
1174.54 s
[haskell-language-server] plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs:28:1: warning : [ GHC-66111 ] [ -Wunused-imports ]
1174.54 s
[haskell-language-server] The import of ‘System.Directory’ is redundant
1174.54 s
[haskell-language-server] except perhaps to import instances from ‘System.Directory’
1174.54 s
[haskell-language-server] To import instances alone, use: import System.Directory()
1174.54 s
[haskell-language-server] |
1174.54 s
[haskell-language-server] 28 | import System.Directory
1174.54 s
[haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.StylishHaskell ( plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs, dist/build/hls-stylish-haskell-plugin/Ide/Plugin/StylishHaskell.p_o )
1174.54 s
[haskell-language-server] plugins/hls-stylish-haskell-plugin/src/Ide/Plugin/StylishHaskell.hs:28:1: warning : [ GHC-66111 ] [ -Wunused-imports ]
1174.54 s
[haskell-language-server] The import of ‘System.Directory’ is redundant
1174.54 s
[haskell-language-server] except perhaps to import instances from ‘System.Directory’
1174.54 s
[haskell-language-server] To import instances alone, use: import System.Directory()
1174.54 s
[haskell-language-server] |
1174.54 s
[haskell-language-server] 28 | import System.Directory
1174.54 s
[haskell-language-server] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] Preprocessing library 'hls-eval-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] Building library 'hls-eval-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] [ 1 of 10] Compiling Ide.Plugin.Eval.Config ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Config.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Config.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Config.dyn_o )
1174.54 s
[haskell-language-server] [ 2 of 10] Compiling Ide.Plugin.Eval.Parse.Option ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Option.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Option.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Option.dyn_o )
1174.54 s
[haskell-language-server] [ 3 of 10] Compiling Ide.Plugin.Eval.Util ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Util.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Util.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Util.dyn_o )
1174.54 s
[haskell-language-server] [ 4 of 10] Compiling Ide.Plugin.Eval.GHC ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/GHC.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/GHC.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/GHC.dyn_o )
1174.54 s
[haskell-language-server] [ 5 of 10] Compiling Ide.Plugin.Eval.Types ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Types.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Types.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Types.dyn_o )
1174.54 s
[algebraic-graphs] OK: edge x y == edges [(x,y), (y,x)]
1174.54 s
[algebraic-graphs] OK: hasEdge x y (edge x y) == True
1174.54 s
[algebraic-graphs] OK: edgeCount (edge x y) == 1
1174.54 s
[algebraic-graphs] OK: vertexCount (edge 1 1) == 1
1174.54 s
[algebraic-graphs] OK: vertexCount (edge 1 2) == 2
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.overlay ============
1174.54 s
[algebraic-graphs] OK: isEmpty (overlay x y) == isEmpty x && isEmpty y
1174.54 s
[algebraic-graphs] OK: hasVertex z (overlay x y) == hasVertex z x || hasVertex z y
1174.54 s
[algebraic-graphs] OK: vertexCount (overlay x y) >= vertexCount x
1174.54 s
[algebraic-graphs] OK: vertexCount (overlay x y) <= vertexCount x + vertexCount y
1174.54 s
[algebraic-graphs] OK: edgeCount (overlay x y) >= edgeCount x
1174.54 s
[algebraic-graphs] OK: edgeCount (overlay x y) <= edgeCount x + edgeCount y
1174.54 s
[algebraic-graphs] OK: vertexCount (overlay 1 2) == 2
1174.54 s
[algebraic-graphs] OK: edgeCount (overlay 1 2) == 0
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.connect ============
1174.54 s
[algebraic-graphs] OK: connect x y == connect y x
1174.54 s
[algebraic-graphs] OK: isEmpty (connect x y) == isEmpty x && isEmpty y
1174.54 s
[algebraic-graphs] OK: hasVertex z (connect x y) == hasVertex z x || hasVertex z y
1174.54 s
[algebraic-graphs] OK: vertexCount (connect x y) >= vertexCount x
1174.54 s
[algebraic-graphs] OK: vertexCount (connect x y) <= vertexCount x + vertexCount y
1174.54 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount x
1174.54 s
[algebraic-graphs] OK: edgeCount (connect x y) >= edgeCount y
1174.54 s
[algebraic-graphs] OK: edgeCount (connect x y) >= vertexCount x * vertexCount y `div` 2
1174.54 s
[algebraic-graphs] OK: edgeCount (connect x y) <= vertexCount x * vertexCount y + edgeCount x + edgeCount y
1174.54 s
[algebraic-graphs] OK: vertexCount (connect 1 2) == 2
1174.54 s
[algebraic-graphs] OK: edgeCount (connect 1 2) == 1
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.vertices ============
1174.54 s
[algebraic-graphs] OK: vertices [] == empty
1174.54 s
[algebraic-graphs] OK: vertices [x] == vertex x
1174.54 s
[algebraic-graphs] OK: vertices == overlays . map vertex
1174.54 s
[algebraic-graphs] OK: hasVertex x . vertices == elem x
1174.54 s
[algebraic-graphs] OK: vertexCount . vertices == length . nub
1174.54 s
[algebraic-graphs] OK: vertexSet . vertices == Set.fromList
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.edges ============
1174.54 s
[algebraic-graphs] OK: edges [] == empty
1174.54 s
[algebraic-graphs] OK: edges [(x,y)] == edge x y
1174.54 s
[algebraic-graphs] OK: edges [(x,y), (y,x)] == edge x y
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.overlays ============
1174.54 s
[algebraic-graphs] OK: overlays [] == empty
1174.54 s
[algebraic-graphs] OK: overlays [x] == x
1174.54 s
[algebraic-graphs] OK: overlays [x,y] == overlay x y
1174.54 s
[algebraic-graphs] OK: overlays == foldr overlay empty
1174.54 s
[algebraic-graphs] OK: isEmpty . overlays == all isEmpty
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.connects ============
1174.54 s
[algebraic-graphs] OK: connects [] == empty
1174.54 s
[algebraic-graphs] OK: connects [x] == x
1174.54 s
[algebraic-graphs] OK: connects [x,y] == connect x y
1174.54 s
[algebraic-graphs] OK: connects == foldr connect empty
1174.54 s
[algebraic-graphs] OK: isEmpty . connects == all isEmpty
1174.54 s
[algebraic-graphs] OK: connects == connects . reverse
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.isSubgraphOf ============
1174.54 s
[algebraic-graphs] OK: isSubgraphOf empty x == True
1174.54 s
[algebraic-graphs] OK: isSubgraphOf (vertex x) empty == False
1174.54 s
[algebraic-graphs] OK: isSubgraphOf x (overlay x y) == True
1174.54 s
[algebraic-graphs] OK: isSubgraphOf (overlay x y) (connect x y) == True
1174.54 s
[algebraic-graphs] OK: isSubgraphOf (path xs) (circuit xs) == True
1174.54 s
[algebraic-graphs] OK: isSubgraphOf x y ==> x <= y
1174.54 s
[algebraic-graphs] OK: isSubgraphOf (edge x y) (edge y x) == True
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.path ============
1174.54 s
[algebraic-graphs] OK: path [] == empty
1174.54 s
[algebraic-graphs] OK: path [x] == vertex x
1174.54 s
[algebraic-graphs] OK: path [x,y] == edge x y
1174.54 s
[algebraic-graphs] OK: path == path . reverse
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.circuit ============
1174.54 s
[algebraic-graphs] OK: circuit [] == empty
1174.54 s
[algebraic-graphs] OK: circuit [x] == edge x x
1174.54 s
[algebraic-graphs] OK: circuit [x,y] == edges [(x,y), (y,x)]
1174.54 s
[algebraic-graphs] OK: circuit == circuit . reverse
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.clique ============
1174.54 s
[algebraic-graphs] OK: clique [] == empty
1174.54 s
[algebraic-graphs] OK: clique [x] == vertex x
1174.54 s
[algebraic-graphs] OK: clique [x,y] == edge x y
1174.54 s
[algebraic-graphs] OK: clique [x,y,z] == edges [(x,y), (x,z), (y,z)]
1174.54 s
[algebraic-graphs] OK: clique (xs ++ ys) == connect (clique xs) (clique ys)
1174.54 s
[algebraic-graphs] OK: clique == clique . reverse
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.biclique ============
1174.54 s
[algebraic-graphs] OK: biclique [] [] == empty
1174.54 s
[algebraic-graphs] OK: biclique [x] [] == vertex x
1174.54 s
[algebraic-graphs] OK: biclique [] [y] == vertex y
1174.54 s
[algebraic-graphs] OK: biclique [x1,x2] [y1,y2] == edges [(x1,y1), (x1,y2), (x2,y1), (x2,y2)]
1174.54 s
[algebraic-graphs] OK: biclique xs ys == connect (vertices xs) (vertices ys)
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.star ============
1174.54 s
[algebraic-graphs] OK: star x [] == vertex x
1174.54 s
[algebraic-graphs] OK: star x [y] == edge x y
1174.54 s
[algebraic-graphs] OK: star x [y,z] == edges [(x,y), (x,z)]
1174.54 s
[algebraic-graphs] OK: star x ys == connect (vertex x) (vertices ys)
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.stars ============
1174.54 s
[algebraic-graphs] OK: stars [] == empty
1174.54 s
[algebraic-graphs] OK: stars [(x, [])] == vertex x
1174.54 s
[algebraic-graphs] OK: stars [(x, [y])] == edge x y
1174.54 s
[algebraic-graphs] OK: stars [(x, ys)] == star x ys
1174.54 s
[haskell-language-server] [ 6 of 10] Compiling Ide.Plugin.Eval.Rules ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Rules.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Rules.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Rules.dyn_o )
1174.54 s
[haskell-language-server] [ 7 of 10] Compiling Ide.Plugin.Eval.Parse.Comments ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Comments.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Comments.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Comments.dyn_o )
1174.54 s
[haskell-language-server] [ 8 of 10] Compiling Ide.Plugin.Eval.Code ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Code.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Code.dyn_o )
1174.54 s
[haskell-language-server] plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs:88:18: warning : [ GHC-63394 ] [ -Wx-partial ]
1174.54 s
[haskell-language-server] In the use of ‘head’
1174.54 s
[haskell-language-server] (imported from Prelude, but defined in GHC.Internal.List):
1174.54 s
[haskell-language-server] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
1174.54 s
[haskell-language-server] |
1174.54 s
[haskell-language-server] 88 | evalPrint <- head <$> runDecls ("evalPrint x = P.writeFile " <> show temp <> " (P.show x)")
1174.54 s
[haskell-language-server] | ^^^^
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] [ 9 of 10] Compiling Ide.Plugin.Eval.Handlers ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Handlers.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Handlers.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Handlers.dyn_o )
1174.54 s
[haskell-language-server] [10 of 10] Compiling Ide.Plugin.Eval ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval.o, dist/build/hls-eval-plugin/Ide/Plugin/Eval.dyn_o )
1174.54 s
[haskell-language-server] [ 1 of 10] Compiling Ide.Plugin.Eval.Config ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Config.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Config.p_o )
1174.54 s
[haskell-language-server] [ 2 of 10] Compiling Ide.Plugin.Eval.Parse.Option ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Option.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Option.p_o )
1174.54 s
[haskell-language-server] [ 3 of 10] Compiling Ide.Plugin.Eval.Util ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Util.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Util.p_o )
1174.54 s
[haskell-language-server] [ 4 of 10] Compiling Ide.Plugin.Eval.GHC ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/GHC.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/GHC.p_o )
1174.54 s
[haskell-language-server] [ 5 of 10] Compiling Ide.Plugin.Eval.Types ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Types.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Types.p_o )
1174.54 s
[haskell-language-server] [ 6 of 10] Compiling Ide.Plugin.Eval.Rules ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Rules.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Rules.p_o )
1174.54 s
[haskell-language-server] [ 7 of 10] Compiling Ide.Plugin.Eval.Parse.Comments ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Parse/Comments.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Parse/Comments.p_o )
1174.54 s
[haskell-language-server] [ 8 of 10] Compiling Ide.Plugin.Eval.Code ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Code.p_o )
1174.54 s
[haskell-language-server] plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Code.hs:88:18: warning : [ GHC-63394 ] [ -Wx-partial ]
1174.54 s
[haskell-language-server] In the use of ‘head’
1174.54 s
[haskell-language-server] (imported from Prelude, but defined in GHC.Internal.List):
1174.54 s
[haskell-language-server] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
1174.54 s
[haskell-language-server] |
1174.54 s
[haskell-language-server] 88 | evalPrint <- head <$> runDecls ("evalPrint x = P.writeFile " <> show temp <> " (P.show x)")
1174.54 s
[haskell-language-server] | ^^^^
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] [ 9 of 10] Compiling Ide.Plugin.Eval.Handlers ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval/Handlers.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval/Handlers.p_o )
1174.54 s
[haskell-language-server] [10 of 10] Compiling Ide.Plugin.Eval ( plugins/hls-eval-plugin/src/Ide/Plugin/Eval.hs, dist/build/hls-eval-plugin/Ide/Plugin/Eval.p_o )
1174.54 s
[algebraic-graphs] OK: stars == overlays . map (uncurry star)
1174.54 s
[algebraic-graphs] OK: stars . adjacencyList == id
1174.54 s
[algebraic-graphs] OK: overlay (stars xs) (stars ys) == stars (xs ++ ys)
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.tree ============
1174.54 s
[algebraic-graphs] OK: tree (Node x []) == vertex x
1174.54 s
[algebraic-graphs] OK: tree (Node x [Node y [Node z []]]) == path [x,y,z]
1174.54 s
[algebraic-graphs] OK: tree (Node x [Node y [], Node z []]) == star x [y,z]
1174.54 s
[algebraic-graphs] OK: tree (Node 1 [Node 2 [], Node 3 [Node 4 [], Node 5 []]]) == edges [(1,2), (1,3), (3,4), (3,5)]
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.forest ============
1174.54 s
[algebraic-graphs] OK: forest [] == empty
1174.54 s
[algebraic-graphs] OK: forest [x] == tree x
1174.54 s
[algebraic-graphs] OK: forest [Node 1 [Node 2 [], Node 3 []], Node 4 [Node 5 []]] == edges [(1,2), (1,3), (4,5)]
1174.54 s
[algebraic-graphs] OK: forest == overlays . map tree
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.removeVertex ============
1174.54 s
[algebraic-graphs] OK: removeVertex x (vertex x) == empty
1174.54 s
[algebraic-graphs] OK: removeVertex 1 (vertex 2) == vertex 2
1174.54 s
[algebraic-graphs] OK: removeVertex x (edge x x) == empty
1174.54 s
[algebraic-graphs] OK: removeVertex 1 (edge 1 2) == vertex 2
1174.54 s
[algebraic-graphs] OK: removeVertex x . removeVertex x == removeVertex x
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.removeEdge ============
1174.54 s
[algebraic-graphs] OK: removeEdge x y (edge x y) == vertices [x,y]
1174.54 s
[algebraic-graphs] OK: removeEdge x y . removeEdge x y == removeEdge x y
1174.54 s
[algebraic-graphs] OK: removeEdge x y . removeVertex x == removeVertex x
1174.54 s
[algebraic-graphs] OK: removeEdge 1 1 (1 * 1 * 2 * 2) == 1 * 2 * 2
1174.54 s
[algebraic-graphs] OK: removeEdge 1 2 (1 * 1 * 2 * 2) == 1 * 1 + 2 * 2
1174.54 s
[algebraic-graphs] OK: removeEdge x y == removeEdge y x
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.replaceVertex ============
1174.54 s
[algebraic-graphs] OK: replaceVertex x x == id
1174.54 s
[algebraic-graphs] OK: replaceVertex x y (vertex x) == vertex y
1174.54 s
[algebraic-graphs] OK: replaceVertex x y == mergeVertices (== x) y
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.mergeVertices ============
1174.54 s
[algebraic-graphs] OK: mergeVertices (const False) x == id
1174.54 s
[algebraic-graphs] OK: mergeVertices (== x) y == replaceVertex x y
1174.54 s
[algebraic-graphs] OK: mergeVertices even 1 (0 * 2) == 1 * 1
1174.54 s
[algebraic-graphs] OK: mergeVertices odd 1 (3 + 4 * 5) == 4 * 1
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.gmap ============
1174.54 s
[algebraic-graphs] OK: gmap f empty == empty
1174.54 s
[algebraic-graphs] OK: gmap f (vertex x) == vertex (f x)
1174.54 s
[algebraic-graphs] OK: gmap f (edge x y) == edge (f x) (f y)
1174.54 s
[algebraic-graphs] OK: gmap id == id
1174.54 s
[algebraic-graphs] OK: gmap f . gmap g == gmap (f . g)
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.induce ============
1174.54 s
[algebraic-graphs] OK: induce (const True ) x == x
1174.54 s
[algebraic-graphs] OK: induce (const False) x == empty
1174.54 s
[algebraic-graphs] OK: induce (/= x) == removeVertex x
1174.54 s
[algebraic-graphs] OK: induce p . induce q == induce (\x -> p x && q x)
1174.54 s
[algebraic-graphs] OK: isSubgraphOf (induce p x) x == True
1174.54 s
[algebraic-graphs]
1174.54 s
[algebraic-graphs] ============ Graph.Undirected.induceJust ============
1174.54 s
[algebraic-graphs] OK: induceJust (vertex Nothing) == empty
1174.54 s
[algebraic-graphs] OK: induceJust (edge (Just x) Nothing) == vertex x
1174.54 s
[algebraic-graphs] OK: induceJust . gmap Just == id
1174.54 s
[algebraic-graphs] OK: induceJust . gmap (\x -> if p x then Just x else Nothing) == induce p
1174.54 s
[algebraic-graphs] Test suite main: PASS
1174.54 s
[algebraic-graphs] Test suite logged to: dist/test/algebraic-graphs-0.7-main.log
1174.54 s
[algebraic-graphs] 1 of 1 test suites (1 of 1 test cases) passed.
1174.54 s
[haskell-language-server] Preprocessing library 'hls-gadt-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] Building library 'hls-gadt-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] [1 of 2] Compiling Ide.Plugin.GHC ( plugins/hls-gadt-plugin/src/Ide/Plugin/GHC.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GHC.o, dist/build/hls-gadt-plugin/Ide/Plugin/GHC.dyn_o )
1174.54 s
[haskell-language-server] [2 of 2] Compiling Ide.Plugin.GADT ( plugins/hls-gadt-plugin/src/Ide/Plugin/GADT.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GADT.o, dist/build/hls-gadt-plugin/Ide/Plugin/GADT.dyn_o )
1174.54 s
[haskell-language-server] [1 of 2] Compiling Ide.Plugin.GHC ( plugins/hls-gadt-plugin/src/Ide/Plugin/GHC.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GHC.p_o )
1174.54 s
[haskell-language-server] [2 of 2] Compiling Ide.Plugin.GADT ( plugins/hls-gadt-plugin/src/Ide/Plugin/GADT.hs, dist/build/hls-gadt-plugin/Ide/Plugin/GADT.p_o )
1174.54 s
[haskell-language-server] Preprocessing library 'hls-cabal-gild-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] Building library 'hls-cabal-gild-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalGild ( plugins/hls-cabal-gild-plugin/src/Ide/Plugin/CabalGild.hs, dist/build/hls-cabal-gild-plugin/Ide/Plugin/CabalGild.o, dist/build/hls-cabal-gild-plugin/Ide/Plugin/CabalGild.dyn_o )
1174.54 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalGild ( plugins/hls-cabal-gild-plugin/src/Ide/Plugin/CabalGild.hs, dist/build/hls-cabal-gild-plugin/Ide/Plugin/CabalGild.p_o )
1174.54 s
[haskell-language-server] Preprocessing library 'hls-explicit-record-fields-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] Building library 'hls-explicit-record-fields-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.ExplicitFields ( plugins/hls-explicit-record-fields-plugin/src/Ide/Plugin/ExplicitFields.hs, dist/build/hls-explicit-record-fields-plugin/Ide/Plugin/ExplicitFields.o, dist/build/hls-explicit-record-fields-plugin/Ide/Plugin/ExplicitFields.dyn_o )
1174.54 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.ExplicitFields ( plugins/hls-explicit-record-fields-plugin/src/Ide/Plugin/ExplicitFields.hs, dist/build/hls-explicit-record-fields-plugin/Ide/Plugin/ExplicitFields.p_o )
1174.54 s
[haskell-language-server] Preprocessing library 'hls-semantic-tokens-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] Building library 'hls-semantic-tokens-plugin' for haskell-language-server-2.12.0.0...
1174.54 s
[haskell-language-server] <no location info>: warning : [ GHC-42258 ] [ -Wunused-packages ]
1174.54 s
[haskell-language-server] The following packages were specified via -package or -package-id flags,
1174.54 s
[haskell-language-server] but were not needed for compilation:
1174.54 s
[haskell-language-server] - syb-0.7.2.4 (exposed by flag -package-id syb-0.7.2.4-4DQrK89tOsuFUDVxKdoNj)
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] [1 of 8] Compiling Ide.Plugin.SemanticTokens.Types ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Types.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Types.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Types.dyn_o )
1174.54 s
[haskell-language-server] [2 of 8] Compiling Ide.Plugin.SemanticTokens.Tokenize ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Tokenize.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Tokenize.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Tokenize.dyn_o )
1174.54 s
[haskell-language-server] [3 of 8] Compiling Ide.Plugin.SemanticTokens.SemanticConfig ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/SemanticConfig.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/SemanticConfig.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/SemanticConfig.dyn_o )
1174.54 s
[haskell-language-server] [4 of 8] Compiling Ide.Plugin.SemanticTokens.Utils ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Utils.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Utils.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Utils.dyn_o )
1174.54 s
[haskell-language-server] [5 of 8] Compiling Ide.Plugin.SemanticTokens.Mappings ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Mappings.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Mappings.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Mappings.dyn_o )
1174.54 s
[haskell-language-server] [6 of 8] Compiling Ide.Plugin.SemanticTokens.Query ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Query.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Query.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Query.dyn_o )
1174.54 s
[haskell-language-server] [7 of 8] Compiling Ide.Plugin.SemanticTokens.Internal ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Internal.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Internal.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Internal.dyn_o )
1174.54 s
[haskell-language-server] [8 of 8] Compiling Ide.Plugin.SemanticTokens ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens.o, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens.dyn_o )
1174.54 s
[haskell-language-server] <no location info>: warning : [ GHC-42258 ] [ -Wunused-packages ]
1174.54 s
[haskell-language-server] The following packages were specified via -package or -package-id flags,
1174.54 s
[haskell-language-server] but were not needed for compilation:
1174.54 s
[haskell-language-server] - syb-0.7.2.4 (exposed by flag -package-id syb-0.7.2.4-4DQrK89tOsuFUDVxKdoNj)
1174.54 s
[haskell-language-server]
1174.54 s
[haskell-language-server] [1 of 8] Compiling Ide.Plugin.SemanticTokens.Types ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Types.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Types.p_o )
1174.54 s
[haskell-language-server] [2 of 8] Compiling Ide.Plugin.SemanticTokens.Tokenize ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Tokenize.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Tokenize.p_o )
1174.54 s
[haskell-language-server] [3 of 8] Compiling Ide.Plugin.SemanticTokens.SemanticConfig ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/SemanticConfig.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/SemanticConfig.p_o )
1174.54 s
[haskell-language-server] [4 of 8] Compiling Ide.Plugin.SemanticTokens.Utils ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Utils.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Utils.p_o )
1174.54 s
[haskell-language-server] [5 of 8] Compiling Ide.Plugin.SemanticTokens.Mappings ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Mappings.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Mappings.p_o )
1174.54 s
[haskell-language-server] [6 of 8] Compiling Ide.Plugin.SemanticTokens.Query ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Query.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Query.p_o )
1174.54 s
[haskell-language-server] [7 of 8] Compiling Ide.Plugin.SemanticTokens.Internal ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens/Internal.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens/Internal.p_o )
1174.54 s
[haskell-language-server] [8 of 8] Compiling Ide.Plugin.SemanticTokens ( plugins/hls-semantic-tokens-plugin/src/Ide/Plugin/SemanticTokens.hs, dist/build/hls-semantic-tokens-plugin/Ide/Plugin/SemanticTokens.p_o )
1174.54 s
[algebraic-graphs] checkPhase completed in 4 minutes 4 seconds
1174.54 s
[algebraic-graphs] Phase: haddockPhase
1174.66 s
[algebraic-graphs] Preprocessing library for algebraic-graphs-0.7...
1174.67 s
[algebraic-graphs] Running Haddock on library for algebraic-graphs-0.7...
1174.86 s
[algebraic-graphs] [ 1 of 29] Compiling Algebra.Graph.AdjacencyMap ( src/Algebra/Graph/AdjacencyMap.hs, nothing )
1175.13 s
[pandoc-lua-engine] Phase: setupCompilerEnvironmentPhase
1175.13 s
[pandoc-lua-engine] Build with /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3.
1175.23 s
[algebraic-graphs] [ 2 of 29] Compiling Algebra.Graph.AdjacencyIntMap ( src/Algebra/Graph/AdjacencyIntMap.hs, nothing )
1175.25 s
[pandoc-server] Phase: setupCompilerEnvironmentPhase
1175.25 s
[pandoc-server] Build with /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3.
1175.32 s
[algebraic-graphs] [ 3 of 29] Compiling Algebra.Graph.AdjacencyIntMap.Algorithm ( src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs, nothing )
1175.45 s
[algebraic-graphs] [ 4 of 29] Compiling Algebra.Graph.Internal ( src/Algebra/Graph/Internal.hs, nothing )
1175.48 s
[algebraic-graphs] [ 5 of 29] Compiling Algebra.Graph ( src/Algebra/Graph.hs, nothing )
1175.64 s
[algebraic-graphs] [ 6 of 29] Compiling Algebra.Graph.HigherKinded.Class ( src/Algebra/Graph/HigherKinded/Class.hs, nothing )
1175.76 s
[pandoc-lua-engine] Phase: unpackPhase
1175.76 s
[pandoc-lua-engine] unpacking source archive /nix/store/zx6z7rsf1lwrwkbcq94jg1dgi1fp9jls-pandoc-lua-engine-0.4.3.tar.gz
1175.77 s
[pandoc-lua-engine] source root is pandoc-lua-engine-0.4.3
1175.77 s
[algebraic-graphs] [ 7 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap ( src/Algebra/Graph/Bipartite/AdjacencyMap.hs, nothing )
1175.78 s
[pandoc-lua-engine] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-lua-engine-0.4.3/test/writer-template.out.txt"
1175.78 s
[pandoc-lua-engine] Phase: patchPhase
1175.79 s
[pandoc-lua-engine] Replace Cabal file with edited version from mirror://hackage/pandoc-lua-engine-0.4.3/revision/2.cabal.
1175.80 s
[pandoc-lua-engine] Phase: compileBuildDriverPhase
1175.80 s
[pandoc-lua-engine] setupCompileFlags: -package-db=/build/tmp.mZRQqMKVCC/setup-package.conf.d -threaded
1175.85 s
[pandoc-lua-engine] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.mZRQqMKVCC/Main.o )
1175.88 s
[pandoc-server] Phase: unpackPhase
1175.88 s
[pandoc-server] unpacking source archive /nix/store/4kqsjsplqpsanrihsxp1wxshjqr4snkl-pandoc-server-0.1.0.11.tar.gz
1175.89 s
[pandoc-server] source root is pandoc-server-0.1.0.11
1175.90 s
[pandoc-server] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-server-0.1.0.11/src/Text/Pandoc/Server.hs"
1175.90 s
[pandoc-lua-engine] [2 of 2] Linking Setup
1175.90 s
[pandoc-server] Phase: patchPhase
1175.91 s
[pandoc-server] Phase: compileBuildDriverPhase
1175.91 s
[pandoc-server] setupCompileFlags: -package-db=/build/tmp.Gjf2aNl68j/setup-package.conf.d -threaded
1175.93 s
[algebraic-graphs] [ 8 of 29] Compiling Algebra.Graph.Bipartite.AdjacencyMap.Algorithm ( src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs, nothing )
1175.97 s
[pandoc-server] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.Gjf2aNl68j/Main.o )
1176.02 s
[pandoc-server] [2 of 2] Linking Setup
1176.03 s
[algebraic-graphs] [ 9 of 29] Compiling Algebra.Graph.Label ( src/Algebra/Graph/Label.hs, nothing )
1176.30 s
[algebraic-graphs] [10 of 29] Compiling Algebra.Graph.NonEmpty.AdjacencyMap ( src/Algebra/Graph/NonEmpty/AdjacencyMap.hs, nothing )
1176.37 s
[algebraic-graphs] [11 of 29] Compiling Algebra.Graph.AdjacencyMap.Algorithm ( src/Algebra/Graph/AdjacencyMap/Algorithm.hs, nothing )
1176.49 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:384:43: warning : [ GHC-63394 ] [ -Wx-partial ]
1176.49 s
[algebraic-graphs] In the use of ‘head’
1176.49 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1176.49 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
1176.49 s
[algebraic-graphs] |
1176.49 s
[algebraic-graphs] 384 | exit v = do newComponent <- (v==).snd.head <$> gets boundaryStack
1176.49 s
[algebraic-graphs] | ^^^^
1176.49 s
[algebraic-graphs]
1176.50 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:391:21: warning : [ GHC-63394 ] [ -Wx-partial ]
1176.50 s
[algebraic-graphs] In the use of ‘tail’
1176.50 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1176.50 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
1176.50 s
[algebraic-graphs] |
1176.50 s
[algebraic-graphs] 391 | pth' = tail v_pth' -- Here we know that v_pth' starts with v
1176.50 s
[algebraic-graphs] | ^^^^
1176.50 s
[algebraic-graphs]
1176.50 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:395:26: warning : [ GHC-63394 ] [ -Wx-partial ]
1176.50 s
[algebraic-graphs] In the use of ‘head’
1176.50 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1176.50 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
1176.50 s
[algebraic-graphs] |
1176.50 s
[algebraic-graphs] 395 | p_v = fst $ head bnd
1176.50 s
[algebraic-graphs] | ^^^^
1176.50 s
[algebraic-graphs]
1176.50 s
[algebraic-graphs] src/Algebra/Graph/AdjacencyMap/Algorithm.hs:397:21: warning : [ GHC-63394 ] [ -Wx-partial ]
1176.50 s
[algebraic-graphs] In the use of ‘tail’
1176.50 s
[algebraic-graphs] (imported from Prelude, but defined in GHC.Internal.List):
1176.50 s
[algebraic-graphs] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
1176.50 s
[algebraic-graphs] |
1176.50 s
[algebraic-graphs] 397 | bnd' = tail bnd
1176.50 s
[algebraic-graphs] | ^^^^
1176.50 s
[algebraic-graphs]
1176.50 s
[algebraic-graphs] [12 of 29] Compiling Algebra.Graph.Acyclic.AdjacencyMap ( src/Algebra/Graph/Acyclic/AdjacencyMap.hs, nothing )
1176.57 s
[algebraic-graphs] [13 of 29] Compiling Algebra.Graph.ToGraph ( src/Algebra/Graph/ToGraph.hs, nothing )
1176.73 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:171:32: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.73 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.73 s
[algebraic-graphs] will become an error in a future GHC release.
1176.73 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.73 s
[algebraic-graphs] |
1176.73 s
[algebraic-graphs] 171 | vertexIntSet :: ToVertex t ~ Int => t -> IntSet
1176.73 s
[algebraic-graphs] | ^
1176.73 s
[algebraic-graphs]
1176.73 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:197:29: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.73 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.73 s
[algebraic-graphs] will become an error in a future GHC release.
1176.73 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.73 s
[algebraic-graphs] |
1176.73 s
[algebraic-graphs] 197 | preIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
1176.73 s
[algebraic-graphs] | ^
1176.73 s
[algebraic-graphs]
1176.73 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:215:30: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.73 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.73 s
[algebraic-graphs] will become an error in a future GHC release.
1176.73 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.73 s
[algebraic-graphs] |
1176.73 s
[algebraic-graphs] 215 | postIntSet :: ToVertex t ~ Int => Int -> t -> IntSet
1176.74 s
[algebraic-graphs] | ^
1176.74 s
[algebraic-graphs]
1176.74 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:303:37: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.74 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.74 s
[algebraic-graphs] will become an error in a future GHC release.
1176.74 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.74 s
[algebraic-graphs] |
1176.74 s
[algebraic-graphs] 303 | toAdjacencyIntMap :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
1176.74 s
[algebraic-graphs] | ^
1176.74 s
[algebraic-graphs]
1176.74 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:312:46: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.74 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.74 s
[algebraic-graphs] will become an error in a future GHC release.
1176.74 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.74 s
[algebraic-graphs] |
1176.74 s
[algebraic-graphs] 312 | toAdjacencyIntMapTranspose :: ToVertex t ~ Int => t -> AIM.AdjacencyIntMap
1176.74 s
[algebraic-graphs] | ^
1176.74 s
[algebraic-graphs]
1176.74 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:452:43: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.74 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.74 s
[algebraic-graphs] will become an error in a future GHC release.
1176.74 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.74 s
[algebraic-graphs] |
1176.74 s
[algebraic-graphs] 452 | adjacencyIntMap :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
1176.74 s
[algebraic-graphs] | ^
1176.74 s
[algebraic-graphs]
1176.74 s
[algebraic-graphs] src/Algebra/Graph/ToGraph.hs:471:52: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1176.74 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1176.74 s
[algebraic-graphs] will become an error in a future GHC release.
1176.74 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1176.74 s
[algebraic-graphs] |
1176.74 s
[algebraic-graphs] 471 | adjacencyIntMapTranspose :: (ToGraph t, ToVertex t ~ Int) => t -> IntMap IntSet
1176.74 s
[algebraic-graphs] | ^
1176.74 s
[algebraic-graphs]
1176.75 s
[algebraic-graphs] [14 of 29] Compiling Algebra.Graph.Relation ( src/Algebra/Graph/Relation.hs, nothing )
1176.86 s
[algebraic-graphs] [15 of 29] Compiling Algebra.Graph.Relation.Symmetric ( src/Algebra/Graph/Relation/Symmetric.hs, nothing )
1176.95 s
[algebraic-graphs] [16 of 29] Compiling Algebra.Graph.NonEmpty ( src/Algebra/Graph/NonEmpty.hs, nothing )
1177.20 s
[algebraic-graphs] [17 of 29] Compiling Algebra.Graph.Labelled.AdjacencyMap ( src/Algebra/Graph/Labelled/AdjacencyMap.hs, nothing )
1177.31 s
[pandoc-lua-engine] Phase: updateAutotoolsGnuConfigScriptsPhase
1177.32 s
[pandoc-lua-engine] Phase: configurePhase
1177.33 s
[pandoc-lua-engine] configureFlags: --verbose --prefix=/nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc/share/doc/pandoc-lua-engine-0.4.3 --with-gcc=gcc --package-db=/build/tmp.mZRQqMKVCC/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --extra-lib-dirs=/nix/store/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
1177.34 s
[pandoc-lua-engine] Using Parsec parser
1177.34 s
[pandoc-lua-engine] Configuring pandoc-lua-engine-0.4.3...
1177.36 s
[algebraic-graphs] [18 of 29] Compiling Algebra.Graph.Labelled ( src/Algebra/Graph/Labelled.hs, nothing )
1177.44 s
[pandoc-server] Phase: updateAutotoolsGnuConfigScriptsPhase
1177.45 s
[pandoc-server] Phase: configurePhase
1177.46 s
[pandoc-server] configureFlags: --verbose --prefix=/nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc/share/doc/pandoc-server-0.1.0.11 --with-gcc=gcc --package-db=/build/tmp.Gjf2aNl68j/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --extra-lib-dirs=/nix/store/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
1177.47 s
[pandoc-server] Using Parsec parser
1177.47 s
[pandoc-server] Configuring pandoc-server-0.1.0.11...
1177.51 s
[algebraic-graphs] [19 of 29] Compiling Algebra.Graph.Labelled.Example.Network ( src/Algebra/Graph/Labelled/Example/Network.hs, nothing )
1177.52 s
[algebraic-graphs] [20 of 29] Compiling Algebra.Graph.Labelled.Example.Automaton ( src/Algebra/Graph/Labelled/Example/Automaton.hs, nothing )
1177.56 s
[algebraic-graphs] [21 of 29] Compiling Algebra.Graph.Export ( src/Algebra/Graph/Export.hs, nothing )
1177.59 s
[algebraic-graphs] src/Algebra/Graph/Export.hs:185:41: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1177.59 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1177.59 s
[algebraic-graphs] will become an error in a future GHC release.
1177.59 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1177.59 s
[algebraic-graphs] |
1177.59 s
[algebraic-graphs] 185 | export :: (Ord a, ToGraph g, ToVertex g ~ a) => (a -> Doc s) -> (a -> a -> Doc s) -> g -> Doc s
1177.59 s
[algebraic-graphs] | ^
1177.59 s
[algebraic-graphs]
1177.59 s
[algebraic-graphs] [22 of 29] Compiling Algebra.Graph.Export.Dot ( src/Algebra/Graph/Export/Dot.hs, nothing )
1177.61 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:121:63: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1177.61 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1177.61 s
[algebraic-graphs] will become an error in a future GHC release.
1177.61 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1177.61 s
[algebraic-graphs] |
1177.61 s
[algebraic-graphs] 121 | export :: (IsString s, Monoid s, Ord a, ToGraph g, ToVertex g ~ a) => Style a s -> g -> s
1177.61 s
[algebraic-graphs] | ^
1177.61 s
[algebraic-graphs]
1177.61 s
[algebraic-graphs] src/Algebra/Graph/Export/Dot.hs:165:78: warning : [ GHC-58520 ] [ -Wtype-equality-requires-operators ]
1177.62 s
[algebraic-graphs] The use of ‘~’ without TypeOperators
1177.62 s
[algebraic-graphs] will become an error in a future GHC release.
1177.62 s
[algebraic-graphs] Suggested fix: Perhaps you intended to use TypeOperators
1177.62 s
[algebraic-graphs] |
1177.62 s
[algebraic-graphs] 165 | exportAsIs :: (IsString s, Monoid s, Ord (ToVertex g), ToGraph g, ToVertex g ~ s) => g -> s
1177.62 s
[algebraic-graphs] | ^
1177.62 s
[algebraic-graphs]
1177.62 s
[algebraic-graphs] [23 of 29] Compiling Algebra.Graph.Undirected ( src/Algebra/Graph/Undirected.hs, nothing )
1177.79 s
[algebraic-graphs] [24 of 29] Compiling Algebra.Graph.Class ( src/Algebra/Graph/Class.hs, nothing )
1177.89 s
[algebraic-graphs] [25 of 29] Compiling Algebra.Graph.Relation.Transitive ( src/Algebra/Graph/Relation/Transitive.hs, nothing )
1177.91 s
[algebraic-graphs] [26 of 29] Compiling Algebra.Graph.Relation.Reflexive ( src/Algebra/Graph/Relation/Reflexive.hs, nothing )
1177.93 s
[algebraic-graphs] [27 of 29] Compiling Algebra.Graph.Relation.Preorder ( src/Algebra/Graph/Relation/Preorder.hs, nothing )
1177.95 s
[algebraic-graphs] [28 of 29] Compiling Algebra.Graph.Example.Todo ( src/Algebra/Graph/Example/Todo.hs, nothing )
1177.97 s
[algebraic-graphs] [29 of 29] Compiling Data.Graph.Typed ( src/Data/Graph/Typed.hs, nothing )
1178.00 s
[algebraic-graphs] Haddock coverage:
1178.00 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.00 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
1178.00 s
[algebraic-graphs] * in ‘Data.Map.Internal’
1178.00 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.00 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.00 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.00 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
1178.02 s
[algebraic-graphs] 100% ( 58 / 58) in 'Algebra.Graph.AdjacencyMap'
1178.02 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.02 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
1178.02 s
[algebraic-graphs] * in ‘Data.IntMap.Internal’
1178.02 s
[algebraic-graphs] * in ‘Data.IntSet.Internal’
1178.02 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.02 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.02 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyIntMap.hs:237:1
1178.04 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.AdjacencyIntMap'
1178.05 s
[algebraic-graphs] Warning: 'nub' is out of scope.
1178.05 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.05 s
[algebraic-graphs] Warning: 'sort' is out of scope.
1178.05 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.05 s
[algebraic-graphs] 93% ( 14 / 15) in 'Algebra.Graph.AdjacencyIntMap.Algorithm'
1178.05 s
[algebraic-graphs] Missing documentation for:
1178.05 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyIntMap/Algorithm.hs:227)
1178.05 s
[algebraic-graphs] Warning: 'List' is ambiguous. It is defined
1178.05 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:18
1178.05 s
[algebraic-graphs] * at src/Algebra/Graph/Internal.hs:50:1
1178.05 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.05 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.05 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Internal.hs:50:1
1178.05 s
[algebraic-graphs] Warning: 'IsList' is out of scope.
1178.05 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.05 s
[algebraic-graphs] 100% ( 19 / 19) in 'Algebra.Graph.Internal'
1178.05 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
1178.05 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:18
1178.05 s
[algebraic-graphs] * at src/Algebra/Graph.hs:1400:1
1178.05 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.05 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.05 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:1400:1
1178.07 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.07 s
[algebraic-graphs] * at src/Algebra/Graph.hs:316:1
1178.07 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.07 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.07 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.07 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph.hs:316:1
1178.08 s
[algebraic-graphs] 100% ( 61 / 61) in 'Algebra.Graph'
1178.08 s
[algebraic-graphs] Warning: 'mplus' is out of scope.
1178.08 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'vertexCount' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'hasVertex' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'vertexSet' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'edgeList' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'box' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.09 s
[algebraic-graphs] Warning: 'edgeCount' is out of scope.
1178.09 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.10 s
[algebraic-graphs] 100% ( 42 / 42) in 'Algebra.Graph.HigherKinded.Class'
1178.10 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.10 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1178.10 s
[algebraic-graphs] * in ‘Data.Map.Internal’
1178.10 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.10 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.10 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.10 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1178.11 s
[algebraic-graphs] Warning: 'nub' is out of scope.
1178.11 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.11 s
[algebraic-graphs] Warning: 'swap' is ambiguous. It is defined
1178.11 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
1178.11 s
[algebraic-graphs] * in ‘GHC.Internal.Data.Tuple’
1178.11 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.11 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.11 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:418:1
1178.12 s
[algebraic-graphs] 100% ( 63 / 63) in 'Algebra.Graph.Bipartite.AdjacencyMap'
1178.13 s
[algebraic-graphs] Warning: 'isRight' is out of scope.
1178.13 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.13 s
[algebraic-graphs] Warning: 'Matching' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:21
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap/Algorithm.hs:169:1
1178.13 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1178.13 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Bipartite/AdjacencyMap.hs:250:1
1178.13 s
[algebraic-graphs] 100% ( 25 / 25) in 'Algebra.Graph.Bipartite.AdjacencyMap.Algorithm'
1178.13 s
[algebraic-graphs] Warning: 'Optimum' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:20
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:442:1
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:442:1
1178.13 s
[algebraic-graphs] Warning: 'Distance' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:22
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:241:1
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:241:1
1178.13 s
[algebraic-graphs] Warning: 'Minimum' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:21
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:314:1
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:314:1
1178.13 s
[algebraic-graphs] Warning: 'Capacity' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:22
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:176:1
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:176:1
1178.13 s
[algebraic-graphs] Warning: 'Count' is ambiguous. It is defined
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:19
1178.13 s
[algebraic-graphs] * at src/Algebra/Graph/Label.hs:209:1
1178.13 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.13 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.13 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Label.hs:209:1
1178.14 s
[algebraic-graphs] 100% ( 37 / 37) in 'Algebra.Graph.Label'
1178.14 s
[algebraic-graphs] Warning: 'AdjacencyMap' is ambiguous. It is defined
1178.14 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:157:1
1178.14 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
1178.14 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.14 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.14 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:152:1
1178.14 s
[algebraic-graphs] Warning: 'isEmpty' is out of scope.
1178.14 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.14 s
[algebraic-graphs] Warning: 'empty' is out of scope.
1178.14 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.14 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
1178.14 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.15 s
[algebraic-graphs] Warning: 'edges' is out of scope.
1178.15 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.15 s
[algebraic-graphs] Warning: 'adjacencyList' is out of scope.
1178.15 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.15 s
[algebraic-graphs] Warning: 'stars' is out of scope.
1178.15 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.15 s
[algebraic-graphs] 100% ( 51 / 51) in 'Algebra.Graph.NonEmpty.AdjacencyMap'
1178.16 s
[algebraic-graphs] Warning: 'nub' is out of scope.
1178.16 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.16 s
[algebraic-graphs] Warning: 'sort' is out of scope.
1178.16 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.16 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
1178.16 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
1178.16 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
1178.16 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.16 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.16 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:224:1
1178.16 s
[algebraic-graphs] Warning: 'edge' is ambiguous. It is defined
1178.16 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:252:1
1178.16 s
[algebraic-graphs] * at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
1178.16 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.16 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.16 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/NonEmpty/AdjacencyMap.hs:237:1
1178.17 s
[algebraic-graphs] 93% ( 15 / 16) in 'Algebra.Graph.AdjacencyMap.Algorithm'
1178.17 s
[algebraic-graphs] Missing documentation for:
1178.17 s
[algebraic-graphs] Cycle (src/Algebra/Graph/AdjacencyMap/Algorithm.hs:228)
1178.17 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:132:1
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:227:1
1178.17 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.17 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.17 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:227:1
1178.17 s
[algebraic-graphs] Warning: 'vertex' is ambiguous. It is defined
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:143:1
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:239:1
1178.17 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.17 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.17 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:239:1
1178.17 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:246:1
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:417:1
1178.17 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.17 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.17 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:417:1
1178.17 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:258:1
1178.17 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:429:1
1178.17 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.17 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.17 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:429:1
1178.17 s
[pandoc-lua-engine] Dependency aeson: using aeson-2.2.3.0
1178.17 s
[pandoc-lua-engine] Dependency base >=4.12 && <5: using base-4.20.2.0
1178.17 s
[pandoc-lua-engine] Dependency bytestring >=0.9 && <0.13: using bytestring-0.12.2.0
1178.17 s
[pandoc-lua-engine] Dependency citeproc >=0.8 && <0.10: using citeproc-0.9.0.1
1178.17 s
[pandoc-lua-engine] Dependency containers >=0.6.0.1 && <0.9: using containers-0.7
1178.17 s
[pandoc-lua-engine] Dependency crypton >=0.30 && <1.1: using crypton-1.0.4
1178.17 s
[pandoc-lua-engine] Dependency data-default >=0.4 && <0.9: using data-default-0.8.0.1
1178.17 s
[pandoc-lua-engine] Dependency doclayout >=0.5 && <0.6: using doclayout-0.5.0.1
1178.17 s
[pandoc-lua-engine] Dependency doctemplates >=0.11 && <0.12: using doctemplates-0.11.0.1
1178.17 s
[pandoc-lua-engine] Dependency exceptions >=0.8 && <0.11: using exceptions-0.10.9
1178.17 s
[pandoc-lua-engine] Dependency hslua >=2.3 && <2.5: using hslua-2.3.1
1178.17 s
[pandoc-lua-engine] Dependency hslua-module-doclayout >=1.2 && <1.3: using
1178.17 s
[pandoc-lua-engine] hslua-module-doclayout-1.2.0.1
1178.17 s
[pandoc-lua-engine] Dependency hslua-module-path >=1.1 && <1.2: using hslua-module-path-1.1.1
1178.17 s
[pandoc-lua-engine] Dependency hslua-module-system >=1.1 && <1.3: using hslua-module-system-1.1.3
1178.17 s
[pandoc-lua-engine] Dependency hslua-module-text >=1.1 && <1.2: using hslua-module-text-1.1.1
1178.17 s
[pandoc-lua-engine] Dependency hslua-module-version >=1.1 && <1.2: using
1178.17 s
[pandoc-lua-engine] hslua-module-version-1.1.1
1178.17 s
[pandoc-lua-engine] Dependency hslua-module-zip >=1.1.3 && <1.2: using hslua-module-zip-1.1.4
1178.17 s
[pandoc-lua-engine] Dependency hslua-repl >=0.1.1 && <0.2: using hslua-repl-0.1.2
1178.17 s
[pandoc-lua-engine] Dependency lpeg >=1.1 && <1.2: using lpeg-1.1.0
1178.17 s
[pandoc-lua-engine] Dependency mtl >=2.2 && <2.4: using mtl-2.3.1
1178.17 s
[pandoc-lua-engine] Dependency pandoc >=3.7 && <3.8: using pandoc-3.7.0.2
1178.17 s
[pandoc-lua-engine] Dependency pandoc-lua-marshal >=0.3 && <0.4: using pandoc-lua-marshal-0.3.1
1178.17 s
[pandoc-lua-engine] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
1178.17 s
[pandoc-lua-engine] Dependency parsec >=3.1 && <3.2: using parsec-3.1.18.0
1178.17 s
[pandoc-lua-engine] Dependency text >=1.1.1 && <2.2: using text-2.1.3
1178.17 s
[pandoc-lua-engine] Dependency base >=4.12 && <5: using base-4.20.2.0
1178.17 s
[pandoc-lua-engine] Dependency bytestring: using bytestring-0.12.2.0
1178.17 s
[pandoc-lua-engine] Dependency data-default: using data-default-0.8.0.1
1178.17 s
[pandoc-lua-engine] Dependency directory: using directory-1.3.8.5
1178.17 s
[pandoc-lua-engine] Dependency exceptions >=0.8 && <0.11: using exceptions-0.10.9
1178.17 s
[pandoc-lua-engine] Dependency filepath: using filepath-1.5.4.0
1178.17 s
[pandoc-lua-engine] Dependency hslua >=2.3 && <2.5: using hslua-2.3.1
1178.17 s
[pandoc-lua-engine] Dependency pandoc: using pandoc-3.7.0.2
1178.17 s
[pandoc-lua-engine] Dependency pandoc-lua-engine: using pandoc-lua-engine-0.4.3
1178.17 s
[pandoc-lua-engine] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
1178.17 s
[pandoc-lua-engine] Dependency tasty: using tasty-1.5.3
1178.17 s
[pandoc-lua-engine] Dependency tasty-golden: using tasty-golden-2.3.5
1178.17 s
[pandoc-lua-engine] Dependency tasty-hunit: using tasty-hunit-0.10.2
1178.17 s
[pandoc-lua-engine] Dependency tasty-lua >=1.1 && <1.2: using tasty-lua-1.1.2
1178.17 s
[pandoc-lua-engine] Dependency text >=1.1.1 && <2.2: using text-2.1.3
1178.17 s
[pandoc-lua-engine] Source component graph:
1178.17 s
[pandoc-lua-engine] component lib
1178.17 s
[pandoc-lua-engine] component test:test-pandoc-lua-engine dependency lib
1178.17 s
[pandoc-lua-engine] Configured component graph:
1178.17 s
[pandoc-lua-engine] component pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.17 s
[pandoc-lua-engine] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
1178.17 s
[pandoc-lua-engine] include base-4.20.2.0-acb8
1178.17 s
[pandoc-lua-engine] include bytestring-0.12.2.0-04d5
1178.17 s
[pandoc-lua-engine] include citeproc-0.9.0.1-DGjZWk97dAqLu5JPkrzNQH
1178.17 s
[pandoc-lua-engine] include containers-0.7-a3f6
1178.17 s
[pandoc-lua-engine] include crypton-1.0.4-5iUP1fuV9nO64XZJT1F5E7
1178.17 s
[pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.17 s
[pandoc-lua-engine] include doclayout-0.5.0.1-2QwCUNCmEm01FCKwH9l5Ui
1178.17 s
[pandoc-lua-engine] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
1178.17 s
[pandoc-lua-engine] include exceptions-0.10.9-0130
1178.17 s
[pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
1178.17 s
[pandoc-lua-engine] include hslua-module-doclayout-1.2.0.1-KXu7zXAhK3h85G7RkBJsuZ
1178.17 s
[pandoc-lua-engine] include hslua-module-path-1.1.1-IAgUxSqc4pZDHGn3yNAkwV
1178.17 s
[pandoc-lua-engine] include hslua-module-system-1.1.3-29Tt1UxbHEv2JSKgrsV82X
1178.17 s
[pandoc-lua-engine] include hslua-module-text-1.1.1-E0D9NifM42sFpWHXJFaqCg
1178.17 s
[pandoc-lua-engine] include hslua-module-version-1.1.1-FyWN9p27qn56ooG8Zt42PN
1178.17 s
[pandoc-lua-engine] include hslua-module-zip-1.1.4-DkUgaAIlv8MDh7tn9CIUZ3
1178.17 s
[pandoc-lua-engine] include hslua-repl-0.1.2-4LecQgluZRM5h2R4OZQvKE
1178.17 s
[pandoc-lua-engine] include lpeg-1.1.0-wPlPBI6E32Bs1DZfZyhVf
1178.17 s
[pandoc-lua-engine] include mtl-2.3.1-0163
1178.17 s
[pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.17 s
[pandoc-lua-engine] include pandoc-lua-marshal-0.3.1-Dj373jh12pPEFkVyt3xyk0
1178.17 s
[pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.17 s
[pandoc-lua-engine] include parsec-3.1.18.0-bc09
1178.17 s
[pandoc-lua-engine] include text-2.1.3-e138
1178.17 s
[pandoc-lua-engine] component pandoc-lua-engine-0.4.3-GFTUE2cThrfAY9HQNTR8hv-test-pandoc-lua-engine
1178.17 s
[pandoc-lua-engine] include base-4.20.2.0-acb8
1178.17 s
[pandoc-lua-engine] include bytestring-0.12.2.0-04d5
1178.17 s
[pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.17 s
[pandoc-lua-engine] include directory-1.3.8.5-e377
1178.17 s
[pandoc-lua-engine] include exceptions-0.10.9-0130
1178.17 s
[pandoc-lua-engine] include filepath-1.5.4.0-c4eb
1178.17 s
[pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
1178.17 s
[pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.17 s
[pandoc-lua-engine] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.17 s
[pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.17 s
[pandoc-lua-engine] include tasty-1.5.3-6VVnV2MAaEEboaUHJkYU4
1178.17 s
[pandoc-lua-engine] include tasty-golden-2.3.5-ImVFdafZxiKCbwMSngPa79
1178.17 s
[pandoc-lua-engine] include tasty-hunit-0.10.2-2JVNHJhSfnl5p1jLlZfoyf
1178.17 s
[pandoc-lua-engine] include tasty-lua-1.1.2-HIl06gBFQBCL7HlR8CA6f8
1178.17 s
[pandoc-lua-engine] include text-2.1.3-e138
1178.17 s
[pandoc-lua-engine] Linked component graph:
1178.17 s
[pandoc-lua-engine] unit pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.17 s
[pandoc-lua-engine] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
1178.17 s
[pandoc-lua-engine] include base-4.20.2.0-acb8
1178.17 s
[pandoc-lua-engine] include bytestring-0.12.2.0-04d5
1178.17 s
[pandoc-lua-engine] include citeproc-0.9.0.1-DGjZWk97dAqLu5JPkrzNQH
1178.17 s
[pandoc-lua-engine] include containers-0.7-a3f6
1178.17 s
[pandoc-lua-engine] include crypton-1.0.4-5iUP1fuV9nO64XZJT1F5E7
1178.17 s
[pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.17 s
[pandoc-lua-engine] include doclayout-0.5.0.1-2QwCUNCmEm01FCKwH9l5Ui
1178.17 s
[pandoc-lua-engine] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
1178.17 s
[pandoc-lua-engine] include exceptions-0.10.9-0130
1178.17 s
[pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
1178.17 s
[pandoc-lua-engine] include hslua-module-doclayout-1.2.0.1-KXu7zXAhK3h85G7RkBJsuZ
1178.17 s
[pandoc-lua-engine] include hslua-module-path-1.1.1-IAgUxSqc4pZDHGn3yNAkwV
1178.17 s
[pandoc-lua-engine] include hslua-module-system-1.1.3-29Tt1UxbHEv2JSKgrsV82X
1178.17 s
[pandoc-lua-engine] include hslua-module-text-1.1.1-E0D9NifM42sFpWHXJFaqCg
1178.17 s
[pandoc-lua-engine] include hslua-module-version-1.1.1-FyWN9p27qn56ooG8Zt42PN
1178.17 s
[pandoc-lua-engine] include hslua-module-zip-1.1.4-DkUgaAIlv8MDh7tn9CIUZ3
1178.17 s
[pandoc-lua-engine] include hslua-repl-0.1.2-4LecQgluZRM5h2R4OZQvKE
1178.17 s
[pandoc-lua-engine] include lpeg-1.1.0-wPlPBI6E32Bs1DZfZyhVf
1178.17 s
[pandoc-lua-engine] include mtl-2.3.1-0163
1178.17 s
[pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.17 s
[pandoc-lua-engine] include pandoc-lua-marshal-0.3.1-Dj373jh12pPEFkVyt3xyk0
1178.17 s
[pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.17 s
[pandoc-lua-engine] include parsec-3.1.18.0-bc09
1178.17 s
[pandoc-lua-engine] include text-2.1.3-e138
1178.17 s
[pandoc-lua-engine] Text.Pandoc.Lua=pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98:Text.Pandoc.Lua
1178.17 s
[pandoc-lua-engine] unit pandoc-lua-engine-0.4.3-GFTUE2cThrfAY9HQNTR8hv-test-pandoc-lua-engine
1178.17 s
[pandoc-lua-engine] include base-4.20.2.0-acb8
1178.17 s
[pandoc-lua-engine] include bytestring-0.12.2.0-04d5
1178.17 s
[pandoc-lua-engine] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.18 s
[pandoc-lua-engine] include directory-1.3.8.5-e377
1178.18 s
[pandoc-lua-engine] include exceptions-0.10.9-0130
1178.18 s
[pandoc-lua-engine] include filepath-1.5.4.0-c4eb
1178.18 s
[pandoc-lua-engine] include hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
1178.18 s
[pandoc-lua-engine] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.18 s
[pandoc-lua-engine] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.18 s
[pandoc-lua-engine] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.18 s
[pandoc-lua-engine] include tasty-1.5.3-6VVnV2MAaEEboaUHJkYU4
1178.18 s
[pandoc-lua-engine] include tasty-golden-2.3.5-ImVFdafZxiKCbwMSngPa79
1178.18 s
[pandoc-lua-engine] include tasty-hunit-0.10.2-2JVNHJhSfnl5p1jLlZfoyf
1178.18 s
[pandoc-lua-engine] include tasty-lua-1.1.2-HIl06gBFQBCL7HlR8CA6f8
1178.18 s
[pandoc-lua-engine] include text-2.1.3-e138
1178.18 s
[pandoc-lua-engine] Ready component graph:
1178.18 s
[pandoc-lua-engine] definite pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.18 s
[pandoc-lua-engine] depends aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
1178.18 s
[pandoc-lua-engine] depends base-4.20.2.0-acb8
1178.18 s
[pandoc-lua-engine] depends bytestring-0.12.2.0-04d5
1178.18 s
[pandoc-lua-engine] depends citeproc-0.9.0.1-DGjZWk97dAqLu5JPkrzNQH
1178.18 s
[pandoc-lua-engine] depends containers-0.7-a3f6
1178.18 s
[pandoc-lua-engine] depends crypton-1.0.4-5iUP1fuV9nO64XZJT1F5E7
1178.18 s
[pandoc-lua-engine] depends data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.18 s
[pandoc-lua-engine] depends doclayout-0.5.0.1-2QwCUNCmEm01FCKwH9l5Ui
1178.18 s
[pandoc-lua-engine] depends doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
1178.18 s
[pandoc-lua-engine] depends exceptions-0.10.9-0130
1178.18 s
[pandoc-lua-engine] depends hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
1178.18 s
[pandoc-lua-engine] depends hslua-module-doclayout-1.2.0.1-KXu7zXAhK3h85G7RkBJsuZ
1178.18 s
[pandoc-lua-engine] depends hslua-module-path-1.1.1-IAgUxSqc4pZDHGn3yNAkwV
1178.18 s
[pandoc-lua-engine] depends hslua-module-system-1.1.3-29Tt1UxbHEv2JSKgrsV82X
1178.18 s
[pandoc-lua-engine] depends hslua-module-text-1.1.1-E0D9NifM42sFpWHXJFaqCg
1178.18 s
[pandoc-lua-engine] depends hslua-module-version-1.1.1-FyWN9p27qn56ooG8Zt42PN
1178.18 s
[pandoc-lua-engine] depends hslua-module-zip-1.1.4-DkUgaAIlv8MDh7tn9CIUZ3
1178.18 s
[pandoc-lua-engine] depends hslua-repl-0.1.2-4LecQgluZRM5h2R4OZQvKE
1178.18 s
[pandoc-lua-engine] depends lpeg-1.1.0-wPlPBI6E32Bs1DZfZyhVf
1178.18 s
[pandoc-lua-engine] depends mtl-2.3.1-0163
1178.18 s
[pandoc-lua-engine] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.18 s
[algebraic-graphs] Warning: 'vertices' is ambiguous. It is defined
1178.18 s
[algebraic-graphs] * at src/Algebra/Graph/Acyclic/AdjacencyMap.hs:157:1
1178.18 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:309:1
1178.18 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.18 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.18 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/AdjacencyMap.hs:309:1
1178.18 s
[algebraic-graphs] 100% ( 44 / 44) in 'Algebra.Graph.Acyclic.AdjacencyMap'
1178.18 s
[algebraic-graphs] Warning: 'foldg' is ambiguous. It is defined
1178.18 s
[algebraic-graphs] * at src/Algebra/Graph.hs:482:1
1178.18 s
[algebraic-graphs] * at src/Algebra/Graph/ToGraph.hs:98:5
1178.18 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.18 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.18 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/ToGraph.hs:98:5
1178.19 s
[algebraic-graphs] 100% ( 8 / 8) in 'Algebra.Graph.ToGraph'
1178.19 s
[algebraic-graphs] Warning: 'Relation' is ambiguous. It is defined
1178.19 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:19
1178.19 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:157:1
1178.19 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.19 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.19 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:157:1
1178.19 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.19 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:243:1
1178.19 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.19 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.19 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.19 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation.hs:243:1
1178.20 s
[algebraic-graphs] Warning: 'AdjacencyMap' is out of scope.
1178.20 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.20 s
[algebraic-graphs] 100% ( 56 / 56) in 'Algebra.Graph.Relation'
1178.21 s
[algebraic-graphs] Warning: 'vertexCount' is ambiguous. It is defined
1178.21 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:423:1
1178.21 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:372:1
1178.21 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.21 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.21 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:372:1
1178.21 s
[algebraic-graphs] Warning: 'edgeCount' is ambiguous. It is defined
1178.21 s
[algebraic-graphs] * at src/Algebra/Graph/Relation.hs:435:1
1178.21 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:384:1
1178.21 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.21 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.21 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:384:1
1178.21 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.21 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Symmetric.hs:188:1
1178.21 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.21 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.21 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.21 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Symmetric.hs:188:1
1178.22 s
[algebraic-graphs] 100% ( 48 / 48) in 'Algebra.Graph.Relation.Symmetric'
1178.23 s
[algebraic-graphs] Warning: 'vertexList' is out of scope.
1178.23 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.24 s
[algebraic-graphs] 100% ( 53 / 53) in 'Algebra.Graph.NonEmpty'
1178.25 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.25 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
1178.25 s
[algebraic-graphs] * in ‘Data.Map.Internal’
1178.25 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.25 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.25 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:160:1
1178.25 s
[pandoc-lua-engine] depends pandoc-lua-marshal-0.3.1-Dj373jh12pPEFkVyt3xyk0
1178.25 s
[pandoc-lua-engine] depends pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.25 s
[pandoc-lua-engine] depends parsec-3.1.18.0-bc09
1178.25 s
[pandoc-lua-engine] depends text-2.1.3-e138
1178.25 s
[pandoc-lua-engine] definite pandoc-lua-engine-0.4.3-GFTUE2cThrfAY9HQNTR8hv-test-pandoc-lua-engine
1178.25 s
[pandoc-lua-engine] depends base-4.20.2.0-acb8
1178.25 s
[pandoc-lua-engine] depends bytestring-0.12.2.0-04d5
1178.25 s
[pandoc-lua-engine] depends data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.25 s
[pandoc-lua-engine] depends directory-1.3.8.5-e377
1178.25 s
[pandoc-lua-engine] depends exceptions-0.10.9-0130
1178.25 s
[pandoc-lua-engine] depends filepath-1.5.4.0-c4eb
1178.25 s
[pandoc-lua-engine] depends hslua-2.3.1-K5JjE6c2N7Y8HzEIAtnAnI
1178.25 s
[pandoc-lua-engine] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.25 s
[pandoc-lua-engine] depends pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.25 s
[pandoc-lua-engine] depends pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.25 s
[pandoc-lua-engine] depends tasty-1.5.3-6VVnV2MAaEEboaUHJkYU4
1178.25 s
[pandoc-lua-engine] depends tasty-golden-2.3.5-ImVFdafZxiKCbwMSngPa79
1178.25 s
[pandoc-lua-engine] depends tasty-hunit-0.10.2-2JVNHJhSfnl5p1jLlZfoyf
1178.25 s
[pandoc-lua-engine] depends tasty-lua-1.1.2-HIl06gBFQBCL7HlR8CA6f8
1178.25 s
[pandoc-lua-engine] depends text-2.1.3-e138
1178.25 s
[pandoc-lua-engine] Using Cabal-3.12.1.0 compiled by ghc-9.10
1178.25 s
[pandoc-lua-engine] Using compiler: ghc-9.10.3
1178.25 s
[pandoc-lua-engine] Using install prefix:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
1178.25 s
[pandoc-lua-engine] Executables installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/bin
1178.25 s
[pandoc-lua-engine] Libraries installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1178.25 s
[pandoc-lua-engine] Dynamic Libraries installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702
1178.25 s
[pandoc-lua-engine] Private executables installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/libexec/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3
1178.25 s
[pandoc-lua-engine] Data files installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/share/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3
1178.25 s
[pandoc-lua-engine] Documentation installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc/share/doc/pandoc-lua-engine-0.4.3
1178.25 s
[pandoc-lua-engine] Configuration files installed in:
1178.25 s
[pandoc-lua-engine] /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/etc
1178.25 s
[pandoc-lua-engine] No alex found
1178.25 s
[pandoc-lua-engine] Using ar found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
1178.25 s
[pandoc-lua-engine] No c2hs found
1178.25 s
[pandoc-lua-engine] No cpphs found
1178.25 s
[pandoc-lua-engine] No doctest found
1178.25 s
[pandoc-lua-engine] Using gcc version 14.3.0 given by user at:
1178.25 s
[pandoc-lua-engine] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
1178.25 s
[pandoc-lua-engine] Using ghc version 9.10.3 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc
1178.25 s
[pandoc-lua-engine] Using ghc-pkg version 9.10.3 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc-pkg-9.10.3
1178.25 s
[pandoc-lua-engine] No ghcjs found
1178.25 s
[pandoc-lua-engine] No ghcjs-pkg found
1178.25 s
[pandoc-lua-engine] No greencard found
1178.25 s
[pandoc-lua-engine] Using haddock version 2.31.1 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/haddock-ghc-9.10.3
1178.25 s
[pandoc-lua-engine] No happy found
1178.25 s
[pandoc-lua-engine] Using haskell-suite found on system at: haskell-suite-dummy-location
1178.25 s
[pandoc-lua-engine] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1178.25 s
[pandoc-lua-engine] No hmake found
1178.25 s
[pandoc-lua-engine] Using hpc version 0.69 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hpc-ghc-9.10.3
1178.25 s
[pandoc-lua-engine] Using hsc2hs version 0.68.10 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
1178.25 s
[pandoc-lua-engine] Using hscolour version 1.25 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/7bd6y873jzkh9wkxhgl2a0za0kfjv1c7-hscolour-1.25/bin/HsColour
1178.25 s
[pandoc-lua-engine] No jhc found
1178.25 s
[pandoc-lua-engine] Using ld found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
1178.25 s
[pandoc-lua-engine] No pkg-config found
1178.25 s
[pandoc-lua-engine] Using runghc version 9.10.3 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/runghc-9.10.3
1178.25 s
[pandoc-lua-engine] Using strip version 2.44 found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
1178.25 s
[pandoc-lua-engine] Using tar found on system at:
1178.25 s
[pandoc-lua-engine] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
1178.25 s
[pandoc-lua-engine] No uhc found
1178.25 s
[algebraic-graphs] Warning: 'hasEdge' is ambiguous. It is defined
1178.25 s
[algebraic-graphs] * at src/Algebra/Graph/AdjacencyMap.hs:403:1
1178.25 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
1178.25 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.25 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.25 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled/AdjacencyMap.hs:379:1
1178.26 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled.AdjacencyMap'
1178.26 s
[algebraic-graphs] Warning: 'Context' is ambiguous. It is defined
1178.26 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:20
1178.26 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:675:1
1178.26 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.26 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.26 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:675:1
1178.26 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.26 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:191:1
1178.26 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.26 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.26 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.26 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:191:1
1178.27 s
[algebraic-graphs] Warning: 'Focus' is ambiguous. It is defined
1178.27 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:18
1178.27 s
[algebraic-graphs] * at src/Algebra/Graph/Labelled.hs:642:1
1178.27 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.27 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.27 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Labelled.hs:642:1
1178.27 s
[algebraic-graphs] 100% ( 49 / 49) in 'Algebra.Graph.Labelled'
1178.27 s
[algebraic-graphs] 100% ( 6 / 6) in 'Algebra.Graph.Labelled.Example.Network'
1178.28 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Labelled.Example.Automaton'
1178.28 s
[algebraic-graphs] Warning: 'Doc' is ambiguous. It is defined
1178.28 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:17
1178.28 s
[algebraic-graphs] * at src/Algebra/Graph/Export.hs:57:1
1178.28 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.28 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.28 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export.hs:57:1
1178.28 s
[algebraic-graphs] 100% ( 14 / 14) in 'Algebra.Graph.Export'
1178.28 s
[algebraic-graphs] Warning: 'Style' is ambiguous. It is defined
1178.28 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:18
1178.28 s
[algebraic-graphs] * at src/Algebra/Graph/Export/Dot.hs:49:1
1178.28 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.28 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.28 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Export/Dot.hs:49:1
1178.28 s
[algebraic-graphs] Warning: 'Graph' is out of scope.
1178.28 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.28 s
[algebraic-graphs] 100% ( 11 / 11) in 'Algebra.Graph.Export.Dot'
1178.30 s
[algebraic-graphs] Warning: 'empty' is ambiguous. It is defined
1178.30 s
[algebraic-graphs] * at src/Algebra/Graph/Undirected.hs:253:1
1178.30 s
[algebraic-graphs] * in ‘Data.Set.Internal’
1178.30 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.30 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.30 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Undirected.hs:253:1
1178.30 s
[algebraic-graphs] 100% ( 50 / 50) in 'Algebra.Graph.Undirected'
1178.35 s
[pandoc-server] Dependency aeson >=2.0 && <2.3: using aeson-2.2.3.0
1178.35 s
[pandoc-server] Dependency base >=4.12 && <5: using base-4.20.2.0
1178.35 s
[pandoc-server] Dependency base64-bytestring >=0.1 && <1.3: using base64-bytestring-1.2.1.0
1178.35 s
[pandoc-server] Dependency bytestring >=0.9 && <0.13: using bytestring-0.12.2.0
1178.35 s
[pandoc-server] Dependency containers >=0.6.0.1 && <0.9: using containers-0.7
1178.35 s
[pandoc-server] Dependency data-default >=0.4 && <0.9: using data-default-0.8.0.1
1178.35 s
[pandoc-server] Dependency doctemplates >=0.11 && <0.12: using doctemplates-0.11.0.1
1178.35 s
[pandoc-server] Dependency pandoc >=3.5 && <3.8: using pandoc-3.7.0.2
1178.35 s
[pandoc-server] Dependency pandoc-types >=1.22 && <1.24: using pandoc-types-1.23.1
1178.35 s
[pandoc-server] Dependency servant-server >=0.19 && <0.21: using servant-server-0.20.3.0
1178.35 s
[pandoc-server] Dependency skylighting >=0.13 && <0.15: using skylighting-0.14.7
1178.35 s
[pandoc-server] Dependency text >=1.1.1.0 && <2.2: using text-2.1.3
1178.35 s
[pandoc-server] Dependency unicode-collation >=0.1.1 && <0.2: using unicode-collation-0.1.3.6
1178.35 s
[pandoc-server] Dependency wai >=3.2 && <3.3: using wai-3.2.4
1178.35 s
[pandoc-server] Dependency wai-cors >=0.2.7 && <0.3: using wai-cors-0.2.7
1178.35 s
[pandoc-server] Source component graph: component lib
1178.35 s
[pandoc-server] Configured component graph:
1178.35 s
[pandoc-server] component pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1178.35 s
[pandoc-server] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
1178.35 s
[pandoc-server] include base-4.20.2.0-acb8
1178.35 s
[pandoc-server] include base64-bytestring-1.2.1.0-E5ZfzePNySX5CsTeWj14Td
1178.35 s
[pandoc-server] include bytestring-0.12.2.0-04d5
1178.35 s
[pandoc-server] include containers-0.7-a3f6
1178.35 s
[pandoc-server] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.35 s
[pandoc-server] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
1178.35 s
[pandoc-server] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.35 s
[pandoc-server] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.35 s
[pandoc-server] include servant-server-0.20.3.0-IdiJIYs0tbwJrOGDFEDPbL
1178.35 s
[pandoc-server] include skylighting-0.14.7-6PsYF2CGn49DOgxUNP80FT
1178.35 s
[pandoc-server] include text-2.1.3-e138
1178.35 s
[pandoc-server] include unicode-collation-0.1.3.6-4OUa81BJpQbALGYESd1KVs
1178.35 s
[pandoc-server] include wai-3.2.4-Do1EstC38Y52Aaiy4h448u
1178.35 s
[pandoc-server] include wai-cors-0.2.7-EGkQ4Ro3X0X3pFUFHIHBNy
1178.35 s
[pandoc-server] Linked component graph:
1178.35 s
[pandoc-server] unit pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1178.35 s
[pandoc-server] include aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
1178.35 s
[pandoc-server] include base-4.20.2.0-acb8
1178.35 s
[pandoc-server] include base64-bytestring-1.2.1.0-E5ZfzePNySX5CsTeWj14Td
1178.35 s
[pandoc-server] include bytestring-0.12.2.0-04d5
1178.35 s
[pandoc-server] include containers-0.7-a3f6
1178.35 s
[pandoc-server] include data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.35 s
[pandoc-server] include doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
1178.35 s
[pandoc-server] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.35 s
[pandoc-server] include pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.35 s
[pandoc-server] include servant-server-0.20.3.0-IdiJIYs0tbwJrOGDFEDPbL
1178.35 s
[pandoc-server] include skylighting-0.14.7-6PsYF2CGn49DOgxUNP80FT
1178.35 s
[pandoc-server] include text-2.1.3-e138
1178.35 s
[pandoc-server] include unicode-collation-0.1.3.6-4OUa81BJpQbALGYESd1KVs
1178.35 s
[pandoc-server] include wai-3.2.4-Do1EstC38Y52Aaiy4h448u
1178.35 s
[pandoc-server] include wai-cors-0.2.7-EGkQ4Ro3X0X3pFUFHIHBNy
1178.35 s
[pandoc-server] Text.Pandoc.Server=pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq:Text.Pandoc.Server
1178.35 s
[pandoc-server] Ready component graph:
1178.35 s
[pandoc-server] definite pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1178.35 s
[pandoc-server] depends aeson-2.2.3.0-ESmD3GqN1sq7uUIfk5Xldf
1178.35 s
[pandoc-server] depends base-4.20.2.0-acb8
1178.35 s
[pandoc-server] depends base64-bytestring-1.2.1.0-E5ZfzePNySX5CsTeWj14Td
1178.35 s
[pandoc-server] depends bytestring-0.12.2.0-04d5
1178.35 s
[pandoc-server] depends containers-0.7-a3f6
1178.35 s
[pandoc-server] depends data-default-0.8.0.1-D96698ID2QCBmiljjCEkHD
1178.35 s
[pandoc-server] depends doctemplates-0.11.0.1-2nIsdmsSzGZGCmInluLEdq
1178.35 s
[pandoc-server] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1178.35 s
[pandoc-server] depends pandoc-types-1.23.1-6b23qRFL47vHhjXYPEkRt8
1178.35 s
[pandoc-server] depends servant-server-0.20.3.0-IdiJIYs0tbwJrOGDFEDPbL
1178.35 s
[pandoc-server] depends skylighting-0.14.7-6PsYF2CGn49DOgxUNP80FT
1178.35 s
[pandoc-server] depends text-2.1.3-e138
1178.35 s
[pandoc-server] depends unicode-collation-0.1.3.6-4OUa81BJpQbALGYESd1KVs
1178.35 s
[pandoc-server] depends wai-3.2.4-Do1EstC38Y52Aaiy4h448u
1178.35 s
[pandoc-server] depends wai-cors-0.2.7-EGkQ4Ro3X0X3pFUFHIHBNy
1178.35 s
[pandoc-server] Using Cabal-3.12.1.0 compiled by ghc-9.10
1178.35 s
[pandoc-server] Using compiler: ghc-9.10.3
1178.35 s
[pandoc-server] Using install prefix:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
1178.35 s
[pandoc-server] Executables installed in:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/bin
1178.35 s
[pandoc-server] Libraries installed in:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1178.35 s
[pandoc-server] Dynamic Libraries installed in:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702
1178.35 s
[pandoc-server] Private executables installed in:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/libexec/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11
1178.35 s
[pandoc-server] Data files installed in:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/share/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11
1178.35 s
[pandoc-server] Documentation installed in:
1178.35 s
[pandoc-server] /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc/share/doc/pandoc-server-0.1.0.11
1178.35 s
[pandoc-server] Configuration files installed in:
1178.35 s
[pandoc-server] /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/etc
1178.35 s
[pandoc-server] No alex found
1178.35 s
[pandoc-server] Using ar found on system at:
1178.35 s
[pandoc-server] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
1178.35 s
[pandoc-server] No c2hs found
1178.35 s
[pandoc-server] No cpphs found
1178.35 s
[pandoc-server] No doctest found
1178.35 s
[pandoc-server] Using gcc version 14.3.0 given by user at:
1178.35 s
[pandoc-server] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
1178.35 s
[pandoc-server] Using ghc version 9.10.3 found on system at:
1178.35 s
[pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc
1178.35 s
[pandoc-server] Using ghc-pkg version 9.10.3 found on system at:
1178.35 s
[pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc-pkg-9.10.3
1178.35 s
[pandoc-server] No ghcjs found
1178.36 s
[pandoc-server] No ghcjs-pkg found
1178.36 s
[pandoc-server] No greencard found
1178.36 s
[pandoc-server] Using haddock version 2.31.1 found on system at:
1178.36 s
[pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/haddock-ghc-9.10.3
1178.36 s
[pandoc-server] No happy found
1178.36 s
[pandoc-server] Using haskell-suite found on system at: haskell-suite-dummy-location
1178.36 s
[pandoc-server] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1178.36 s
[pandoc-server] No hmake found
1178.36 s
[pandoc-server] Using hpc version 0.69 found on system at:
1178.36 s
[pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hpc-ghc-9.10.3
1178.36 s
[pandoc-server] Using hsc2hs version 0.68.10 found on system at:
1178.36 s
[pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
1178.36 s
[pandoc-server] Using hscolour version 1.25 found on system at:
1178.36 s
[pandoc-server] /nix/store/7bd6y873jzkh9wkxhgl2a0za0kfjv1c7-hscolour-1.25/bin/HsColour
1178.36 s
[pandoc-server] No jhc found
1178.36 s
[pandoc-server] Using ld found on system at:
1178.36 s
[pandoc-server] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
1178.36 s
[pandoc-server] No pkg-config found
1178.36 s
[pandoc-server] Using runghc version 9.10.3 found on system at:
1178.36 s
[pandoc-server] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/runghc-9.10.3
1178.36 s
[pandoc-server] Using strip version 2.44 found on system at:
1178.36 s
[pandoc-server] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
1178.36 s
[pandoc-server] Using tar found on system at:
1178.36 s
[pandoc-server] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
1178.36 s
[pandoc-server] No uhc found
1178.39 s
[algebraic-graphs] 100% ( 27 / 27) in 'Algebra.Graph.Class'
1178.39 s
[algebraic-graphs] Warning: 'TransitiveRelation' is ambiguous. It is defined
1178.39 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:32
1178.39 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Transitive.hs:39:1
1178.39 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.39 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.39 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Transitive.hs:39:1
1178.39 s
[algebraic-graphs] Warning: 'Transitive' is out of scope.
1178.39 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.39 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Transitive'
1178.40 s
[algebraic-graphs] Warning: 'ReflexiveRelation' is ambiguous. It is defined
1178.40 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:31
1178.40 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Reflexive.hs:34:1
1178.40 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.40 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.40 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Reflexive.hs:34:1
1178.40 s
[algebraic-graphs] Warning: 'Reflexive' is out of scope.
1178.40 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.40 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Reflexive'
1178.40 s
[algebraic-graphs] Warning: 'PreorderRelation' is ambiguous. It is defined
1178.40 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:30
1178.40 s
[algebraic-graphs] * at src/Algebra/Graph/Relation/Preorder.hs:44:1
1178.40 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.40 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.40 s
[algebraic-graphs] Defaulting to the one defined at src/Algebra/Graph/Relation/Preorder.hs:44:1
1178.40 s
[algebraic-graphs] Warning: 'Preorder' is out of scope.
1178.40 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.40 s
[algebraic-graphs] 100% ( 5 / 5) in 'Algebra.Graph.Relation.Preorder'
1178.40 s
[algebraic-graphs] 0% ( 0 / 8) in 'Algebra.Graph.Example.Todo'
1178.40 s
[algebraic-graphs] Missing documentation for:
1178.40 s
[algebraic-graphs] Module header
1178.40 s
[algebraic-graphs] Todo (src/Algebra/Graph/Example/Todo.hs:13)
1178.40 s
[algebraic-graphs] todo (src/Algebra/Graph/Example/Todo.hs:42)
1178.40 s
[algebraic-graphs] low (src/Algebra/Graph/Example/Todo.hs:23)
1178.40 s
[algebraic-graphs] high (src/Algebra/Graph/Example/Todo.hs:27)
1178.40 s
[algebraic-graphs] ~*~ (src/Algebra/Graph/Example/Todo.hs:35)
1178.40 s
[algebraic-graphs] >*< (src/Algebra/Graph/Example/Todo.hs:39)
1178.40 s
[algebraic-graphs] priority (src/Algebra/Graph/Example/Todo.hs:31)
1178.40 s
[algebraic-graphs] Warning: 'GraphKL' is ambiguous. It is defined
1178.40 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:18
1178.40 s
[algebraic-graphs] * at src/Data/Graph/Typed.hs:40:1
1178.40 s
[algebraic-graphs] You may be able to disambiguate the identifier by qualifying it or
1178.40 s
[algebraic-graphs] by specifying the type/value namespace explicitly.
1178.40 s
[algebraic-graphs] Defaulting to the one defined at src/Data/Graph/Typed.hs:40:1
1178.40 s
[algebraic-graphs] Warning: 'array' is out of scope.
1178.40 s
[algebraic-graphs] If you qualify the identifier, haddock can try to link it anyway.
1178.40 s
[algebraic-graphs] 90% ( 10 / 11) in 'Data.Graph.Typed'
1178.40 s
[algebraic-graphs] Missing documentation for:
1178.40 s
[algebraic-graphs] scc (src/Data/Graph/Typed.hs:192)
1178.50 s
[pandoc-lua-engine] Phase: buildPhase
1178.62 s
[pandoc-server] Phase: buildPhase
1178.62 s
[pandoc-lua-engine] Preprocessing library for pandoc-lua-engine-0.4.3...
1178.62 s
[pandoc-lua-engine] Building library for pandoc-lua-engine-0.4.3...
1178.66 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyMap: could not find link destinations for:
1178.66 s
[algebraic-graphs] - Algebra.Graph.AdjacencyMap.Rep_AdjacencyMap
1178.67 s
[algebraic-graphs] Warning: Algebra.Graph.AdjacencyIntMap: could not find link destinations for:
1178.67 s
[algebraic-graphs] - Algebra.Graph.AdjacencyIntMap.Rep_AdjacencyIntMap
1178.69 s
[algebraic-graphs] Warning: Algebra.Graph: could not find link destinations for:
1178.69 s
[algebraic-graphs] - Algebra.Graph.Rep_Graph
1178.70 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap: could not find link destinations for:
1178.70 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_List
1178.70 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Rep_AdjacencyMap
1178.71 s
[algebraic-graphs] Warning: Algebra.Graph.Bipartite.AdjacencyMap.Algorithm: could not find link destinations for:
1178.71 s
[algebraic-graphs] - Algebra.Graph.Bipartite.AdjacencyMap.Algorithm.Rep_Matching
1178.72 s
[algebraic-graphs] Warning: Algebra.Graph.NonEmpty.AdjacencyMap: could not find link destinations for:
1178.72 s
[algebraic-graphs] - Algebra.Graph.NonEmpty.AdjacencyMap.Rep_AdjacencyMap
1178.73 s
[pandoc-server] Preprocessing library for pandoc-server-0.1.0.11...
1178.73 s
[pandoc-server] Building library for pandoc-server-0.1.0.11...
1178.77 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled.AdjacencyMap: could not find link destinations for:
1178.77 s
[algebraic-graphs] - Algebra.Graph.Labelled.AdjacencyMap.Rep_AdjacencyMap
1178.78 s
[algebraic-graphs] Warning: Algebra.Graph.Labelled: could not find link destinations for:
1178.78 s
[algebraic-graphs] - Algebra.Graph.Labelled.Rep_Graph
1178.79 s
[algebraic-graphs] Warning: Algebra.Graph.Undirected: could not find link destinations for:
1178.79 s
[algebraic-graphs] - Algebra.Graph.Undirected.Rep_Graph
1178.84 s
[pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
1178.93 s
[pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
1179.75 s
[pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
1179.75 s
[pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
1179.87 s
[pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
1179.87 s
[pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
1179.87 s
[pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
1179.87 s
[pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
1179.87 s
[pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
1179.87 s
[pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
1179.88 s
[pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
1179.90 s
[pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
1179.97 s
[pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
1179.99 s
[pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
1180.83 s
[pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
1180.83 s
[pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
1180.83 s
[pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
1180.93 s
[pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
1180.93 s
[pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
1180.93 s
[pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
1181.10 s
[haskell-language-server] Preprocessing library 'hls-cabal-fmt-plugin' for haskell-language-server-2.12.0.0...
1181.10 s
[haskell-language-server] Building library 'hls-cabal-fmt-plugin' for haskell-language-server-2.12.0.0...
1181.23 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalFmt ( plugins/hls-cabal-fmt-plugin/src/Ide/Plugin/CabalFmt.hs, dist/build/hls-cabal-fmt-plugin/Ide/Plugin/CabalFmt.o, dist/build/hls-cabal-fmt-plugin/Ide/Plugin/CabalFmt.dyn_o )
1181.58 s
[pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
1182.31 s
[pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
1182.31 s
[pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
1182.31 s
[pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
1182.31 s
[pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
1182.31 s
[pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
1182.31 s
[pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
1182.31 s
[pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
1182.33 s
[pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
1182.33 s
[pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
1182.33 s
[pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
1182.33 s
[pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
1183.08 s
[pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
1183.22 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.CabalFmt ( plugins/hls-cabal-fmt-plugin/src/Ide/Plugin/CabalFmt.hs, dist/build/hls-cabal-fmt-plugin/Ide/Plugin/CabalFmt.p_o )
1183.67 s
[pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
1183.67 s
[pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
1183.67 s
[pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
1183.93 s
[pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
1183.99 s
[pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
1184.07 s
[pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
1184.34 s
[pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
1184.41 s
[pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
1184.88 s
[pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
1185.43 s
[algebraic-graphs] Documentation created: dist/doc/html/algebraic-graphs/,
1185.45 s
[algebraic-graphs] dist/doc/html/algebraic-graphs/algebraic-graphs.txt
1185.50 s
[algebraic-graphs] Preprocessing test suite 'main' for algebraic-graphs-0.7...
1185.51 s
[algebraic-graphs] Phase: installPhase
1185.59 s
[algebraic-graphs] Installing library in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/algebraic-graphs-0.7-Dzdl7vkJHJu5iSqEy4BAAW
1185.61 s
[pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
1185.61 s
[pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
1185.61 s
[pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
1185.61 s
[pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
1185.65 s
[pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
1185.65 s
[pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
1185.65 s
[pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
1185.65 s
[pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
1185.65 s
[pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
1185.99 s
[pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
1186.26 s
[pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
1186.34 s
[pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
1186.59 s
[algebraic-graphs] Phase: fixupPhase
1186.62 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7
1186.62 s
[algebraic-graphs] shrinking /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHSalgebraic-graphs-0.7-Dzdl7vkJHJu5iSqEy4BAAW-ghc9.10.3.so
1186.76 s
[algebraic-graphs] checking for references to /build/ in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7...
1186.80 s
[algebraic-graphs] patching script interpreter paths in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7
1186.81 s
[algebraic-graphs] stripping (with command strip and flags -S -p) in /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/lib
1187.05 s
[pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
1187.05 s
[pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
1187.05 s
[pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
1187.26 s
[algebraic-graphs] shrinking RPATHs of ELF executables and libraries in /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
1187.29 s
[algebraic-graphs] checking for references to /build/ in /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc...
1187.33 s
[algebraic-graphs] patching script interpreter paths in /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
1187.34 s
[pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
1187.34 s
[pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
1187.34 s
[pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
1187.58 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7 /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
1188.19 s
[post-build-hook] Pushing 2 paths (70 are already present) using zstd to cache sellout ⏳
1188.19 s
[post-build-hook]
1188.55 s
[post-build-hook] Pushing /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc (10.41 MiB)
1188.61 s
[post-build-hook] Pushing /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7 (25.15 MiB)
1189.83 s
[post-build-hook]
1189.83 s
[post-build-hook] All done.
1189.85 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7 /nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc
1189.89 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1189.91 s
[post-build-hook] copying 2 paths...
1189.91 s
[post-build-hook] copying path '/nix/store/dxizyanc3x23qyq6hnrq1hw4k88rv25h-algebraic-graphs-0.7-doc' to 'https://cache.nix-ci.com'...
1191.32 s
[post-build-hook] copying path '/nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7' to 'https://cache.nix-ci.com'...
1198.34 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1198.54 s
[post-build-hook] copying 1 paths...
1198.54 s
[post-build-hook] copying path '/nix/store/3dzyv0l64zb1w9qnlwdm3m9yb2dpp3pw-algebraic-graphs-0.7.drv' to 'https://cache.nix-ci.com'...
1198.70 s
Progress: 47 of 58 built (3 building), 771 of 771 downloaded from cache
1198.78 s
Building ghc-9.10.3-with-packages
1198.78 s
[haskell-language-server] Preprocessing library 'hls-module-name-plugin' for haskell-language-server-2.12.0.0...
1198.78 s
[haskell-language-server] Building library 'hls-module-name-plugin' for haskell-language-server-2.12.0.0...
1198.78 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.ModuleName ( plugins/hls-module-name-plugin/src/Ide/Plugin/ModuleName.hs, dist/build/hls-module-name-plugin/Ide/Plugin/ModuleName.o, dist/build/hls-module-name-plugin/Ide/Plugin/ModuleName.dyn_o )
1198.78 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.ModuleName ( plugins/hls-module-name-plugin/src/Ide/Plugin/ModuleName.hs, dist/build/hls-module-name-plugin/Ide/Plugin/ModuleName.p_o )
1198.78 s
[pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
1198.78 s
[pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
1198.78 s
[pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
1198.78 s
[pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
1198.78 s
[pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
1198.78 s
[pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
1198.78 s
[pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
1198.78 s
[pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
1198.78 s
[pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
1198.78 s
[pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
1198.78 s
[pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
1198.78 s
[pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
1198.78 s
[pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
1198.78 s
[pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
1198.78 s
[pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
1198.78 s
[pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
1198.78 s
[pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
1198.78 s
[pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
1198.78 s
[pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
1198.78 s
[pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
1198.78 s
[pandoc-server] Phase: checkPhase
1198.78 s
[pandoc-server] Package has no test suites.
1198.78 s
[pandoc-server] Phase: haddockPhase
1198.78 s
[pandoc-server] Preprocessing library for pandoc-server-0.1.0.11...
1198.78 s
[pandoc-server] Running Haddock on library for pandoc-server-0.1.0.11...
1198.78 s
[pandoc-server] Warning: The documentation for the following packages are not installed. No
1198.78 s
[pandoc-server] links will be generated to these packages: attoparsec-0.14.4,
1198.78 s
[pandoc-server] attoparsec-0.14.4, libyaml-clib-0.2.5, pandoc-3.7.0.2, pandoc-3.7.0.2,
1198.78 s
[pandoc-server] vector-0.13.2.0
1198.78 s
[pandoc-server] [1 of 1] Compiling Text.Pandoc.Server
1198.78 s
[pandoc-server] Haddock coverage:
1198.78 s
[pandoc-server] 0% ( 0 / 7) in 'Text.Pandoc.Server'
1198.78 s
[pandoc-server] Missing documentation for:
1198.78 s
[pandoc-server] Module header
1198.78 s
[pandoc-server] app (src/Text/Pandoc/Server.hs:200)
1198.78 s
[pandoc-server] API (src/Text/Pandoc/Server.hs:186)
1198.78 s
[pandoc-server] ServerOpts (src/Text/Pandoc/Server.hs:55)
1198.78 s
[pandoc-server] Params (src/Text/Pandoc/Server.hs:125)
1198.78 s
[pandoc-server] Blob (src/Text/Pandoc/Server.hs:112)
1198.78 s
[pandoc-server] parseServerOptsFromArgs (src/Text/Pandoc/Server.hs:99)
1198.78 s
[pandoc-server] Warning: Text.Pandoc.Server: could not find link destinations for:
1198.78 s
[pandoc-server] - Text.Pandoc.App.Opt.Opt
1198.78 s
[pandoc-server] - Text.Pandoc.Server.Output
1198.86 s
[ghc-9.10.3-with-packages] /nix/store/5cywz807jgyxilkmix7rwpy7501a4jr4-doctest-0.24.2/nix-support:
1198.86 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.87 s
[ghc-9.10.3-with-packages] /nix/store/q9bmv83s4921kh6z965q0v2glgm742gx-ghc-compat-plugin-0.1.0.1/nix-support:
1198.87 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.87 s
[ghc-9.10.3-with-packages] /nix/store/6s0czylb98l3w1dfdbw1lz6d0xz5dik2-hedgehog-1.5/nix-support:
1198.87 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.88 s
[ghc-9.10.3-with-packages] /nix/store/pfbygc0j19l5ynwc43cywq6g43s3dbsi-Cabal-3.12.1.0/nix-support:
1198.88 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.91 s
[pandoc-lua-engine] Preprocessing test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
1198.91 s
[pandoc-lua-engine] Building test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
1198.92 s
[ghc-9.10.3-with-packages] /nix/store/09796ziywv1s52214c383r9k7v4i34ww-cabal-doctest-1.0.12/nix-support:
1198.92 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.94 s
[ghc-9.10.3-with-packages] /nix/store/n9czvz6jy51zq5sbza2vagdx5ar7nq9f-temporary-1.3/nix-support:
1198.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.94 s
[ghc-9.10.3-with-packages] /nix/store/n9czvz6jy51zq5sbza2vagdx5ar7nq9f-temporary-1.3/nix-support:
1198.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.94 s
[ghc-9.10.3-with-packages] /nix/store/yv1515y35b5d87px2xnywdrzl57bzj36-ansi-terminal-1.1.3/nix-support:
1198.94 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.95 s
[ghc-9.10.3-with-packages] /nix/store/yv1515y35b5d87px2xnywdrzl57bzj36-ansi-terminal-1.1.3/nix-support:
1198.95 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.95 s
[ghc-9.10.3-with-packages] /nix/store/sjm0zblwxqfdk46ck7qrjg10f19k2b3q-async-2.2.5/nix-support:
1198.95 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.95 s
[ghc-9.10.3-with-packages] /nix/store/sjm0zblwxqfdk46ck7qrjg10f19k2b3q-async-2.2.5/nix-support:
1198.95 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.95 s
[ghc-9.10.3-with-packages] /nix/store/mrh8y1rc5sfl36wh0q014barx02dk48a-barbies-2.1.1.0/nix-support:
1198.95 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.96 s
[ghc-9.10.3-with-packages] /nix/store/mrh8y1rc5sfl36wh0q014barx02dk48a-barbies-2.1.1.0/nix-support:
1198.96 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.96 s
[ghc-9.10.3-with-packages] /nix/store/nwqnn7mc9y6m6qhlf4b04dm8b694ihir-concurrent-output-1.10.21/nix-support:
1198.96 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.97 s
[ghc-9.10.3-with-packages] /nix/store/nwqnn7mc9y6m6qhlf4b04dm8b694ihir-concurrent-output-1.10.21/nix-support:
1198.97 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.97 s
[ghc-9.10.3-with-packages] /nix/store/c0kvhsdh044cby9s385kdp6fzrwnx0b2-lifted-async-0.10.2.7/nix-support:
1198.97 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.98 s
[ghc-9.10.3-with-packages] /nix/store/c0kvhsdh044cby9s385kdp6fzrwnx0b2-lifted-async-0.10.2.7/nix-support:
1198.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.98 s
[ghc-9.10.3-with-packages] /nix/store/88zzrq6z3q2i7raa4bqrfzp2xm1spfzs-mmorph-1.2.1/nix-support:
1198.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.98 s
[ghc-9.10.3-with-packages] /nix/store/88zzrq6z3q2i7raa4bqrfzp2xm1spfzs-mmorph-1.2.1/nix-support:
1198.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.98 s
[ghc-9.10.3-with-packages] /nix/store/g2qvb2hxv61dkd7kcwl314bfkn49w353-monad-control-1.0.3.1/nix-support:
1198.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.98 s
[ghc-9.10.3-with-packages] /nix/store/g2qvb2hxv61dkd7kcwl314bfkn49w353-monad-control-1.0.3.1/nix-support:
1198.98 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.99 s
[ghc-9.10.3-with-packages] /nix/store/6cndgccwks6pzgpp40sd3yqj1gwrwcpc-pretty-show-1.10/nix-support:
1198.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.99 s
[ghc-9.10.3-with-packages] /nix/store/6cndgccwks6pzgpp40sd3yqj1gwrwcpc-pretty-show-1.10/nix-support:
1198.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1198.99 s
[ghc-9.10.3-with-packages] /nix/store/cbkpv0a2jd34ji7dmwlcs5079p09clw9-primitive-0.9.1.0/nix-support:
1198.99 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.00 s
[ghc-9.10.3-with-packages] /nix/store/cbkpv0a2jd34ji7dmwlcs5079p09clw9-primitive-0.9.1.0/nix-support:
1199.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.00 s
[ghc-9.10.3-with-packages] /nix/store/8l34z8pqyxz1a375p2mjy2x9pl7qwv9j-random-1.2.1.3/nix-support:
1199.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.00 s
[ghc-9.10.3-with-packages] /nix/store/8l34z8pqyxz1a375p2mjy2x9pl7qwv9j-random-1.2.1.3/nix-support:
1199.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.00 s
[ghc-9.10.3-with-packages] /nix/store/h9ngfa8xz6vn23w9hbg6hfcciqp1618a-resourcet-1.3.0/nix-support:
1199.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.00 s
[ghc-9.10.3-with-packages] /nix/store/h9ngfa8xz6vn23w9hbg6hfcciqp1618a-resourcet-1.3.0/nix-support:
1199.00 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.01 s
[ghc-9.10.3-with-packages] /nix/store/7vn9fv3b7f0ajmhrb61h3cnsym1y3n3f-safe-exceptions-0.1.7.4/nix-support:
1199.01 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.01 s
[ghc-9.10.3-with-packages] /nix/store/7vn9fv3b7f0ajmhrb61h3cnsym1y3n3f-safe-exceptions-0.1.7.4/nix-support:
1199.01 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.01 s
[pandoc-lua-engine] [1 of 5] Compiling Tests.Lua
1199.01 s
[ghc-9.10.3-with-packages] /nix/store/na9f6zzz8s1k6g1id7dcffl0gi7r7cjj-transformers-base-0.4.6/nix-support:
1199.01 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.01 s
[ghc-9.10.3-with-packages] /nix/store/na9f6zzz8s1k6g1id7dcffl0gi7r7cjj-transformers-base-0.4.6/nix-support:
1199.01 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.01 s
[ghc-9.10.3-with-packages] /nix/store/25k1v3pwwy7x5gym9q9dhviv0csxvvmn-wl-pprint-annotated-0.1.0.1/nix-support:
1199.01 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.02 s
[ghc-9.10.3-with-packages] /nix/store/25k1v3pwwy7x5gym9q9dhviv0csxvvmn-wl-pprint-annotated-0.1.0.1/nix-support:
1199.02 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.02 s
[ghc-9.10.3-with-packages] /nix/store/039jxih833h0ava16hkazxrcsv703sfj-Cabal-syntax-3.12.1.0/nix-support:
1199.02 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.04 s
[ghc-9.10.3-with-packages] /nix/store/039jxih833h0ava16hkazxrcsv703sfj-Cabal-syntax-3.12.1.0/nix-support:
1199.04 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.05 s
[ghc-9.10.3-with-packages] /nix/store/8gj8b8i9s12rdfbqmdph9s03wnpqh44d-ansi-terminal-types-1.1.3/nix-support:
1199.05 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.05 s
[ghc-9.10.3-with-packages] /nix/store/8gj8b8i9s12rdfbqmdph9s03wnpqh44d-ansi-terminal-types-1.1.3/nix-support:
1199.05 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.06 s
[ghc-9.10.3-with-packages] /nix/store/m2gbv27qwdgpizs36ysfzkc543z73msp-hashable-1.5.0.0/nix-support:
1199.06 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.06 s
[ghc-9.10.3-with-packages] /nix/store/m2gbv27qwdgpizs36ysfzkc543z73msp-hashable-1.5.0.0/nix-support:
1199.06 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.06 s
[ghc-9.10.3-with-packages] /nix/store/k735nrbnq1v6hqj9l4aqf84zvqnc17fb-distributive-0.6.2.1/nix-support:
1199.06 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.06 s
[ghc-9.10.3-with-packages] /nix/store/k735nrbnq1v6hqj9l4aqf84zvqnc17fb-distributive-0.6.2.1/nix-support:
1199.06 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.07 s
[ghc-9.10.3-with-packages] /nix/store/qlaran7276vq5yfddk8gjyb0bbl7463d-constraints-0.14.2/nix-support:
1199.07 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.07 s
[ghc-9.10.3-with-packages] /nix/store/qlaran7276vq5yfddk8gjyb0bbl7463d-constraints-0.14.2/nix-support:
1199.07 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.07 s
[ghc-9.10.3-with-packages] /nix/store/anslqcpw3nb5ij1vvfxxqb4m5q9x9jkp-lifted-base-0.2.3.12/nix-support:
1199.07 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.08 s
[ghc-9.10.3-with-packages] /nix/store/anslqcpw3nb5ij1vvfxxqb4m5q9x9jkp-lifted-base-0.2.3.12/nix-support:
1199.08 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.08 s
[ghc-9.10.3-with-packages] /nix/store/yf7r6nnmfc4mwj08iavfcxpp70mj6mkq-transformers-compat-0.7.2/nix-support:
1199.08 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.08 s
[ghc-9.10.3-with-packages] /nix/store/yf7r6nnmfc4mwj08iavfcxpp70mj6mkq-transformers-compat-0.7.2/nix-support:
1199.08 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.09 s
[ghc-9.10.3-with-packages] /nix/store/v6jdycf0p0gypqgg67hc7k45i6p25cwj-splitmix-0.1.3.1/nix-support:
1199.09 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.09 s
[ghc-9.10.3-with-packages] /nix/store/v6jdycf0p0gypqgg67hc7k45i6p25cwj-splitmix-0.1.3.1/nix-support:
1199.09 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.09 s
[ghc-9.10.3-with-packages] /nix/store/3d0qs4aijgblg7mvsxzr2b168hmncirn-unliftio-core-0.2.1.0/nix-support:
1199.09 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.09 s
[ghc-9.10.3-with-packages] /nix/store/3d0qs4aijgblg7mvsxzr2b168hmncirn-unliftio-core-0.2.1.0/nix-support:
1199.09 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.10 s
[ghc-9.10.3-with-packages] /nix/store/kspxaj152b3jyd5yfwmkb8fi5l571rms-base-orphans-0.9.3/nix-support:
1199.10 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.10 s
[ghc-9.10.3-with-packages] /nix/store/kspxaj152b3jyd5yfwmkb8fi5l571rms-base-orphans-0.9.3/nix-support:
1199.10 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.10 s
[ghc-9.10.3-with-packages] /nix/store/c1ickhy1b9cnskfyjr6bhh9xbczy60w0-tagged-0.8.9/nix-support:
1199.10 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.10 s
[ghc-9.10.3-with-packages] /nix/store/c1ickhy1b9cnskfyjr6bhh9xbczy60w0-tagged-0.8.9/nix-support:
1199.10 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.10 s
[ghc-9.10.3-with-packages] /nix/store/rwvnxl3wi6qdd2mffsl3rymh0infb7nh-boring-0.2.2/nix-support:
1199.10 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.11 s
[ghc-9.10.3-with-packages] /nix/store/rwvnxl3wi6qdd2mffsl3rymh0infb7nh-boring-0.2.2/nix-support:
1199.11 s
[ghc-9.10.3-with-packages] propagated-build-inputs: Keeping existing link to /nix/store/90d89nrwky7gxskpyxfjn6i803dzfh2r-algebraic-graphs-0.7/nix-support/propagated-build-inputs
1199.98 s
[ghc-9.10.3-with-packages] Warning: include-dirs: /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages/lib/ghc-9.10.3/lib/../lib/x86_64-linux-ghc-9.10.3/directory-1.3.8.5-e377/include doesn't exist or isn't a directory
1201.39 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages
1202.21 s
[post-build-hook] Pushing 1 paths (152 are already present) using zstd to cache sellout ⏳
1202.21 s
[post-build-hook]
1203.64 s
[post-build-hook] Pushing /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages (5.54 MiB)
1215.41 s
[post-build-hook]
1215.41 s
[post-build-hook] All done.
1215.43 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages
1215.48 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1215.64 s
[post-build-hook] copying 1 paths...
1215.64 s
[post-build-hook] copying path '/nix/store/ckcg11hm6c0zkif1k7aarabczcpjixq5-ghc-9.10.3-with-packages' to 'https://cache.nix-ci.com'...
1216.89 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1217.09 s
[post-build-hook] copying 1 paths...
1217.09 s
[post-build-hook] copying path '/nix/store/0h5sbj8f13cma0bykd9dqf2b4786c45f-ghc-9.10.3-with-packages.drv' to 'https://cache.nix-ci.com'...
1217.25 s
Progress: 48 of 57 built (3 building), 771 of 771 downloaded from cache
1217.25 s
[haskell-language-server] Preprocessing library 'hls-qualify-imported-names-plugin' for haskell-language-server-2.12.0.0...
1217.25 s
[haskell-language-server] Building library 'hls-qualify-imported-names-plugin' for haskell-language-server-2.12.0.0...
1217.25 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.QualifyImportedNames ( plugins/hls-qualify-imported-names-plugin/src/Ide/Plugin/QualifyImportedNames.hs, dist/build/hls-qualify-imported-names-plugin/Ide/Plugin/QualifyImportedNames.o, dist/build/hls-qualify-imported-names-plugin/Ide/Plugin/QualifyImportedNames.dyn_o )
1217.25 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.QualifyImportedNames ( plugins/hls-qualify-imported-names-plugin/src/Ide/Plugin/QualifyImportedNames.hs, dist/build/hls-qualify-imported-names-plugin/Ide/Plugin/QualifyImportedNames.p_o )
1217.25 s
[haskell-language-server] Preprocessing executable 'ghcide-bench' for haskell-language-server-2.12.0.0...
1217.25 s
[haskell-language-server] Building executable 'ghcide-bench' for haskell-language-server-2.12.0.0...
1217.25 s
[haskell-language-server] [1 of 1] Compiling Main ( ghcide-bench/exe/Main.hs, dist/build/ghcide-bench/ghcide-bench-tmp/Main.dyn_o )
1217.25 s
[haskell-language-server] [2 of 2] Linking dist/build/ghcide-bench/ghcide-bench
1217.25 s
[haskell-language-server] Preprocessing library 'hls-rename-plugin' for haskell-language-server-2.12.0.0...
1217.25 s
[haskell-language-server] Building library 'hls-rename-plugin' for haskell-language-server-2.12.0.0...
1217.25 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.Rename ( plugins/hls-rename-plugin/src/Ide/Plugin/Rename.hs, dist/build/hls-rename-plugin/Ide/Plugin/Rename.o, dist/build/hls-rename-plugin/Ide/Plugin/Rename.dyn_o )
1217.25 s
[haskell-language-server] [1 of 1] Compiling Ide.Plugin.Rename ( plugins/hls-rename-plugin/src/Ide/Plugin/Rename.hs, dist/build/hls-rename-plugin/Ide/Plugin/Rename.p_o )
1217.25 s
[pandoc-lua-engine] [2 of 5] Compiling Tests.Lua.Module
1217.25 s
[pandoc-lua-engine] [3 of 5] Compiling Tests.Lua.Reader
1217.25 s
[pandoc-lua-engine] [4 of 5] Compiling Tests.Lua.Writer
1217.25 s
[pandoc-lua-engine] [5 of 5] Compiling Main
1217.25 s
[pandoc-lua-engine] [6 of 6] Linking dist/build/test-pandoc-lua-engine/test-pandoc-lua-engine
1217.25 s
[pandoc-lua-engine] buildPhase completed in 32 seconds
1217.25 s
[pandoc-lua-engine] Phase: checkPhase
1217.25 s
[pandoc-lua-engine] Running 1 test suites...
1217.25 s
[pandoc-lua-engine] Test suite test-pandoc-lua-engine: RUNNING...
1217.25 s
[pandoc-lua-engine] pandoc Lua engine
1217.25 s
[pandoc-lua-engine] Lua filters
1217.25 s
[pandoc-lua-engine] macro expansion via filter: OK
1217.25 s
[pandoc-lua-engine] convert all plains to paras: OK
1217.25 s
[pandoc-lua-engine] convert display math to inline math: OK (0.02s)
1217.25 s
[pandoc-lua-engine] make hello world document: OK
1217.25 s
[pandoc-lua-engine] implicit doc filter: OK
1217.25 s
[pandoc-lua-engine] parse raw markdown blocks: OK
1217.25 s
[pandoc-lua-engine] allow shorthand functions for quote types: OK
1217.25 s
[pandoc-lua-engine] Count inlines via metatable catch-all: OK
1217.25 s
[pandoc-lua-engine] Count blocks via Block-specific catch-all: OK
1217.25 s
[pandoc-lua-engine] Smart constructors: OK
1217.25 s
[pandoc-lua-engine] Convert header upper case: OK
1217.25 s
[pandoc-lua-engine] Attribute lists are convenient to use: OK
1217.25 s
[pandoc-lua-engine] Filter list of inlines: OK
1217.25 s
[pandoc-lua-engine] Filter list of blocks: OK
1217.25 s
[pandoc-lua-engine] Filter Meta: OK
1217.25 s
[pandoc-lua-engine] Script filename is set: OK
1217.25 s
[pandoc-lua-engine] Pandoc version is set: OK
1217.25 s
[pandoc-lua-engine] Pandoc types version is set: OK
1217.25 s
[pandoc-lua-engine] require file: OK
1217.25 s
[pandoc-lua-engine] Allow singleton inline in constructors: OK
1217.25 s
[pandoc-lua-engine] Elements with Attr have `attr` accessor: OK
1217.25 s
[pandoc-lua-engine] module `pandoc.system` is present: OK
1217.26 s
[pandoc-lua-engine] global modules
1217.26 s
[pandoc-lua-engine] module 'lpeg' is loaded into a global: OK
1217.26 s
[pandoc-lua-engine] module 're' is loaded into a global: OK
1217.26 s
[pandoc-lua-engine] module 'lpeg' is available via `require`: OK
1217.26 s
[pandoc-lua-engine] module 're' is available via `require`: OK
1217.26 s
[pandoc-lua-engine] informative error messages: OK
1217.26 s
[pandoc-lua-engine] Lua modules
1217.26 s
[pandoc-lua-engine] pandoc: OK (0.01s)
1217.26 s
[pandoc-lua-engine] +++ Success: 79 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.List: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 22 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.format: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 3 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.image: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 6 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.json: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 21 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.log: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 8 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.mediabag: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 9 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.path: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 5 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.structure: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 11 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.template: OK (0.02s)
1217.26 s
[pandoc-lua-engine] +++ Success: 16 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.text: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 9 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.types: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 13 Lua tests passed
1217.26 s
[pandoc-lua-engine] pandoc.utils: OK
1217.26 s
[pandoc-lua-engine] +++ Success: 45 Lua tests passed
1217.26 s
[pandoc-lua-engine] globals: OK (0.02s)
1217.26 s
[pandoc-lua-engine] +++ Success: 42 Lua tests passed
1217.26 s
[pandoc-lua-engine] Custom writers
1217.26 s
[pandoc-lua-engine] default testsuite: OK (0.07s)
1217.26 s
[pandoc-lua-engine] tables testsuite: OK (0.03s)
1217.26 s
[pandoc-lua-engine] bytestring writer: OK
1217.26 s
[pandoc-lua-engine] template: OK
1217.26 s
[pandoc-lua-engine] preset extensions: OK
1217.26 s
[pandoc-lua-engine] modified extensions: OK
1217.26 s
[pandoc-lua-engine] Custom readers
1217.26 s
[pandoc-lua-engine] read binary to code block: OK
1217.26 s
[pandoc-lua-engine]
1217.26 s
[pandoc-lua-engine] All 48 tests passed (0.31s)
1217.26 s
[pandoc-lua-engine] Test suite test-pandoc-lua-engine: PASS
1217.26 s
[pandoc-lua-engine] Test suite logged to:
1217.26 s
[pandoc-lua-engine] dist/test/pandoc-lua-engine-0.4.3-test-pandoc-lua-engine.log
1217.26 s
[pandoc-lua-engine] 1 of 1 test suites (1 of 1 test cases) passed.
1217.26 s
[pandoc-lua-engine] Phase: haddockPhase
1217.26 s
[pandoc-lua-engine] Preprocessing library for pandoc-lua-engine-0.4.3...
1217.26 s
[pandoc-lua-engine] Running Haddock on library for pandoc-lua-engine-0.4.3...
1217.26 s
[pandoc-lua-engine] Warning: The documentation for the following packages are not installed. No
1217.26 s
[pandoc-lua-engine] links will be generated to these packages: attoparsec-0.14.4,
1217.26 s
[pandoc-server] Documentation created: dist/doc/html/pandoc-server/,
1217.26 s
[pandoc-server] dist/doc/html/pandoc-server/pandoc-server.txt
1217.26 s
[pandoc-server] Phase: installPhase
1217.26 s
[pandoc-server] Installing library in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1217.26 s
[pandoc-server] Phase: fixupPhase
1217.26 s
[pandoc-server] shrinking RPATHs of ELF executables and libraries in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
1217.26 s
[pandoc-server] shrinking /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHSpandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq-ghc9.10.3.so
1217.26 s
[pandoc-server] checking for references to /build/ in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11...
1217.26 s
[pandoc-server] patching script interpreter paths in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
1217.26 s
[pandoc-server] stripping (with command strip and flags -S -p) in /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11/lib
1217.26 s
[pandoc-server] shrinking RPATHs of ELF executables and libraries in /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc
1217.26 s
[pandoc-server] checking for references to /build/ in /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc...
1217.26 s
[pandoc-server] patching script interpreter paths in /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc
1217.26 s
[pandoc-lua-engine] attoparsec-0.14.4, libyaml-clib-0.2.5, pandoc-3.7.0.2, pandoc-3.7.0.2,
1217.26 s
[pandoc-lua-engine] vector-0.13.2.0
1217.26 s
[pandoc-lua-engine] [ 1 of 39] Compiling Text.Pandoc.Lua.Marshal.Chunks
1217.26 s
[pandoc-lua-engine] [ 2 of 39] Compiling Text.Pandoc.Lua.Marshal.Context
1217.26 s
[pandoc-lua-engine] [ 3 of 39] Compiling Text.Pandoc.Lua.Marshal.ImageSize
1217.26 s
[pandoc-lua-engine] [ 4 of 39] Compiling Text.Pandoc.Lua.Marshal.LogMessage
1217.26 s
[pandoc-lua-engine] [ 5 of 39] Compiling Text.Pandoc.Lua.Marshal.CommonState
1217.26 s
[pandoc-lua-engine] [ 6 of 39] Compiling Text.Pandoc.Lua.Marshal.PandocError
1217.26 s
[pandoc-lua-engine] [ 7 of 39] Compiling Text.Pandoc.Lua.Marshal.Reference
1217.26 s
[pandoc-lua-engine] [ 8 of 39] Compiling Text.Pandoc.Lua.Marshal.Sources
1217.26 s
[pandoc-lua-engine] [ 9 of 39] Compiling Text.Pandoc.Lua.Module.System
1217.26 s
[pandoc-lua-engine] [10 of 39] Compiling Text.Pandoc.Lua.PandocLua
1217.26 s
[pandoc-lua-engine] [11 of 39] Compiling Text.Pandoc.Lua.Module.Types
1217.26 s
[pandoc-lua-engine] [12 of 39] Compiling Text.Pandoc.Lua.Module.Text
1217.26 s
[pandoc-lua-engine] [13 of 39] Compiling Text.Pandoc.Lua.Module.JSON
1217.26 s
[pandoc-lua-engine] [14 of 39] Compiling Text.Pandoc.Lua.Module.CLI
1217.26 s
[pandoc-lua-engine] [15 of 39] Compiling Text.Pandoc.Lua.Marshal.Template
1217.26 s
[pandoc-lua-engine] [16 of 39] Compiling Text.Pandoc.Lua.Module.Template
1217.26 s
[pandoc-lua-engine] [17 of 39] Compiling Text.Pandoc.Lua.Marshal.Format
1217.26 s
[pandoc-lua-engine] [18 of 39] Compiling Text.Pandoc.Lua.Module.Format
1217.26 s
[pandoc-lua-engine] [19 of 39] Compiling Text.Pandoc.Lua.Marshal.WriterOptions
1217.26 s
[pandoc-lua-engine] [20 of 39] Compiling Text.Pandoc.Lua.Module.Structure
1217.26 s
[pandoc-lua-engine] [21 of 39] Compiling Text.Pandoc.Lua.Module.Image
1217.26 s
[pandoc-lua-engine] [22 of 39] Compiling Text.Pandoc.Lua.Marshal.ReaderOptions
1217.26 s
[pandoc-lua-engine] [23 of 39] Compiling Text.Pandoc.Lua.Orphans
1217.26 s
[pandoc-lua-engine] [24 of 39] Compiling Text.Pandoc.Lua.Module.MediaBag
1217.26 s
[pandoc-lua-engine] [25 of 39] Compiling Text.Pandoc.Lua.Global
1217.26 s
[pandoc-lua-engine] [26 of 39] Compiling Text.Pandoc.Lua.Filter
1217.26 s
[pandoc-lua-engine] [27 of 39] Compiling Text.Pandoc.Lua.Module.Utils
1217.26 s
[pandoc-lua-engine] [28 of 39] Compiling Text.Pandoc.Lua.SourcePos
1217.26 s
[pandoc-lua-engine] [29 of 39] Compiling Text.Pandoc.Lua.Module.Log
1217.26 s
[pandoc-lua-engine] [30 of 39] Compiling Text.Pandoc.Lua.Writer.Classic
1217.26 s
[pandoc-lua-engine] [31 of 39] Compiling Text.Pandoc.Lua.Module.Pandoc
1217.26 s
[pandoc-lua-engine] [32 of 39] Compiling Text.Pandoc.Lua.Writer.Scaffolding
1217.26 s
[pandoc-lua-engine] [33 of 39] Compiling Text.Pandoc.Lua.Module.Scaffolding
1217.26 s
[pandoc-lua-engine] [34 of 39] Compiling Text.Pandoc.Lua.Module
1217.26 s
[pandoc-lua-engine] [35 of 39] Compiling Text.Pandoc.Lua.Init
1217.26 s
[pandoc-lua-engine] [36 of 39] Compiling Text.Pandoc.Lua.Run
1217.26 s
[pandoc-lua-engine] [37 of 39] Compiling Text.Pandoc.Lua.Custom
1217.26 s
[pandoc-lua-engine] [38 of 39] Compiling Text.Pandoc.Lua.Engine
1217.26 s
[pandoc-lua-engine] [39 of 39] Compiling Text.Pandoc.Lua
1217.26 s
[pandoc-lua-engine] Haddock coverage:
1217.26 s
[pandoc-lua-engine] Warning: 'Chunk' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
1217.26 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.26 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Chunks’
1217.26 s
[pandoc-lua-engine] Warning: 'ChunkedDoc' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
1217.26 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Chunks’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.26 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Chunks’
1217.26 s
[pandoc-lua-engine] Warning: 'Reference' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.26 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] Warning: 'ItemId' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.26 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] Warning: 'Name' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.26 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] Warning: 'Date' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] * in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.26 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Citeproc.Types’
1217.26 s
[pandoc-lua-engine] Warning: 'Sources' is ambiguous. It is defined
1217.26 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Sources’
1217.26 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Sources’
1217.26 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1217.26 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1217.44 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
1225.69 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
1225.70 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/3j1008pz7rfr2k0141d78adq5awkm1r7-pandoc-server-0.1.0.11-doc /nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11
1225.74 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1225.79 s
[post-build-hook] copying 1 paths...
1225.79 s
[post-build-hook] copying path '/nix/store/nv0pp69g48m74j1jkpjgffvjdqnsgp8v-pandoc-server-0.1.0.11' to 'https://cache.nix-ci.com'...
1226.51 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1226.61 s
[post-build-hook] copying 0 paths...
1226.63 s
Progress: 49 of 57 built (2 building), 771 of 771 downloaded from cache
1226.63 s
[haskell-language-server] Preprocessing library 'hls-call-hierarchy-plugin' for haskell-language-server-2.12.0.0...
1226.63 s
[haskell-language-server] Building library 'hls-call-hierarchy-plugin' for haskell-language-server-2.12.0.0...
1226.63 s
[haskell-language-server] [1 of 4] Compiling Ide.Plugin.CallHierarchy.Types ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Types.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Types.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Types.dyn_o )
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Sources’
1226.63 s
[pandoc-lua-engine] Warning: 'Lua' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * in ‘HsLua.Core.Error’
1226.63 s
[pandoc-lua-engine] * in ‘HsLua.Core.Types’
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined in ‘HsLua.Core.Error’
1226.63 s
[pandoc-lua-engine] Warning: 'PandocLua' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:23
1226.63 s
[pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:1
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined at src/Text/Pandoc/Lua/PandocLua.hs:36:1
1226.63 s
[pandoc-lua-engine] Warning: 'ExtensionConfig' is out of scope.
1226.63 s
[pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
1226.63 s
[pandoc-lua-engine] Warning: 'ExtensionsConfig' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Format’
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Format’
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Format’
1226.63 s
[pandoc-lua-engine] Warning: 'enable' is out of scope.
1226.63 s
[pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
1226.63 s
[pandoc-lua-engine] Warning: 'disable' is out of scope.
1226.63 s
[pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
1226.63 s
[pandoc-lua-engine] Warning: 'WriterOptions' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Options’
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Options’
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Options’
1226.63 s
[pandoc-lua-engine] Warning: 'Pandoc' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Definition’
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Definition’
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Definition’
1226.63 s
[pandoc-lua-engine] Warning: 'Chunk' is out of scope.
1226.63 s
[pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
1226.63 s
[pandoc-lua-engine] Warning: 'ReaderOptions' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Options’
1226.63 s
[pandoc-lua-engine] * in ‘Text.Pandoc.Options’
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined in ‘Text.Pandoc.Options’
1226.63 s
[pandoc-lua-engine] Warning: 'read' is out of scope.
1226.63 s
[pandoc-lua-engine] If you qualify the identifier, haddock can try to link it anyway.
1226.63 s
[pandoc-lua-engine] Warning: 'PandocLua' is ambiguous. It is defined
1226.63 s
[pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:23
1226.63 s
[pandoc-lua-engine] * at src/Text/Pandoc/Lua/PandocLua.hs:36:1
1226.63 s
[pandoc-lua-engine] You may be able to disambiguate the identifier by qualifying it or
1226.63 s
[pandoc-lua-engine] by specifying the type/value namespace explicitly.
1226.63 s
[pandoc-lua-engine] Defaulting to the one defined at src/Text/Pandoc/Lua/PandocLua.hs:36:1
1226.63 s
[pandoc-lua-engine] 100% ( 11 / 11) in 'Text.Pandoc.Lua'
1226.63 s
[pandoc-lua-engine] Warning: Text.Pandoc.Lua: could not find link destinations for:
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Options.WriterOptions
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Error.PandocError
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Options.ReaderOptions
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Class.CommonState.CommonState
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Class.PandocMonad.PandocMonad
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Scripting.ScriptingEngine
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Filter.Environment.Environment
1226.63 s
[pandoc-lua-engine] - Text.Pandoc.Scripting.CustomComponents
1226.63 s
[pandoc-lua-engine] Documentation created: dist/doc/html/pandoc-lua-engine/,
1226.63 s
[pandoc-lua-engine] dist/doc/html/pandoc-lua-engine/pandoc-lua-engine.txt
1226.63 s
[pandoc-lua-engine] Preprocessing test suite 'test-pandoc-lua-engine' for pandoc-lua-engine-0.4.3...
1226.63 s
[pandoc-lua-engine] Phase: installPhase
1226.63 s
[pandoc-lua-engine] Installing library in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1226.63 s
[pandoc-lua-engine] Phase: fixupPhase
1226.63 s
[pandoc-lua-engine] shrinking RPATHs of ELF executables and libraries in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
1226.63 s
[pandoc-lua-engine] shrinking /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHSpandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98-ghc9.10.3.so
1226.63 s
[pandoc-lua-engine] checking for references to /build/ in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3...
1226.63 s
[pandoc-lua-engine] patching script interpreter paths in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
1226.63 s
[pandoc-lua-engine] stripping (with command strip and flags -S -p) in /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3/lib
1226.63 s
[pandoc-lua-engine] shrinking RPATHs of ELF executables and libraries in /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc
1226.63 s
[pandoc-lua-engine] checking for references to /build/ in /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc...
1226.63 s
[pandoc-lua-engine] patching script interpreter paths in /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc
1226.93 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
1234.66 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
1234.68 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/afm4wyap4sbadgn4yb21k7aszlkwhgrc-pandoc-lua-engine-0.4.3-doc /nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3
1234.72 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1234.81 s
[post-build-hook] copying 1 paths...
1234.81 s
[post-build-hook] copying path '/nix/store/xsymbzkl5mj89m7415xpjfrmfvrgvjxa-pandoc-lua-engine-0.4.3' to 'https://cache.nix-ci.com'...
1240.64 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1240.77 s
[post-build-hook] copying 0 paths...
1240.79 s
Progress: 50 of 57 built (1 building), 771 of 771 downloaded from cache
1240.87 s
Building pandoc-cli
1240.87 s
[haskell-language-server] [2 of 4] Compiling Ide.Plugin.CallHierarchy.Query ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Query.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Query.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Query.dyn_o )
1240.87 s
[haskell-language-server] [3 of 4] Compiling Ide.Plugin.CallHierarchy.Internal ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Internal.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Internal.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Internal.dyn_o )
1240.88 s
[haskell-language-server] [4 of 4] Compiling Ide.Plugin.CallHierarchy ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy.o, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy.dyn_o )
1240.88 s
[haskell-language-server] [1 of 4] Compiling Ide.Plugin.CallHierarchy.Types ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Types.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Types.p_o )
1240.88 s
[haskell-language-server] [2 of 4] Compiling Ide.Plugin.CallHierarchy.Query ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Query.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Query.p_o )
1240.88 s
[haskell-language-server] [3 of 4] Compiling Ide.Plugin.CallHierarchy.Internal ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy/Internal.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy/Internal.p_o )
1240.88 s
[haskell-language-server] [4 of 4] Compiling Ide.Plugin.CallHierarchy ( plugins/hls-call-hierarchy-plugin/src/Ide/Plugin/CallHierarchy.hs, dist/build/hls-call-hierarchy-plugin/Ide/Plugin/CallHierarchy.p_o )
1241.28 s
[haskell-language-server] Preprocessing library for haskell-language-server-2.12.0.0...
1241.28 s
[haskell-language-server] Building library for haskell-language-server-2.12.0.0...
1241.50 s
[haskell-language-server] <no location info>: warning : [ GHC-42258 ] [ -Wunused-packages ]
1241.50 s
[haskell-language-server] The following packages were specified via -package or -package-id flags,
1241.50 s
[haskell-language-server] but were not needed for compilation:
1241.50 s
[haskell-language-server] - ghc-9.10.3 (exposed by flag -package-id ghc-9.10.3-5702)
1241.50 s
[haskell-language-server]
1241.52 s
[haskell-language-server] [1 of 5] Compiling HlsPlugins ( src/HlsPlugins.hs, dist/build/HlsPlugins.o, dist/build/HlsPlugins.dyn_o )
1241.64 s
[pandoc-cli] Phase: setupCompilerEnvironmentPhase
1241.65 s
[pandoc-cli] Build with /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3.
1242.31 s
[pandoc-cli] Phase: unpackPhase
1242.31 s
[pandoc-cli] unpacking source archive /nix/store/l1s1s9sdrxfqabvc0hl1i6jbdyzaj2ci-pandoc-cli-3.7.0.2.tar.gz
1242.32 s
[pandoc-cli] source root is pandoc-cli-3.7.0.2
1242.33 s
[pandoc-cli] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "pandoc-cli-3.7.0.2/src/pandoc.hs"
1242.33 s
[pandoc-cli] Phase: patchPhase
1242.35 s
[pandoc-cli] Phase: compileBuildDriverPhase
1242.35 s
[pandoc-cli] setupCompileFlags: -package-db=/build/tmp.GXJgRSe9Rs/setup-package.conf.d -threaded
1242.40 s
[pandoc-cli] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.GXJgRSe9Rs/Main.o )
1242.45 s
[pandoc-cli] [2 of 2] Linking Setup
1242.74 s
[haskell-language-server] [2 of 5] Compiling Paths_haskell_language_server ( dist/build/autogen/Paths_haskell_language_server.hs, dist/build/Paths_haskell_language_server.o, dist/build/Paths_haskell_language_server.dyn_o )
1242.74 s
[haskell-language-server] [3 of 5] Compiling Ide.Version ( src/Ide/Version.hs, dist/build/Ide/Version.o, dist/build/Ide/Version.dyn_o )
1243.65 s
[pandoc-cli] Phase: updateAutotoolsGnuConfigScriptsPhase
1243.66 s
[pandoc-cli] Phase: configurePhase
1243.66 s
[pandoc-cli] configureFlags: --verbose --prefix=/nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --with-gcc=gcc --package-db=/build/tmp.GXJgRSe9Rs/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping -fembed_data_files --extra-lib-dirs=/nix/store/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
1243.67 s
[pandoc-cli] Using Parsec parser
1243.67 s
[pandoc-cli] Configuring pandoc-cli-3.7.0.2...
1243.98 s
[haskell-language-server] [4 of 5] Compiling Ide.Arguments ( src/Ide/Arguments.hs, dist/build/Ide/Arguments.o, dist/build/Ide/Arguments.dyn_o )
1244.17 s
[pandoc-cli] Flags chosen: lua=True, nightly=False, server=True
1244.28 s
[haskell-language-server] [5 of 5] Compiling Ide.Main ( src/Ide/Main.hs, dist/build/Ide/Main.o, dist/build/Ide/Main.dyn_o )
1244.45 s
[pandoc-cli] Dependency base >=4.12 && <5: using base-4.20.2.0
1244.45 s
[pandoc-cli] Dependency hslua-cli >=1.4.1 && <1.5: using hslua-cli-1.4.3
1244.45 s
[pandoc-cli] Dependency pandoc ==3.7.0.2: using pandoc-3.7.0.2
1244.45 s
[pandoc-cli] Dependency pandoc-lua-engine >=0.4.3 && <0.5: using pandoc-lua-engine-0.4.3
1244.45 s
[pandoc-cli] Dependency pandoc-server >=0.1.0.9 && <0.2: using pandoc-server-0.1.0.11
1244.45 s
[pandoc-cli] Dependency safe: using safe-0.3.21
1244.45 s
[pandoc-cli] Dependency temporary >=1.1 && <1.4: using temporary-1.3
1244.45 s
[pandoc-cli] Dependency text: using text-2.1.3
1244.45 s
[pandoc-cli] Dependency wai-extra >=3.0.24: using wai-extra-3.1.18
1244.45 s
[pandoc-cli] Dependency warp: using warp-3.4.9
1244.45 s
[pandoc-cli] Source component graph: component exe:pandoc
1244.45 s
[pandoc-cli] Configured component graph:
1244.45 s
[pandoc-cli] component pandoc-cli-3.7.0.2-GQYyxtqEbS2AsesU73JW3X-pandoc
1244.45 s
[pandoc-cli] include base-4.20.2.0-acb8
1244.45 s
[pandoc-cli] include hslua-cli-1.4.3-ACCCBwRtVs553oZVrCff6R
1244.45 s
[pandoc-cli] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1244.45 s
[pandoc-cli] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1244.45 s
[pandoc-cli] include pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1244.45 s
[pandoc-cli] include safe-0.3.21-Elq3JZGcw0hJOWwfsj8G99
1244.45 s
[pandoc-cli] include temporary-1.3-EOs1QAHjJhILyOEg1JGJM0
1244.45 s
[pandoc-cli] include text-2.1.3-e138
1244.45 s
[pandoc-cli] include wai-extra-3.1.18-45rqyGWr75p3CvzQlOJ5lM
1244.45 s
[pandoc-cli] include warp-3.4.9-IayhpOyoI2X29pjdF6hCyz
1244.45 s
[pandoc-cli] Linked component graph:
1244.45 s
[pandoc-cli] unit pandoc-cli-3.7.0.2-GQYyxtqEbS2AsesU73JW3X-pandoc
1244.45 s
[pandoc-cli] include base-4.20.2.0-acb8
1244.45 s
[pandoc-cli] include hslua-cli-1.4.3-ACCCBwRtVs553oZVrCff6R
1244.45 s
[pandoc-cli] include pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1244.45 s
[pandoc-cli] include pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1244.45 s
[pandoc-cli] include pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1244.45 s
[pandoc-cli] include safe-0.3.21-Elq3JZGcw0hJOWwfsj8G99
1244.45 s
[pandoc-cli] include temporary-1.3-EOs1QAHjJhILyOEg1JGJM0
1244.45 s
[pandoc-cli] include text-2.1.3-e138
1244.45 s
[pandoc-cli] include wai-extra-3.1.18-45rqyGWr75p3CvzQlOJ5lM
1244.45 s
[pandoc-cli] include warp-3.4.9-IayhpOyoI2X29pjdF6hCyz
1244.45 s
[pandoc-cli] Ready component graph:
1244.45 s
[pandoc-cli] definite pandoc-cli-3.7.0.2-GQYyxtqEbS2AsesU73JW3X-pandoc
1244.45 s
[pandoc-cli] depends base-4.20.2.0-acb8
1244.45 s
[pandoc-cli] depends hslua-cli-1.4.3-ACCCBwRtVs553oZVrCff6R
1244.45 s
[pandoc-cli] depends pandoc-3.7.0.2-Bn1GI6jrbMY2zU1Kbgbk8q
1244.45 s
[pandoc-cli] depends pandoc-lua-engine-0.4.3-K29XjFgYv9PKG3hN7s3H98
1244.45 s
[pandoc-cli] depends pandoc-server-0.1.0.11-2p8ECUQZARt9psWxK5ycoq
1244.45 s
[pandoc-cli] depends safe-0.3.21-Elq3JZGcw0hJOWwfsj8G99
1244.45 s
[pandoc-cli] depends temporary-1.3-EOs1QAHjJhILyOEg1JGJM0
1244.45 s
[pandoc-cli] depends text-2.1.3-e138
1244.45 s
[pandoc-cli] depends wai-extra-3.1.18-45rqyGWr75p3CvzQlOJ5lM
1244.45 s
[pandoc-cli] depends warp-3.4.9-IayhpOyoI2X29pjdF6hCyz
1244.45 s
[pandoc-cli] Using Cabal-3.12.1.0 compiled by ghc-9.10
1244.45 s
[pandoc-cli] Using compiler: ghc-9.10.3
1244.45 s
[pandoc-cli] Using install prefix:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
1244.45 s
[pandoc-cli] Executables installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin
1244.45 s
[pandoc-cli] Libraries installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
1244.45 s
[pandoc-cli] Dynamic Libraries installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702
1244.45 s
[pandoc-cli] Private executables installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/libexec/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
1244.45 s
[pandoc-cli] Data files installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/share/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
1244.45 s
[pandoc-cli] Documentation installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/share/doc/x86_64-linux-ghc-9.10.3-5702/pandoc-cli-3.7.0.2
1244.45 s
[pandoc-cli] Configuration files installed in:
1244.45 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/etc
1244.45 s
[pandoc-cli] No alex found
1244.45 s
[pandoc-cli] Using ar found on system at:
1244.45 s
[pandoc-cli] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
1244.45 s
[pandoc-cli] No c2hs found
1244.45 s
[pandoc-cli] No cpphs found
1244.45 s
[pandoc-cli] No doctest found
1244.45 s
[pandoc-cli] Using gcc version 14.3.0 given by user at:
1244.45 s
[pandoc-cli] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
1244.45 s
[pandoc-cli] Using ghc version 9.10.3 found on system at:
1244.45 s
[pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc
1244.45 s
[pandoc-cli] Using ghc-pkg version 9.10.3 found on system at:
1244.45 s
[pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/ghc-pkg-9.10.3
1244.45 s
[pandoc-cli] No ghcjs found
1244.45 s
[pandoc-cli] No ghcjs-pkg found
1244.45 s
[pandoc-cli] No greencard found
1244.45 s
[pandoc-cli] Using haddock version 2.31.1 found on system at:
1244.45 s
[pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/haddock-ghc-9.10.3
1244.45 s
[pandoc-cli] No happy found
1244.45 s
[pandoc-cli] Using haskell-suite found on system at: haskell-suite-dummy-location
1244.45 s
[pandoc-cli] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
1244.45 s
[pandoc-cli] No hmake found
1244.45 s
[pandoc-cli] Using hpc version 0.69 found on system at:
1244.45 s
[pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hpc-ghc-9.10.3
1244.45 s
[pandoc-cli] Using hsc2hs version 0.68.10 found on system at:
1244.45 s
[pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
1244.45 s
[pandoc-cli] No hscolour found
1244.45 s
[pandoc-cli] No jhc found
1244.45 s
[pandoc-cli] Using ld found on system at:
1244.45 s
[pandoc-cli] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
1244.45 s
[pandoc-cli] No pkg-config found
1244.45 s
[pandoc-cli] Using runghc version 9.10.3 found on system at:
1244.45 s
[pandoc-cli] /nix/store/ffg3yf2ypnbz3hc31y7nglrkihz0if01-ghc-9.10.3/bin/runghc-9.10.3
1244.45 s
[pandoc-cli] Using strip version 2.44 found on system at:
1244.45 s
[pandoc-cli] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
1244.45 s
[pandoc-cli] Using tar found on system at:
1244.45 s
[pandoc-cli] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
1244.45 s
[pandoc-cli] No uhc found
1244.70 s
[pandoc-cli] Phase: buildPhase
1244.83 s
[pandoc-cli] Preprocessing executable 'pandoc' for pandoc-cli-3.7.0.2...
1244.83 s
[pandoc-cli] Building executable 'pandoc' for pandoc-cli-3.7.0.2...
1244.95 s
[pandoc-cli] [1 of 3] Compiling PandocCLI.Lua
1245.19 s
[pandoc-cli] [2 of 3] Compiling PandocCLI.Server
1245.19 s
[pandoc-cli] [3 of 3] Compiling Main
1245.28 s
[haskell-language-server] <no location info>: warning : [ GHC-42258 ] [ -Wunused-packages ]
1245.28 s
[haskell-language-server] The following packages were specified via -package or -package-id flags,
1245.28 s
[haskell-language-server] but were not needed for compilation:
1245.28 s
[haskell-language-server] - ghc-9.10.3 (exposed by flag -package-id ghc-9.10.3-5702)
1245.28 s
[haskell-language-server]
1245.30 s
[haskell-language-server] [1 of 5] Compiling HlsPlugins ( src/HlsPlugins.hs, dist/build/HlsPlugins.p_o )
1245.60 s
[pandoc-cli] [4 of 4] Linking dist/build/pandoc/pandoc
1246.45 s
[haskell-language-server] [2 of 5] Compiling Paths_haskell_language_server ( dist/build/autogen/Paths_haskell_language_server.hs, dist/build/Paths_haskell_language_server.p_o )
1246.48 s
[haskell-language-server] [3 of 5] Compiling Ide.Version ( src/Ide/Version.hs, dist/build/Ide/Version.p_o )
1247.83 s
[haskell-language-server] [4 of 5] Compiling Ide.Arguments ( src/Ide/Arguments.hs, dist/build/Ide/Arguments.p_o )
1248.44 s
[haskell-language-server] [5 of 5] Compiling Ide.Main ( src/Ide/Main.hs, dist/build/Ide/Main.p_o )
1253.65 s
[pandoc-cli] Phase: checkPhase
1253.73 s
[pandoc-cli] Package has no test suites.
1253.73 s
[pandoc-cli] Phase: haddockPhase
1253.74 s
[pandoc-cli] Phase: installPhase
1253.88 s
[pandoc-cli] Installing executable pandoc in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin
1253.88 s
[pandoc-cli] Warning: The directory
1253.88 s
[pandoc-cli] /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin is not in
1253.88 s
[pandoc-cli] the system search path.
1257.85 s
[pandoc-cli] Phase: fixupPhase
1257.86 s
[haskell-language-server] Preprocessing executable 'haskell-language-server' for haskell-language-server-2.12.0.0...
1257.87 s
[haskell-language-server] Building executable 'haskell-language-server' for haskell-language-server-2.12.0.0...
1257.87 s
[pandoc-cli] shrinking RPATHs of ELF executables and libraries in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
1257.87 s
[pandoc-cli] shrinking /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin/pandoc
1257.96 s
[haskell-language-server] [1 of 1] Compiling Main ( exe/Main.hs, dist/build/haskell-language-server/haskell-language-server-tmp/Main.dyn_o )
1258.37 s
[pandoc-cli] checking for references to /build/ in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2...
1258.60 s
[pandoc-cli] gzipping man pages under /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/share/man/
1258.63 s
[pandoc-cli] patching script interpreter paths in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
1258.63 s
[pandoc-cli] stripping (with command strip and flags -S -p) in /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2/bin
1259.36 s
[haskell-language-server] [2 of 2] Linking dist/build/haskell-language-server/haskell-language-server
1259.70 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
1260.08 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
1260.09 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2
1260.13 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1260.14 s
[post-build-hook] copying 1 paths...
1260.15 s
[post-build-hook] copying path '/nix/store/kw3za95f7hqf85j27w1v594aiqjy6vw0-pandoc-cli-3.7.0.2' to 'https://cache.nix-ci.com'...
1324.30 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1324.42 s
[post-build-hook] copying 0 paths...
1324.44 s
Progress: 51 of 57 built (1 building), 771 of 771 downloaded from cache
1324.49 s
Building shellcheck
1324.49 s
[haskell-language-server] Preprocessing executable 'haskell-language-server-wrapper' for haskell-language-server-2.12.0.0...
1324.49 s
[haskell-language-server] Building executable 'haskell-language-server-wrapper' for haskell-language-server-2.12.0.0...
1324.49 s
[haskell-language-server] [1 of 2] Compiling Main ( exe/Wrapper.hs, dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper-tmp/Main.dyn_o )
1324.49 s
[haskell-language-server] [2 of 2] Compiling Paths_haskell_language_server ( dist/build/haskell-language-server-wrapper/autogen/Paths_haskell_language_server.hs, dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper-tmp/Paths_haskell_language_server.dyn_o )
1324.49 s
[haskell-language-server] [3 of 3] Linking dist/build/haskell-language-server-wrapper/haskell-language-server-wrapper
1324.49 s
[haskell-language-server] buildPhase completed in 9 minutes 28 seconds
1324.49 s
[haskell-language-server] Phase: haddockPhase
1324.49 s
[haskell-language-server] Phase: installPhase
1324.49 s
[haskell-language-server] Installing internal library hls-ormolu-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-LJoGa6Q3mno34EixCXxQyM-hls-ormolu-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-class-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-JmrpfU8xWrF7DbDuTpoV6M-hls-class-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-change-type-signature-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-JaEwwNLXKZf4qh2V7Gq4ve-hls-change-type-signature-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-stan-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-J1IzagR6j3zKeJ211v1OF5-hls-stan-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-notes-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-Iiv5tNKLhozH7ubgH6Uw8f-hls-notes-plugin
1324.49 s
[haskell-language-server] Installing executable ghcide-test-preprocessor in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] Warning: The directory
1324.49 s
[haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] is not in the system search path.
1324.49 s
[haskell-language-server] Installing internal library hls-cabal-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-IDPfpA6WZ8MBqF56YSJeya-hls-cabal-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-refactor-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-HvmhCTtZxUHCE9gLnCKLh9-hls-refactor-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-explicit-imports-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-HY7rpmjnqIsLcnwWUDIpFY-hls-explicit-imports-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-pragmas-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-GNPMvuHXMezAey3L7oMrmZ-hls-pragmas-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-signature-help-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-G6BvrdYBCuL8xDksNEM54S-hls-signature-help-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-alternate-number-format-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-FML198sk7yCChrqqaaJW3V-hls-alternate-number-format-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-overloaded-record-dot-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-F727644vmcFC4ljPry2ZWA-hls-overloaded-record-dot-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-explicit-fixity-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-Eb0uC3g1KncAMsh4l2kyAe-hls-explicit-fixity-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-fourmolu-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-E86cAfE3EcS9MDN3hoDIwp-hls-fourmolu-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-code-range-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DeamZ4UqDRTFo4XMHs6r1V-hls-code-range-plugin
1324.49 s
[haskell-language-server] Installing internal library ghcide-bench-lib in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DR7ueyJn3CVKIetN9QcR6o-ghcide-bench-lib
1324.49 s
[haskell-language-server] Installing internal library hls-stylish-haskell-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DKqnwPxt8oD49vf9uLay1-hls-stylish-haskell-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-eval-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-DJXwFDNaWTa6QGUL7vL7kD-hls-eval-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-gadt-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-COqyzKayFsnF5VZO5oPjXC-hls-gadt-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-cabal-gild-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-7uu738T18llBLjxCd5i63v-hls-cabal-gild-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-explicit-record-fields-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-6qYivsrGDwM9pL7Rf9PolD-hls-explicit-record-fields-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-semantic-tokens-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-6keyNWkDzqvF1GBtR9iAwX-hls-semantic-tokens-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-cabal-fmt-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-4yqVuz6O5OB8hdORCTa732-hls-cabal-fmt-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-module-name-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-4jf4xRexuBh5qXpczyaUi5-hls-module-name-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-qualify-imported-names-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-47RpIEDWA2z8p8kXokJ9uO-hls-qualify-imported-names-plugin
1324.49 s
[haskell-language-server] Installing executable ghcide-bench in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] Warning: The directory
1324.49 s
[haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] is not in the system search path.
1324.49 s
[haskell-language-server] Installing internal library hls-rename-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-2H8QVfbjT33DWge5TBSMMH-hls-rename-plugin
1324.49 s
[haskell-language-server] Installing internal library hls-call-hierarchy-plugin in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-215WrYoSuAW8PBPKsa10fz-hls-call-hierarchy-plugin
1324.49 s
[haskell-language-server] Installing library in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/haskell-language-server-2.12.0.0-FisfEdJF7uuCpwsrDOfzYo
1324.49 s
[haskell-language-server] Installing executable haskell-language-server in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] Warning: The directory
1324.49 s
[haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] is not in the system search path.
1324.49 s
[haskell-language-server] Installing executable haskell-language-server-wrapper in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] Warning: The directory
1324.49 s
[haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.49 s
[haskell-language-server] is not in the system search path.
1324.49 s
[haskell-language-server] Phase: fixupPhase
1324.49 s
[haskell-language-server] shrinking RPATHs of ELF executables and libraries in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
1324.49 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/ghcide-bench
1324.49 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/haskell-language-server-wrapper
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/.haskell-language-server-9.10.3-unwrapped
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/ghcide-test-preprocessor
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-2H8QVfbjT33DWge5TBSMMH-hls-rename-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-Eb0uC3g1KncAMsh4l2kyAe-hls-explicit-fixity-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-COqyzKayFsnF5VZO5oPjXC-hls-gadt-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-F727644vmcFC4ljPry2ZWA-hls-overloaded-record-dot-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-FML198sk7yCChrqqaaJW3V-hls-alternate-number-format-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-GNPMvuHXMezAey3L7oMrmZ-hls-pragmas-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DR7ueyJn3CVKIetN9QcR6o-ghcide-bench-lib-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-6qYivsrGDwM9pL7Rf9PolD-hls-explicit-record-fields-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DeamZ4UqDRTFo4XMHs6r1V-hls-code-range-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-J1IzagR6j3zKeJ211v1OF5-hls-stan-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-4jf4xRexuBh5qXpczyaUi5-hls-module-name-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-Iiv5tNKLhozH7ubgH6Uw8f-hls-notes-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-47RpIEDWA2z8p8kXokJ9uO-hls-qualify-imported-names-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-215WrYoSuAW8PBPKsa10fz-hls-call-hierarchy-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-LJoGa6Q3mno34EixCXxQyM-hls-ormolu-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-HY7rpmjnqIsLcnwWUDIpFY-hls-explicit-imports-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-E86cAfE3EcS9MDN3hoDIwp-hls-fourmolu-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-4yqVuz6O5OB8hdORCTa732-hls-cabal-fmt-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-JmrpfU8xWrF7DbDuTpoV6M-hls-class-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DJXwFDNaWTa6QGUL7vL7kD-hls-eval-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-IDPfpA6WZ8MBqF56YSJeya-hls-cabal-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-G6BvrdYBCuL8xDksNEM54S-hls-signature-help-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-FisfEdJF7uuCpwsrDOfzYo-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-6keyNWkDzqvF1GBtR9iAwX-hls-semantic-tokens-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-DKqnwPxt8oD49vf9uLay1-hls-stylish-haskell-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-7uu738T18llBLjxCd5i63v-hls-cabal-gild-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-HvmhCTtZxUHCE9gLnCKLh9-hls-refactor-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] shrinking /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-5702/libHShaskell-language-server-2.12.0.0-JaEwwNLXKZf4qh2V7Gq4ve-hls-change-type-signature-plugin-ghc9.10.3.so
1324.50 s
[haskell-language-server] checking for references to /build/ in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0...
1324.50 s
[haskell-language-server] patching script interpreter paths in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
1324.50 s
[haskell-language-server] /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/haskell-language-server: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1324.50 s
[haskell-language-server] stripping (with command strip and flags -S -p) in /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/lib /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin
1324.50 s
[haskell-language-server] rewriting symlink /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0/bin/haskell-language-server-9.10.3 to be relative to /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
1328.80 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
1329.50 s
[post-build-hook] Pushing 1 paths (577 are already present) using zstd to cache sellout ⏳
1329.52 s
[post-build-hook]
1329.86 s
[post-build-hook] Pushing /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0 (110.37 MiB)
1331.97 s
[post-build-hook]
1331.97 s
[post-build-hook] All done.
1332.00 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0
1332.04 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1332.09 s
[post-build-hook] copying 1 paths...
1332.09 s
[post-build-hook] copying path '/nix/store/w9bcbk1yvwwnjq5pvrmxyqfsq27kf065-haskell-language-server-2.12.0.0' to 'https://cache.nix-ci.com'...
1355.31 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1355.51 s
[post-build-hook] copying 1 paths...
1355.52 s
[post-build-hook] copying path '/nix/store/1bq1g7jql84wrzmjngcd03lpj8s1hnbx-haskell-language-server-2.12.0.0.drv' to 'https://cache.nix-ci.com'...
1355.68 s
Progress: 52 of 57 built (1 building), 771 of 771 downloaded from cache
1355.69 s
[shellcheck] Phase: unpackPhase
1355.69 s
[shellcheck] unpacking source archive /nix/store/0y569php6xr1v629bbggizl1ba1mrf5b-ShellCheck-0.11.0.tar.gz
1355.69 s
[shellcheck] source root is ShellCheck-0.11.0
1355.69 s
[shellcheck] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "ShellCheck-0.11.0/test/shellcheck.hs"
1355.69 s
[shellcheck] Phase: patchPhase
1355.69 s
[shellcheck] Phase: updateAutotoolsGnuConfigScriptsPhase
1355.69 s
[shellcheck] Phase: configurePhase
1355.69 s
[shellcheck] no configure script, doing nothing
1355.69 s
[shellcheck] Phase: buildPhase
1355.69 s
[shellcheck] Phase: installPhase
1355.69 s
[shellcheck] Phase: fixupPhase
1355.69 s
[shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin
1355.69 s
[shellcheck] shrinking /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin/bin/shellcheck
1355.69 s
[shellcheck] checking for references to /build/ in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin...
1355.69 s
[shellcheck] patching script interpreter paths in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin
1355.69 s
[shellcheck] stripping (with command strip and flags -S -p) in /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin/bin
1355.69 s
[shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
1355.69 s
[shellcheck] checking for references to /build/ in /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man...
1355.69 s
[shellcheck] gzipping man pages under /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man/share/man/
1355.69 s
[shellcheck] patching script interpreter paths in /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
1355.69 s
[shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc
1355.69 s
[shellcheck] checking for references to /build/ in /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc...
1355.69 s
[shellcheck] patching script interpreter paths in /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc
1355.69 s
[shellcheck] shrinking RPATHs of ELF executables and libraries in /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0
1355.69 s
[shellcheck] checking for references to /build/ in /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0...
1355.69 s
[shellcheck] patching script interpreter paths in /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0
1355.72 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0 /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
1356.09 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
1356.11 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/0f9vs0llmqh8yip6v421kjy9ldkdn2pq-shellcheck-0.11.0-doc /nix/store/hcc1a75b03pjsf9jjyd3zfk3ncrkpbsx-shellcheck-0.11.0 /nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin /nix/store/v93xmg5bvf5sj2p5d3fc0pibj69j18d4-shellcheck-0.11.0-man
1356.15 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1356.19 s
[post-build-hook] copying 1 paths...
1356.19 s
[post-build-hook] copying path '/nix/store/q46qczdsfm7pa4149jgb7v6xa9zljk5p-shellcheck-0.11.0-bin' to 'https://cache.nix-ci.com'...
1358.36 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1358.47 s
[post-build-hook] copying 0 paths...
1358.49 s
Progress: 53 of 57 built, 771 of 771 downloaded from cache
1358.54 s
Building bash-language-server
1358.56 s
[bash-language-server] Using versionCheckHook
1358.60 s
[bash-language-server] Phase: unpackPhase
1358.60 s
[bash-language-server] unpacking source archive /nix/store/lxydhrakpk9ccbjzavdgm3f3imkypnw2-source
1358.64 s
[bash-language-server] source root is source
1358.64 s
[bash-language-server] Phase: patchPhase
1358.65 s
[bash-language-server] Phase: updateAutotoolsGnuConfigScriptsPhase
1358.66 s
[bash-language-server] Phase: configurePhase
1358.67 s
[bash-language-server] no configure script, doing nothing
1358.67 s
[bash-language-server] Executing pnpmConfigHook
1359.10 s
[bash-language-server] Found 'pnpm' with version '10.28.0'
1359.10 s
[bash-language-server] Using fetcherVersion: 3
1359.10 s
[bash-language-server] Configuring pnpm store
1359.49 s
[bash-language-server] /build /build/source
1359.79 s
[bash-language-server] /build/source
1360.35 s
[bash-language-server] Installing dependencies
1360.69 s
[bash-language-server] Lockfile is up to date, resolution step is skipped
1360.73 s
[bash-language-server] Progress: resolved 1 , reused 0 , downloaded 0 , added 0
1360.79 s
[bash-language-server] . | +416
1360.79 s
[bash-language-server] Progress: resolved 1 , reused 0 , downloaded 0 , added 0
1360.93 s
[bash-language-server] Progress: resolved 416 , reused 411 , downloaded 0 , added 4
1361.13 s
[bash-language-server] Progress: resolved 416 , reused 416 , downloaded 0 , added 307
1361.30 s
[bash-language-server] Progress: resolved 416 , reused 416 , downloaded 0 , added 416 , done
1361.53 s
[bash-language-server] Done in 1.1s using pnpm v10.28.0
1361.57 s
[bash-language-server] Patching scripts
1361.57 s
[bash-language-server] patching script interpreter paths in node_modules/@types node_modules/@typescript-eslint node_modules/cross-spawn node_modules/eslint node_modules/eslint-config-prettier node_modules/eslint-plugin-jest node_modules/eslint-plugin-prettier node_modules/eslint-plugin-simple-import-sort node_modules/eslint-plugin-sort-class-members node_modules/jest node_modules/prettier node_modules/ts-jest node_modules/typescript node_modules/vscode-languageserver node_modules/vscode-languageserver-textdocument node_modules/.bin node_modules/.modules.yaml node_modules/.pnpm node_modules/.pnpm-workspace-state-v1.json
1361.58 s
[bash-language-server] node_modules/.bin/prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.60 s
[bash-language-server] node_modules/.bin/installServerIntoExtension: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.61 s
[bash-language-server] node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.62 s
[bash-language-server] node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.63 s
[bash-language-server] node_modules/.bin/ts-jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.64 s
[bash-language-server] node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.65 s
[bash-language-server] node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.66 s
[bash-language-server] node_modules/.bin/eslint-config-prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.67 s
[bash-language-server] node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.69 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.6.3/node_modules/@typescript-eslint/typescript-estree/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.70 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.6.3/node_modules/@typescript-eslint/typescript-estree/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.71 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.6.3/node_modules/@typescript-eslint/typescript-estree/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.72 s
[bash-language-server] node_modules/.pnpm/import-local@3.1.0/node_modules/import-local/fixtures/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.73 s
[bash-language-server] node_modules/.pnpm/make-dir@3.1.0/node_modules/make-dir/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.74 s
[bash-language-server] node_modules/.pnpm/vscode-languageserver@8.0.2/node_modules/vscode-languageserver/bin/installServerIntoExtension: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.75 s
[bash-language-server] node_modules/.pnpm/@babel+core@7.22.6/node_modules/@babel/core/node_modules/.bin/json5: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.76 s
[bash-language-server] node_modules/.pnpm/@babel+core@7.22.6/node_modules/@babel/core/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.77 s
[bash-language-server] node_modules/.pnpm/@babel+core@7.22.6/node_modules/@babel/core/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.79 s
[bash-language-server] node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.9.0/node_modules/acorn-jsx/node_modules/.bin/acorn: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.80 s
[bash-language-server] node_modules/.pnpm/ejs@3.1.10/node_modules/ejs/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.81 s
[bash-language-server] node_modules/.pnpm/ejs@3.1.10/node_modules/ejs/node_modules/.bin/jake: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.82 s
[bash-language-server] node_modules/.pnpm/prettier@2.8.8/node_modules/prettier/bin-prettier.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.83 s
[bash-language-server] node_modules/.pnpm/@types+babel__core@7.20.1/node_modules/@types/babel__core/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.85 s
[bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@6.0.0/node_modules/istanbul-lib-instrument/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.86 s
[bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@6.0.0/node_modules/istanbul-lib-instrument/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.87 s
[bash-language-server] node_modules/.pnpm/@babel+template@7.22.15/node_modules/@babel/template/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.88 s
[bash-language-server] node_modules/.pnpm/semver@7.7.1/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.89 s
[bash-language-server] node_modules/.pnpm/ts-api-utils@1.3.0_typescript@5.6.3/node_modules/ts-api-utils/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.90 s
[bash-language-server] node_modules/.pnpm/ts-api-utils@1.3.0_typescript@5.6.3/node_modules/ts-api-utils/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.91 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-sort-class-members@1.21.0_eslint@8.57.1/node_modules/eslint-plugin-sort-class-members/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.92 s
[bash-language-server] node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsserver: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.93 s
[bash-language-server] node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/bin/tsc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.95 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-jest@28.11.0_@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+p_bba564ecab3f9dda53acf7b3e4516a01/node_modules/eslint-plugin-jest/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.96 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-jest@28.11.0_@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+p_bba564ecab3f9dda53acf7b3e4516a01/node_modules/eslint-plugin-jest/node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.97 s
[bash-language-server] node_modules/.pnpm/@babel+parser@7.22.6/node_modules/@babel/parser/bin/babel-parser.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1361.98 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+type-utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/type-utils/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1361.99 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+type-utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/type-utils/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.00 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+type-utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/type-utils/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.01 s
[bash-language-server] node_modules/.pnpm/jake@10.9.2/node_modules/jake/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.02 s
[bash-language-server] node_modules/.pnpm/jake@10.9.2/node_modules/jake/bin/bash_completion.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/bash"
1362.03 s
[bash-language-server] node_modules/.pnpm/which@2.0.2/node_modules/which/bin/node-which: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.04 s
[bash-language-server] node_modules/.pnpm/@babel+helper-compilation-targets@7.22.6_@babel+core@7.22.6/node_modules/@babel/helper-compilation-targets/node_modules/.bin/browserslist: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.05 s
[bash-language-server] node_modules/.pnpm/@babel+helper-compilation-targets@7.22.6_@babel+core@7.22.6/node_modules/@babel/helper-compilation-targets/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.06 s
[bash-language-server] node_modules/.pnpm/@babel+parser@7.23.0/node_modules/@babel/parser/bin/babel-parser.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.07 s
[bash-language-server] node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/bin/eslint.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.08 s
[bash-language-server] node_modules/.pnpm/eslint@8.57.1/node_modules/eslint/node_modules/.bin/js-yaml: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.09 s
[bash-language-server] node_modules/.pnpm/jest-snapshot@29.7.0/node_modules/jest-snapshot/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.10 s
[bash-language-server] node_modules/.pnpm/jsesc@2.5.2/node_modules/jsesc/bin/jsesc: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.11 s
[bash-language-server] node_modules/.pnpm/exit@0.1.2/node_modules/exit/test/fixtures/create-files.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/bash"
1362.12 s
[bash-language-server] node_modules/.pnpm/acorn@8.9.0/node_modules/acorn/bin/acorn: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.13 s
[bash-language-server] node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.14 s
[bash-language-server] node_modules/.pnpm/json5@2.2.3/node_modules/json5/lib/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.15 s
[bash-language-server] node_modules/.pnpm/semver@6.3.1/node_modules/semver/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.16 s
[bash-language-server] node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/node_modules/.bin/node-which: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.17 s
[bash-language-server] node_modules/.pnpm/jest@29.7.0_@types+node@18.19.86/node_modules/jest/bin/jest.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.18 s
[bash-language-server] node_modules/.pnpm/jest@29.7.0_@types+node@18.19.86/node_modules/jest/node_modules/.bin/import-local-fixture: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.19 s
[bash-language-server] node_modules/.pnpm/jest@29.7.0_@types+node@18.19.86/node_modules/jest/node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.20 s
[bash-language-server] node_modules/.pnpm/jest-resolve@29.7.0/node_modules/jest-resolve/node_modules/.bin/resolve: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.21 s
[bash-language-server] node_modules/.pnpm/espree@9.6.1/node_modules/espree/node_modules/.bin/acorn: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.22 s
[bash-language-server] node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@8.57.1/node_modules/eslint-config-prettier/bin/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.23 s
[bash-language-server] node_modules/.pnpm/eslint-config-prettier@9.1.0_eslint@8.57.1/node_modules/eslint-config-prettier/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.24 s
[bash-language-server] node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@8.57.1/node_modules/@eslint-community/eslint-utils/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.25 s
[bash-language-server] node_modules/.pnpm/rimraf@3.0.2/node_modules/rimraf/bin.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.26 s
[bash-language-server] node_modules/.pnpm/resolve@1.22.2/node_modules/resolve/bin/resolve: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.27 s
[bash-language-server] node_modules/.pnpm/browserslist@4.21.9/node_modules/browserslist/node_modules/.bin/update-browserslist-db: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.28 s
[bash-language-server] node_modules/.pnpm/browserslist@4.21.9/node_modules/browserslist/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.29 s
[bash-language-server] node_modules/.pnpm/@eslint+eslintrc@2.1.4/node_modules/@eslint/eslintrc/node_modules/.bin/js-yaml: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.30 s
[bash-language-server] node_modules/.pnpm/@babel+template@7.22.5/node_modules/@babel/template/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.31 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@9.1.0_eslint@8.57.1__eslint@8.57.1_prettier@2.8.8/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.32 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@9.1.0_eslint@8.57.1__eslint@8.57.1_prettier@2.8.8/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.33 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@9.1.0_eslint@8.57.1__eslint@8.57.1_prettier@2.8.8/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.34 s
[bash-language-server] node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml/bin/js-yaml.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.35 s
[bash-language-server] node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml/node_modules/.bin/esparse: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.36 s
[bash-language-server] node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml/node_modules/.bin/esvalidate: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.37 s
[bash-language-server] node_modules/.pnpm/eslint-plugin-simple-import-sort@12.1.1_eslint@8.57.1/node_modules/eslint-plugin-simple-import-sort/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.38 s
[bash-language-server] node_modules/.pnpm/create-jest@29.7.0_@types+node@18.19.86/node_modules/create-jest/bin/create-jest.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.39 s
[bash-language-server] node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.19.86/node_modules/jest-cli/bin/jest.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.40 s
[bash-language-server] node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.19.86/node_modules/jest-cli/node_modules/.bin/import-local-fixture: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.41 s
[bash-language-server] node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.19.86/node_modules/jest-cli/node_modules/.bin/create-jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.42 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/json5: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.43 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/ejs: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.44 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.45 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.46 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/jest: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.47 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.48 s
[bash-language-server] node_modules/.pnpm/ts-jest@29.3.2_@babel+core@7.22.6_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@_d88d08811041576873e02318200604f4/node_modules/ts-jest/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.49 s
[bash-language-server] node_modules/.pnpm/flat-cache@3.0.4/node_modules/flat-cache/node_modules/.bin/rimraf: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.50 s
[bash-language-server] node_modules/.pnpm/esprima@4.0.1/node_modules/esprima/bin/esparse.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.51 s
[bash-language-server] node_modules/.pnpm/esprima@4.0.1/node_modules/esprima/bin/esvalidate.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.52 s
[bash-language-server] node_modules/.pnpm/@babel+generator@7.23.0/node_modules/@babel/generator/node_modules/.bin/jsesc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.53 s
[bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@5.2.1/node_modules/istanbul-lib-instrument/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.54 s
[bash-language-server] node_modules/.pnpm/istanbul-lib-instrument@5.2.1/node_modules/istanbul-lib-instrument/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.55 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+parser@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/parser/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.56 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+parser@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/parser/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.57 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+parser@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/parser/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.58 s
[bash-language-server] node_modules/.pnpm/@babel+generator@7.22.5/node_modules/@babel/generator/node_modules/.bin/jsesc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.59 s
[bash-language-server] node_modules/.pnpm/editorconfig@2.0.1/node_modules/editorconfig/bin/editorconfig: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.60 s
[bash-language-server] node_modules/.pnpm/editorconfig@2.0.1/node_modules/editorconfig/node_modules/.bin/semver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.61 s
[bash-language-server] node_modules/.pnpm/@istanbuljs+load-nyc-config@1.1.0/node_modules/@istanbuljs/load-nyc-config/node_modules/.bin/js-yaml: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.62 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@8.57.1_typescript@5.6.3/node_modules/@typescript-eslint/utils/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.63 s
[bash-language-server] node_modules/.pnpm/@nicolo-ribaudo+semver-v6@6.3.3/node_modules/@nicolo-ribaudo/semver-v6/bin/semver.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.64 s
[bash-language-server] node_modules/.pnpm/update-browserslist-db@1.0.11_browserslist@4.21.9/node_modules/update-browserslist-db/node_modules/.bin/browserslist: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.65 s
[bash-language-server] node_modules/.pnpm/update-browserslist-db@1.0.11_browserslist@4.21.9/node_modules/update-browserslist-db/cli.js: interpreter directive changed from "#!/usr/bin/env node" to "/nix/store/31sh8fzcbg4sjahp3zj002j0ca8sfvvr-nodejs-22.22.0/bin/node"
1362.66 s
[bash-language-server] node_modules/.pnpm/@babel+traverse@7.23.2/node_modules/@babel/traverse/node_modules/.bin/parser: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.67 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+parser@7.18.0_eslint@8.57.1__e6014347be2ddc1aabad24015a3e65d1/node_modules/@typescript-eslint/eslint-plugin/node_modules/.bin/eslint: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.68 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+parser@7.18.0_eslint@8.57.1__e6014347be2ddc1aabad24015a3e65d1/node_modules/@typescript-eslint/eslint-plugin/node_modules/.bin/tsserver: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.69 s
[bash-language-server] node_modules/.pnpm/@typescript-eslint+eslint-plugin@7.18.0_@typescript-eslint+parser@7.18.0_eslint@8.57.1__e6014347be2ddc1aabad24015a3e65d1/node_modules/@typescript-eslint/eslint-plugin/node_modules/.bin/tsc: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1362.70 s
[bash-language-server] Finished pnpmConfigHook
1362.70 s
[bash-language-server] Phase: buildPhase
1362.95 s
[bash-language-server]
1362.95 s
[bash-language-server] > @ compile /build/source
1362.95 s
[bash-language-server] > tsc -b server
1362.95 s
[bash-language-server]
1364.67 s
[bash-language-server] Phase: installPhase
1364.99 s
[bash-language-server] Lockfile is up to date, resolution step is skipped
1365.02 s
[bash-language-server] Already up to date
1365.25 s
[bash-language-server]
1365.25 s
[bash-language-server] devDependencies:
1365.25 s
[bash-language-server] - @types/jest 29.5.14
1365.25 s
[bash-language-server] - @types/node 18.19.86
1365.25 s
[bash-language-server] - @typescript-eslint/eslint-plugin 7.18.0
1365.25 s
[bash-language-server] - @typescript-eslint/parser 7.18.0
1365.25 s
[bash-language-server] - cross-spawn 7.0.6
1365.25 s
[bash-language-server] - eslint 8.57.1
1365.25 s
[bash-language-server] - eslint-config-prettier 9.1.0
1365.25 s
[bash-language-server] - eslint-plugin-jest 28.11.0
1365.25 s
[bash-language-server] - eslint-plugin-prettier 4.2.1
1365.25 s
[bash-language-server] - eslint-plugin-simple-import-sort 12.1.1
1365.25 s
[bash-language-server] - eslint-plugin-sort-class-members 1.21.0
1365.25 s
[bash-language-server] - jest 29.7.0
1365.25 s
[bash-language-server] - prettier 2.8.8
1365.25 s
[bash-language-server] - ts-jest 29.3.2
1365.25 s
[bash-language-server] - typescript 5.6.3
1365.25 s
[bash-language-server] - vscode-languageserver 8.0.2
1365.25 s
[bash-language-server] - vscode-languageserver-textdocument 1.0.12
1365.25 s
[bash-language-server]
1365.44 s
[bash-language-server] Phase: fixupPhase
1365.46 s
[bash-language-server] shrinking RPATHs of ELF executables and libraries in /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
1365.46 s
[bash-language-server] shrinking /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/bin/bash-language-server
1365.58 s
[bash-language-server] checking for references to /build/ in /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0...
1365.73 s
[bash-language-server] patching script interpreter paths in /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
1365.75 s
[bash-language-server] /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/lib/bash-language-server/server/node_modules/.bin/installServerIntoExtension: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1365.80 s
[bash-language-server] /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/lib/bash-language-server/server/node_modules/.bin/editorconfig: interpreter directive changed from "#!/bin/sh" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/sh"
1365.80 s
[bash-language-server] /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/lib/bash-language-server/server/src/get-options.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/6ph0zypyfc09fw6hlc1ygjvk2hv4j9vd-bash-5.3p3/bin/bash"
1366.15 s
[bash-language-server] Phase: installCheckPhase
1366.15 s
[bash-language-server] Executing versionCheckPhase
1366.35 s
[bash-language-server] Did not find version 5.6.0 in the output of the command /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/bin/bash-language-server --help
1366.35 s
[bash-language-server] Usage:
1366.35 s
[bash-language-server] bash-language-server start Start listening on stdin/stdout
1366.35 s
[bash-language-server] bash-language-server -h, --help Display this help and exit
1366.35 s
[bash-language-server] bash-language-server -v, --version Print the version and exit
1366.35 s
[bash-language-server]
1366.35 s
[bash-language-server] Environment variables:
1366.35 s
[bash-language-server] BASH_IDE_LOG_LEVEL Set the log level (default: info)
1366.35 s
[bash-language-server]
1366.35 s
[bash-language-server] Further documentation: https://github.com/bash-lsp/bash-language-server
1366.54 s
[bash-language-server] Successfully managed to find version 5.6.0 in the output of the command /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0/bin/bash-language-server --version
1366.54 s
[bash-language-server] 5.6.0
1366.54 s
[bash-language-server] Finished versionCheckPhase
1366.54 s
[bash-language-server] no Makefile or custom installCheckPhase, doing nothing
1366.92 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
1367.32 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
1367.34 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0
1367.38 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1367.39 s
[post-build-hook] copying 1 paths...
1367.39 s
[post-build-hook] copying path '/nix/store/fcs2clcrs5mnyacfz6zw1npry66gqw0r-bash-language-server-5.6.0' to 'https://cache.nix-ci.com'...
1369.00 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1369.58 s
[post-build-hook] copying 0 paths...
1369.60 s
Progress: 54 of 57 built, 771 of 771 downloaded from cache
1369.67 s
Building project-manager-path-for-duoids
1369.76 s
[project-manager-path-for-duoids] created 346 symlinks in user environment
1369.84 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/2l7xv6cqmw4pv1vy3g9ga9p126yja5cj-project-manager-path-for-duoids
1370.24 s
[post-build-hook] Nothing to push - all store paths are already on Cachix.
1370.26 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/2l7xv6cqmw4pv1vy3g9ga9p126yja5cj-project-manager-path-for-duoids
1370.31 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1370.37 s
[post-build-hook] copying 0 paths...
1370.42 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1370.68 s
[post-build-hook] copying 0 paths...
1370.75 s
Progress: 55 of 57 built, 771 of 771 downloaded from cache
1370.89 s
Building ghc-shell-for-packages
1371.92 s
[post-build-hook] Uploading to cachix cache "sellout": /nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0
1372.79 s
[post-build-hook] Pushing 1 paths (795 are already present) using zstd to cache sellout ⏳
1372.79 s
[post-build-hook]
1373.22 s
[post-build-hook] Pushing /nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0 (336.00 B)
1374.11 s
[post-build-hook]
1374.11 s
[post-build-hook] All done.
1374.13 s
[post-build-hook] Uploading to the NixCI cache: /nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0
1374.18 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1374.23 s
[post-build-hook] copying 1 paths...
1374.23 s
[post-build-hook] copying path '/nix/store/alqhbkhfjib4nv62gpx79wfca0kh2blb-ghc-shell-for-packages-0' to 'https://cache.nix-ci.com'...
1374.43 s
[post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
1374.77 s
[post-build-hook] copying 1 paths...
1374.77 s
[post-build-hook] copying path '/nix/store/qm8ibm6d12dd5c4qv1km399azs1sncx2-ghc-shell-for-packages-0.drv' to 'https://cache.nix-ci.com'...
1374.93 s
Progress: 56 of 57 built, 771 of 771 downloaded from cache