summaryrefslogtreecommitdiff
path: root/packages/sundials
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-03-11 14:21:31 +0000
committerDominic Steinitz <dominic@steinitz.org>2018-03-11 14:21:31 +0000
commita22963fa83156b76dd73777b7044897eed50e3bc (patch)
tree325c1f1d19bb0764290650770733e6bf8db171f8 /packages/sundials
parentd83b17190029c11e3ab8b504e5cdc917f5863120 (diff)
The start of an hmatrix interface to sundials
Diffstat (limited to 'packages/sundials')
-rw-r--r--packages/sundials/MyMain.c19
-rw-r--r--packages/sundials/src/Test.hs164
-rw-r--r--packages/sundials/src/Types.hs44
-rw-r--r--packages/sundials/src/Types2.hs10658
-rw-r--r--packages/sundials/src/gsl-ode.hs152
-rw-r--r--packages/sundials/src/helpers.c37
-rw-r--r--packages/sundials/src/helpers.h1
7 files changed, 11075 insertions, 0 deletions
diff --git a/packages/sundials/MyMain.c b/packages/sundials/MyMain.c
new file mode 100644
index 0000000..1a7f579
--- /dev/null
+++ b/packages/sundials/MyMain.c
@@ -0,0 +1,19 @@
1#include <stdio.h>
2#include <math.h>
3#include <arkode/arkode.h> /* prototypes for ARKODE fcts., consts. */
4#include <nvector/nvector_serial.h> /* serial N_Vector types, fcts., macros */
5#include <sunmatrix/sunmatrix_dense.h> /* access to dense SUNMatrix */
6#include <sunlinsol/sunlinsol_dense.h> /* access to dense SUNLinearSolver */
7#include <arkode/arkode_direct.h> /* access to ARKDls interface */
8#include <sundials/sundials_types.h> /* definition of type realtype */
9#include <sundials/sundials_math.h>
10
11#include "src/helpers.h"
12
13int main () {
14 sunindextype NEQ = 1; /* number of dependent vars. */
15 N_Vector y = NULL; /* empty vector for storing solution */
16 y = N_VNew_Serial(NEQ); /* Create serial vector for solution */
17 if (check_flag((void *)y, "N_VNew_Serial", 0)) return 1;
18 return 0;
19}
diff --git a/packages/sundials/src/Test.hs b/packages/sundials/src/Test.hs
new file mode 100644
index 0000000..a99582a
--- /dev/null
+++ b/packages/sundials/src/Test.hs
@@ -0,0 +1,164 @@
1{-# LANGUAGE QuasiQuotes #-}
2{-# LANGUAGE TemplateHaskell #-}
3{-# LANGUAGE MultiWayIf #-}
4{-# LANGUAGE OverloadedStrings #-}
5
6import qualified Language.C.Inline as C
7import qualified Language.C.Inline.Unsafe as CU
8import Data.Monoid ((<>))
9import Foreign.C.Types
10import Foreign.Ptr (Ptr)
11import Foreign.Marshal.Array
12import qualified Data.Vector.Storable as V
13
14import Data.Coerce (coerce)
15import Data.Monoid ((<>))
16import qualified Data.Vector.Storable as V
17import qualified Data.Vector.Storable.Mutable as VM
18import Foreign.C.Types
19import Foreign.ForeignPtr (newForeignPtr_)
20import Foreign.Ptr (Ptr)
21import Foreign.Storable (Storable)
22import qualified Language.C.Inline as C
23import qualified Language.C.Inline.Unsafe as CU
24import System.IO.Unsafe (unsafePerformIO)
25
26import qualified Language.Haskell.TH as TH
27import qualified Language.C.Types as CT
28import qualified Data.Map as Map
29import Language.C.Inline.Context
30
31C.context (C.baseCtx <> C.vecCtx <> C.funCtx)
32
33-- C includes
34C.include "<stdio.h>"
35C.include "<math.h>"
36C.include "<arkode/arkode.h>" -- prototypes for ARKODE fcts., consts.
37C.include "<nvector/nvector_serial.h>" -- serial N_Vector types, fcts., macros
38C.include "<sunmatrix/sunmatrix_dense.h>" -- access to dense SUNMatrix
39C.include "<sunlinsol/sunlinsol_dense.h>" -- access to dense SUNLinearSolver
40C.include "<arkode/arkode_direct.h>" -- access to ARKDls interface
41C.include "<sundials/sundials_types.h>" -- definition of type realtype
42C.include "<sundials/sundials_math.h>"
43C.include "helpers.h"
44
45-- | Solves a system of ODEs. Every 'V.Vector' involved must be of the
46-- same size.
47-- {-# NOINLINE solveOdeC #-}
48-- solveOdeC
49-- :: (CDouble -> V.Vector CDouble -> V.Vector CDouble)
50-- -- ^ ODE to Solve
51-- -> CDouble
52-- -- ^ Start
53-- -> V.Vector CDouble
54-- -- ^ Solution at start point
55-- -> CDouble
56-- -- ^ End
57-- -> Either String (V.Vector CDouble)
58-- -- ^ Solution at end point, or error.
59-- solveOdeC fun x0 f0 xend = unsafePerformIO $ do
60-- let dim = V.length f0
61-- let dim_c = fromIntegral dim -- This is in CInt
62-- -- Convert the function to something of the right type to C.
63-- let funIO x y f _ptr = do
64-- -- Convert the pointer we get from C (y) to a vector, and then
65-- -- apply the user-supplied function.
66-- fImm <- fun x <$> vectorFromC dim y
67-- -- Fill in the provided pointer with the resulting vector.
68-- vectorToC fImm dim f
69-- -- Unsafe since the function will be called many times.
70-- [CU.exp| int{ GSL_SUCCESS } |]
71-- -- Create a mutable vector from the initial solution. This will be
72-- -- passed to the ODE solving function provided by GSL, and will
73-- -- contain the final solution.
74-- fMut <- V.thaw f0
75-- res <- [C.block| int {
76-- gsl_odeiv2_system sys = {
77-- $fun:(int (* funIO) (double t, const double y[], double dydt[], void * params)),
78-- // The ODE to solve, converted to function pointer using the `fun`
79-- // anti-quoter
80-- NULL, // We don't provide a Jacobian
81-- $(int dim_c), // The dimension
82-- NULL // We don't need the parameter pointer
83-- };
84-- // Create the driver, using some sensible values for the stepping
85-- // function and the tolerances
86-- gsl_odeiv2_driver *d = gsl_odeiv2_driver_alloc_y_new (
87-- &sys, gsl_odeiv2_step_rk8pd, 1e-6, 1e-6, 0.0);
88-- // Finally, apply the driver.
89-- int status = gsl_odeiv2_driver_apply(
90-- d, &$(double x0), $(double xend), $vec-ptr:(double *fMut));
91-- // Free the driver
92-- gsl_odeiv2_driver_free(d);
93-- return status;
94-- } |]
95-- -- Check the error code
96-- maxSteps <- [C.exp| int{ GSL_EMAXITER } |]
97-- smallStep <- [C.exp| int{ GSL_ENOPROG } |]
98-- good <- [C.exp| int{ GSL_SUCCESS } |]
99-- if | res == good -> Right <$> V.freeze fMut
100-- | res == maxSteps -> return $ Left "Too many steps"
101-- | res == smallStep -> return $ Left "Step size dropped below minimum allowed size"
102-- | otherwise -> return $ Left $ "Unknown error code " ++ show res
103
104-- -- Utils
105
106-- vectorFromC :: Storable a => Int -> Ptr a -> IO (V.Vector a)
107-- vectorFromC len ptr = do
108-- ptr' <- newForeignPtr_ ptr
109-- V.freeze $ VM.unsafeFromForeignPtr0 ptr' len
110
111-- vectorToC :: Storable a => V.Vector a -> Int -> Ptr a -> IO ()
112-- vectorToC vec len ptr = do
113-- ptr' <- newForeignPtr_ ptr
114-- V.copy (VM.unsafeFromForeignPtr0 ptr' len) vec
115
116
117-- /* Check function return value...
118-- opt == 0 means SUNDIALS function allocates memory so check if
119-- returned NULL pointer
120-- opt == 1 means SUNDIALS function returns a flag so check if
121-- flag >= 0
122-- opt == 2 means function allocates memory so check if returned
123-- NULL pointer
124-- */
125-- static int check_flag(void *flagvalue, const char *funcname, int opt)
126-- {
127-- int *errflag;
128
129-- /* Check if SUNDIALS function returned NULL pointer - no memory allocated */
130-- if (opt == 0 && flagvalue == NULL) {
131-- fprintf(stderr, "\nSUNDIALS_ERROR: %s() failed - returned NULL pointer\n\n",
132-- funcname);
133-- return 1; }
134
135-- /* Check if flag < 0 */
136-- else if (opt == 1) {
137-- errflag = (int *) flagvalue;
138-- if (*errflag < 0) {
139-- fprintf(stderr, "\nSUNDIALS_ERROR: %s() failed with flag = %d\n\n",
140-- funcname, *errflag);
141-- return 1; }}
142
143-- /* Check if function returned NULL pointer - no memory allocated */
144-- else if (opt == 2 && flagvalue == NULL) {
145-- fprintf(stderr, "\nMEMORY_ERROR: %s() failed - returned NULL pointer\n\n",
146-- funcname);
147-- return 1; }
148
149-- return 0;
150-- }
151
152main = do
153 res <- [C.block| int { sunindextype NEQ = 1; /* number of dependent vars. */
154 N_Vector y = NULL; /* empty vector for storing solution */
155 void *arkode_mem = NULL; /* empty ARKode memory structure */
156 y = N_VNew_Serial(NEQ); /* Create serial vector for solution */
157 if (check_flag((void *)y, "N_VNew_Serial", 0)) return 1;
158
159 N_VConst(0.0, y); /* Specify initial condition */
160 arkode_mem = ARKodeCreate(); /* Create the solver memory */
161 if (check_flag((void *)arkode_mem, "ARKodeCreate", 0)) return 1;
162 return 0;
163 } |]
164 putStrLn $ show res
diff --git a/packages/sundials/src/Types.hs b/packages/sundials/src/Types.hs
new file mode 100644
index 0000000..355850d
--- /dev/null
+++ b/packages/sundials/src/Types.hs
@@ -0,0 +1,44 @@
1{-# LANGUAGE QuasiQuotes #-}
2{-# LANGUAGE TemplateHaskell #-}
3{-# LANGUAGE MultiWayIf #-}
4{-# LANGUAGE OverloadedStrings #-}
5
6module Types where
7
8import qualified Language.C.Inline as C
9import qualified Language.C.Inline.Unsafe as CU
10import Data.Monoid ((<>))
11import Foreign.C.Types
12import Foreign.Ptr (Ptr)
13import Foreign.Marshal.Array
14import qualified Data.Vector.Storable as V
15
16import Data.Coerce (coerce)
17import Data.Monoid ((<>))
18import qualified Data.Vector.Storable as V
19import qualified Data.Vector.Storable.Mutable as VM
20import Foreign.C.Types
21import Foreign.ForeignPtr (newForeignPtr_)
22import Foreign.Ptr (Ptr)
23import Foreign.Storable (Storable)
24import qualified Language.C.Inline as C
25import qualified Language.C.Inline.Unsafe as CU
26import System.IO.Unsafe (unsafePerformIO)
27
28import qualified Language.Haskell.TH as TH
29import qualified Language.C.Types as CT
30import qualified Data.Map as Map
31import Language.C.Inline.Context
32
33
34-- This is a lie!!!
35type SunIndexType = CLong
36
37sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
38sunTypesTable = Map.fromList
39 [
40 (CT.TypeName "sunindextype", [t| SunIndexType |] )
41 ]
42
43sunctx = mempty {ctxTypesTable = sunTypesTable}
44
diff --git a/packages/sundials/src/Types2.hs b/packages/sundials/src/Types2.hs
new file mode 100644
index 0000000..84a46ee
--- /dev/null
+++ b/packages/sundials/src/Types2.hs
@@ -0,0 +1,10658 @@
1bash-3.2$ pwd
2/Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators
3bash-3.2$ BlogLiterately Notes.lhs
4BlogLiterately: CouldNotFindBibFile "DynSys.bib"
5bash-3.2$ BlogLiterately Notes.lhs
6[WARNING] Could not convert TeX math '
7 y_{k+1}=y_k+hf(t+\tfrac h2,\tfrac12(y_k+y_{k+1}))
8 ', rendering as TeX
9[WARNING] Could not convert TeX math '(t+\tfrac h2,y_{k+\frac12})', rendering as TeX
10[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
11<h1 id="introduction">Introduction</h1>
12<p>For the midpoint method you approximate All approximations with an error <span class="math inline"><em>O</em>(<em>h</em><sup>2</sup>)</span></p>
13<p>This gives the method <br /><span class="math display">$$
14y_{k+1}=y_k+hf(t+\tfrac h2,\tfrac12(y_k+y_{k+1}))
15$$</span><br /> This can be decomposed into first one step of the implicit Euler method and then one of the explicit Euler method, both with half the step size where <span class="math inline">$(t+\tfrac h2,y_{k+\frac12})$</span> is the midpoint of the segment connecting the iteration points with <span class="math inline">$y_{k+\frac12}=\frac12(y_k+y_{k+1})$</span></p>
16bash-3.2$ BlogLiterately Notes.lhs
17[WARNING] Could not convert TeX math '
18 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
19 ', rendering as TeX
20[WARNING] Could not convert TeX math '(t+\tfrac h2,y_{k+\frac12})', rendering as TeX
21[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
22<h1 id="introduction">Introduction</h1>
23<p>For the midpoint method you approximate All approximations with an error <span class="math inline"><em>O</em>(<em>h</em><sup>2</sup>)</span></p>
24<p>This gives the method <br /><span class="math display">$$
25y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
26$$</span><br /> This can be decomposed into first one step of the implicit Euler method and then one of the explicit Euler method, both with half the step size where <span class="math inline">$(t+\tfrac h2,y_{k+\frac12})$</span> is the midpoint of the segment connecting the iteration points with <span class="math inline">$y_{k+\frac12}=\frac12(y_k+y_{k+1})$</span></p>
27bash-3.2$ BlogLiterately Notes.lhs
28[WARNING] Could not convert TeX math '
29 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
30 ', rendering as TeX
31[WARNING] Could not convert TeX math '(t+\tfrac h2,y_{k+\frac12})', rendering as TeX
32[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
33<h1 id="introduction">Introduction</h1>
34<p>For the midpoint method you approximate All approximations with an error <span class="math inline"><em>O</em>(<em>h</em><sup>2</sup>)</span></p>
35<p>This gives the method <br /><span class="math display">$$
36y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
37$$</span><br /> This can be decomposed into first one step of the implicit Euler method and then one of the explicit Euler method, both with half the step size where <span class="math inline">$(t+\tfrac h2,y_{k+\frac12})$</span> is the midpoint of the segment connecting the iteration points with <span class="math inline">$y_{k+\frac12}=\frac12(y_k+y_{k+1})$</span></p>
38bash-3.2$ BlogLiterately Notes.lhs
39[WARNING] Could not convert TeX math '
40 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
41 ', rendering as TeX
42[WARNING] Could not convert TeX math '(t+\tfrac h2,y_{k+\frac12})', rendering as TeX
43[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
44<h1 id="introduction">Introduction</h1>
45<p>For the midpoint method you approximate All approximations with an error <span class="math inline"><em>O</em>(<em>h</em><sup>2</sup>)</span></p>
46<p>This gives the method <br /><span class="math display">$$
47y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
48$$</span><br /> This can be decomposed into first one step of the implicit Euler method and then one of the explicit Euler method, both with half the step size where <span class="math inline">$(t+\tfrac h2,y_{k+\frac12})$</span> is the midpoint of the segment connecting the iteration points with <span class="math inline">$y_{k+\frac12}=\frac12(y_k+y_{k+1})$</span></p>
49bash-3.2$ BlogLiterately Notes.lhs
50[WARNING] Could not convert TeX math '
51 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
52 ', rendering as TeX
53[WARNING] Could not convert TeX math '(t+\tfrac h2,y_{k+\frac12})', rendering as TeX
54[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
55<h1 id="introduction">Introduction</h1>
56<p>For the midpoint method you approximate All approximations with an error <span class="math inline"><em>O</em>(<em>h</em><sup>2</sup>)</span></p>
57<p>This gives the method <br /><span class="math display">$$
58y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
59$$</span><br /> This can be decomposed into first one step of the implicit Euler method and then one of the explicit Euler method, both with half the step size where <span class="math inline">$(t+\tfrac h2,y_{k+\frac12})$</span> is the midpoint of the segment connecting the iteration points with <span class="math inline">$y_{k+\frac12}=\frac12(y_k+y_{k+1})$</span></p>
60bash-3.2$ BlogLiterately Notes.lhs
61[WARNING] Could not convert TeX math '
62 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
63 ', rendering as TeX
64[WARNING] Could not convert TeX math '(t+\frac h2,y_{k+\frac12})', rendering as TeX
65[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
66<h1 id="introduction">Introduction</h1>
67<p>For the midpoint method you approximate All approximations with an error <span class="math inline"><em>O</em>(<em>h</em><sup>2</sup>)</span></p>
68<p>This gives the method <br /><span class="math display">$$
69y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
70$$</span><br /> This can be decomposed into first one step of the implicit Euler method and then one of the explicit Euler method, both with half the step size where <span class="math inline">$(t+\frac h2,y_{k+\frac12})$</span> is the midpoint of the segment connecting the iteration points with <span class="math inline">$y_{k+\frac12}=\frac12(y_k+y_{k+1})$</span></p>
71bash-3.2$ BlogLiterately Notes.lhs > Notes.htmls
72[WARNING] Could not convert TeX math '
73 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
74 ', rendering as TeX
75[WARNING] Could not convert TeX math '(t+\frac h2,y_{k+\frac12})', rendering as TeX
76[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
77bash-3.2$ BlogLiterately Notes.lhs > Notes.html
78[WARNING] Could not convert TeX math '
79 y_{k+1}=y_k+hf(t+\frac{h}{2},\frac{1}{2}(y_k+y_{k+1}))
80 ', rendering as TeX
81[WARNING] Could not convert TeX math '(t+\frac h2,y_{k+\frac12})', rendering as TeX
82[WARNING] Could not convert TeX math 'y_{k+\frac12}=\frac12(y_k+y_{k+1})', rendering as TeX
83bash-3.2$ pwd
84/Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators
85bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
86bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
87bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
88bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
89bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
90bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
91bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
92bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
93bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
94bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
95bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
96bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
97bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
98bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
99bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
100bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
101bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
102bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
103bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
104bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
105bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
106bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
107bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
108bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
109bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
110bash-3.2$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
111bash-3.2$ pwd
112/Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators
113bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
114error: Nix database directory ‘/nix/var/nix/db’ is not writable: Permission denied
115bash-3.2$ source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
116bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
117error: getting status of ‘/Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators/shell.nix’: No such file or directory
118bash-3.2$ cp ../variational/shell.nix .
119bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
120these derivations will be built:
121 /nix/store/ijkrrqajlh6zci3iy8gcprrm3p6v3g03-ghc-8.2.2-with-packages.drv
122building path(s) ‘/nix/store/648haxfac72x339hnh6pk4r2ln7bz9ks-ghc-8.2.2-with-packages’
123/nix/store/15n2n0f1nn82ddnnzcp983phgncacfy7-mwc-random-0.13.6.0/nix-support:
124propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
125/nix/store/smsj6wjnagibdpq5isd4g31g9wzz3g4s-monad-par-extras-0.3.3/nix-support:
126propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
127/nix/store/li3sjq986x350ffxd9ybn1yb4lyd2yv0-abstract-par-0.3.3/nix-support:
128propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
129/nix/store/277ndipb72418x8pbplrbf6iad7pjsnf-abstract-deque-0.3/nix-support:
130propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
131/nix/store/nr813qc3flsplicn8f1vnybwn45pyfbk-monad-par-0.3.4.8/nix-support:
132propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
133/nix/store/dy67ilqpixcvgfk5fb9gg4yazqa83j7n-vector-th-unbox-0.2.1.6/nix-support:
134propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
135/nix/store/bbbhjj205rxnkxgbj9zf3x1npaj45r28-math-functions-0.2.1.0/nix-support:
136propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
137/nix/store/cgmwpchalv177r5if2wx6ia8qg0vwi8z-statistics-0.14.0.2/nix-support:
138propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
139/nix/store/kj3nyzcci6w4mrply90i1s2dxxifklpi-data-default-instances-old-locale-0.0.1/nix-support:
140propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
141/nix/store/0sbiaq1rpqnqa1j8ricg2hqlhigwca1a-data-default-instances-dlist-0.0.1/nix-support:
142propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
143/nix/store/29fkmx51scd0ssmk0zsydq9wpqqfb5n6-data-default-instances-containers-0.0.1/nix-support:
144propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
145/nix/store/a08av7hxmpjg4abvwgs3pmpa309qp13j-data-default-0.7.1.1/nix-support:
146propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
147/nix/store/1m7jffvgznz98l417wkphav3ygw7cagp-plots-0.1.0.2/nix-support:
148propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
149/nix/store/pzwmpn003q81b0qr9sp0xgv7r27nmy7w-th-reify-many-0.1.8/nix-support:
150propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
151/nix/store/rxpm4l4c5gh1a9x4d4s0qq0gafqicggk-th-lift-instances-0.1.11/nix-support:
152propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
153/nix/store/5ss00f1yc3kfh5nr7jl6cp6kjb7gqvxl-th-orphans-0.13.5/nix-support:
154propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
155/nix/store/xrvv444m45ix8qv5ycaz55zhwk7k145h-th-lift-0.7.8/nix-support:
156propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
157/nix/store/yrf2598spzshynk7kx7xii7203nyf6my-th-expand-syns-0.4.4.0/nix-support:
158propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
159/nix/store/k2ghf3dayzdn6sbjmp5jimw7g3xdrjx8-th-desugar-1.7/nix-support:
160propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
161/nix/store/lpqpjnhvvbbcyyvpamy4kz5qvaq4mj9x-singletons-2.3.1/nix-support:
162propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
163/nix/store/j9j526hl75203rqhmcpr9s6kj7kdp0fb-setenv-0.1.1.3/nix-support:
164propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
165/nix/store/ybzmz83966rmhy01njjiv75i3865kgfy-charset-0.3.7.1/nix-support:
166propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
167/nix/store/324g1lwr8cd3xjb5w8vp2dblxbz5ssq8-parsers-0.12.8/nix-support:
168propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
169/nix/store/766mm5vv4f13zl7llp8nvhshhim426x0-parsec-3.1.13.0/nix-support:
170propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
171/nix/store/knyswh3qdnxq31zgm0sv1nfs0b3v7rv7-inline-c-0.6.0.5/nix-support:
172propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
173/nix/store/ngkbic1r82yscxwncbdcxsjqg0jx2pvs-uuid-types-1.0.3/nix-support:
174propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
175/nix/store/64ldaj1ckk9rd1p505yas1axzcshqz3g-time-locale-compat-0.1.1.3/nix-support:
176propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
177/nix/store/y5788n82yrr1isbm0r66xz8r84dakjnp-base-compat-0.9.3/nix-support:
178propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
179/nix/store/ggzc52rdcj3d8z57b7jz83v2ngrmr6sb-attoparsec-0.13.2.2/nix-support:
180propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
181/nix/store/0nwd69235bq7370253fhj2zfscclkgaj-aeson-1.2.4.0/nix-support:
182propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
183/nix/store/ilccfmai8d53zmjsglzx65dql8mwzah7-inline-r-0.9.1/nix-support:
184propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
185/nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/nix-support:
186propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
187/nix/store/niwli3l6pyrhr4c2s3a8kzgm3qp5l53b-hmatrix-gsl-0.18.0.1/nix-support:
188propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
189/nix/store/yygvdip59999m8vvnpm08pch4sb3s4wq-random-1.1/nix-support:
190propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
191/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/nix-support:
192propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
193/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/package.conf.d:
194hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.conf: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/package.conf.d/hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.conf
195/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2:
196libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib
197/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal:
198IO.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/IO.dyn_hi
199Numeric.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Numeric.hi
200Static.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Static.hi
201Sparse.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Sparse.hi
202ST.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/ST.dyn_hi
203Static.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Static.dyn_hi
204Container.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Container.hi
205CG.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/CG.dyn_hi
206Sparse.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Sparse.dyn_hi
207Conversion.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Conversion.dyn_hi
208LAPACK.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/LAPACK.dyn_hi
209Vectorized.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vectorized.dyn_hi
210Devel.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Devel.dyn_hi
211LAPACK.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/LAPACK.hi
212Modular.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Modular.hi
213Devel.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Devel.hi
214Chain.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Chain.dyn_hi
215Container.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Container.dyn_hi
216Algorithms.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Algorithms.hi
217Convolution.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Convolution.hi
218Vector.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vector.hi
219Vectorized.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vectorized.hi
220Vector.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vector.dyn_hi
221Matrix.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Matrix.dyn_hi
222Algorithms.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Algorithms.dyn_hi
223Random.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Random.dyn_hi
224Matrix.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Matrix.hi
225CG.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/CG.hi
226Util.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Util.dyn_hi
227Numeric.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Numeric.dyn_hi
228Modular.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Modular.dyn_hi
229Random.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Random.hi
230Element.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Element.hi
231Element.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Element.dyn_hi
232Util.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Util.hi
233Chain.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Chain.hi
234Convolution.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Convolution.dyn_hi
235ST.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/ST.hi
236IO.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/IO.hi
237Conversion.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Conversion.hi
238/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric:
239LinearAlgebra.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra.hi
240Vector.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Vector.hi
241Vector.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Vector.dyn_hi
242Matrix.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Matrix.dyn_hi
243Matrix.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Matrix.hi
244/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra:
245Static.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Static.hi
246Static.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Static.dyn_hi
247Devel.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Devel.dyn_hi
248Data.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Data.hi
249Devel.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Devel.hi
250Data.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Data.dyn_hi
251HMatrix.hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/HMatrix.hi
252HMatrix.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/HMatrix.dyn_hi
253/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric:
254LinearAlgebra.dyn_hi: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra.dyn_hi
255/nix/store/l6pwqcnmdrz8iww82h4qxq64q4mzr5nd-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0:
256libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.a: /nix/store/3qgphr7mb5bb9qip9y3rndg8n29ds8gg-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.a
257/nix/store/3q1bfcwxibj7wg2x4ksc13z9d4xycpxf-vector-algorithms-0.7.0.1/nix-support:
258propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
259/nix/store/1ddbfnacrhfaf6kdv67vx9yniafmgxrf-dlist-0.8.0.4/nix-support:
260propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
261/nix/store/4bdwvifj64f02dp1k04hb543ga3pj1f6-Rasterific-0.7.2.1/nix-support:
262propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
263/nix/store/r23rygfr5fx1b5h1gcl6p6l8hq9ipzxl-xml-1.3.14/nix-support:
264propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
265/nix/store/ima3jh950g2pns547c9ipagwlp3ibgpp-FontyFruity-0.5.3.3/nix-support:
266propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
267/nix/store/xbprmkxnzjvlal818sqlpp78f7nd4nc8-file-embed-0.0.10.1/nix-support:
268propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
269/nix/store/q525a7akm9wbr7pkpx1wfm42y5jrlf8r-diagrams-rasterific-1.4/nix-support:
270propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
271/nix/store/vv7zpdnlr0j6012xsbbvp1zwb6dg0lpy-ansi-terminal-0.7.1.1/nix-support:
272propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
273/nix/store/s12mlmf5yf7ifapzwm1zcr2212waxlh8-ansi-wl-pprint-0.6.8.2/nix-support:
274propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
275/nix/store/2j9scs43v3bnnppy42fh20nxllsf9ys7-optparse-applicative-0.14.1.0/nix-support:
276propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
277/nix/store/a1xyc64axlks4vzzwca17r9vl93syby0-zlib-0.6.1.2/nix-support:
278propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
279/nix/store/5kblpllg7za260gw9lqhwyl9nsi9zw6a-JuicyPixels-3.2.9.4/nix-support:
280propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
281/nix/store/x7gv2hcdvnf94wmr3g9pb01ji1nc0abq-intervals-0.8.1/nix-support:
282propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
283/nix/store/a9rcycvyy7hqc2h7aqn346vhyx31nrh7-unix-compat-0.5.0.1/nix-support:
284propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
285/nix/store/xn597v3jffj78z6hwh06hmrd6p08y1h7-hfsevents-0.1.6/nix-support:
286propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
287/nix/store/xwrc07jjivgcamm9dkrjlcami2alhhg5-async-2.1.1.1/nix-support:
288propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
289/nix/store/jbyldf5da8s3rnrw7lcn8nwdc2bmib14-fsnotify-0.2.1.1/nix-support:
290propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
291/nix/store/8yri2ya822p6gllr071ichblg5m6z2p1-newtype-generics-0.5.2.1/nix-support:
292propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
293/nix/store/w23j9avgladciwwgnlkmzzs69ggcga12-monoid-extras-0.4.2/nix-support:
294propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
295/nix/store/91q6nh4sa17bz6jdpqgj8frb9d80lg1p-dual-tree-0.2.1/nix-support:
296propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
297/nix/store/0hfgiqdfcd8lybkkr01pa8x889slj4j9-diagrams-core-1.4.0.1/nix-support:
298propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
299/nix/store/mby8ds6hnb4bhv6zgjizs9jy8ahw2j3h-integer-logarithms-1.0.2/nix-support:
300propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
301/nix/store/s52qq54gignfgrm3m96mbcs8phsc46ki-scientific-0.3.5.2/nix-support:
302propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
303/nix/store/kzs6bpdigfljq6q2g2fy2i369ap8pdxh-cereal-0.5.5.0/nix-support:
304propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
305/nix/store/1ji7f07i7mcz9wddc4q7g30k8wiwyk5c-bytes-0.15.3/nix-support:
306propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
307/nix/store/k7zjzs8aqdc832hp670byx05vkrrppsr-linear-1.20.7/nix-support:
308propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
309/nix/store/52j9zy34bw819k1nkmcrzdnildq9xp84-primitive-0.6.3.0/nix-support:
310propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
311/nix/store/kxkm61jv39nnrx18wwims196nmhgrlav-vector-0.12.0.1/nix-support:
312propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
313/nix/store/5x0b2dppljkkiang16k2z0g7azirqdwy-parallel-3.2.1.1/nix-support:
314propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
315/nix/store/w8bv9kx0czvkh1jsmg8468ga9mr81gcx-adjunctions-4.3/nix-support:
316propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
317/nix/store/6appq81qbzq2wsijb2h8d6g293l94y4b-kan-extensions-5.0.2/nix-support:
318propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
319/nix/store/mik60prqbvrn59yrcxc35sgwbsqbj90k-lens-4.15.4/nix-support:
320propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
321/nix/store/ji4wxy5p5a9bfpvmvvgxgn69w9p6lwky-active-0.2.0.13/nix-support:
322propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
323/nix/store/jypkd6m57ydp6kfwxfcvwki82ha7mj9s-diagrams-lib-1.4.2/nix-support:
324propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
325/nix/store/fnpq0ffjlvq129k2g3slrbvydq4i5c5g-reflection-2.1.3/nix-support:
326propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
327/nix/store/13kgdqmhq0ja11a626jz76p7lsvpi2c4-unordered-containers-0.2.8.0/nix-support:
328propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
329/nix/store/8k7npa3z4g3w9akwlzdb1v2yb7757i33-text-1.2.2.2/nix-support:
330propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
331/nix/store/0d1q5g5xw2j2vk8minsp59jm9n4xxdqj-hashable-1.2.6.1/nix-support:
332propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
333/nix/store/jlzp224q8x02d57rjygqm5l3k1iypcwj-semigroupoids-5.2.1/nix-support:
334propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
335/nix/store/n3j1v5lflc45klpmx83s14gj1j7m08b5-profunctors-5.2.2/nix-support:
336propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
337/nix/store/phvcxml2w4lcb427a1r1p0b19x32byr2-mtl-2.2.1/nix-support:
338propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
339/nix/store/zyz9id7hiajfd6wml0xsprh7203ix51r-exceptions-0.8.3/nix-support:
340propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
341/nix/store/zqq6c3zmbm5jvvjpdv40lh76vk6906qc-th-abstraction-0.2.6.0/nix-support:
342propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
343/nix/store/2cnc7wwld9jgwncis64jgbghia18dwj0-bifunctors-5.5.2/nix-support:
344propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
345/nix/store/3f6sj4yya3mgzyzd77mq1j8w6dny9qpv-free-4.12.4/nix-support:
346propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
347/nix/store/aaq47c891y6q1mmgm5pyllvrglj7yz7p-data-reify-0.6.1/nix-support:
348propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
349/nix/store/h3wrgm6x6595hlc2nhwhw0cr7czffdq6-tagged-0.8.5/nix-support:
350propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
351/nix/store/hnwzqpab4m7wznhwflaw1qiv109krpid-base-orphans-0.6/nix-support:
352propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
353/nix/store/88yyasj8x9jjrcvk614c6d5nh8nkasbn-distributive-0.5.3/nix-support:
354propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
355/nix/store/rhd0av21rvlw1nfp9cn8y0izh6wdz7c5-transformers-compat-0.5.1.4/nix-support:
356propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
357/nix/store/m5744inzifv0vwi9869cql3i5xildyk1-stm-2.4.5.0/nix-support:
358propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
359/nix/store/3sk75i09l81kzxqcxjy2rviyyf6cppkp-StateVar-1.1.0.4/nix-support:
360propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
361/nix/store/31iinn34k0zmw3dlawycsw3laghxwmas-contravariant-1.4.1/nix-support:
362propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
363/nix/store/amq3i7mdm6jpcbc1wna2h13yhcbrrbvk-comonad-5.0.3/nix-support:
364propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
365/nix/store/m0fpjgd4avfjdy543pkfyrnlb3as5l58-ad-4.3.5/nix-support:
366propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
367/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/nix-support:
368propagated-build-inputs: /nix/store/rzjblal4kgvasm7qwcf0d65mh1ajxjy5-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
369Warning: library-dirs: /opt/local/lib/ doesn't exist or isn't a directory
370Warning: dynamic-library-dirs: /opt/local/lib/ doesn't exist or isn't a directory
371Warning: include-dirs: /opt/local/include/ doesn't exist or isn't a directory
372Warning: haddock-interfaces: /nix/store/7jagv5zjaiz2cywccdpn4lvf2h5zf9dv-fail-4.9.0.0/share/doc/x86_64-osx-ghc-8.2.2/fail-4.9.0.0/html/fail.haddock doesn't exist or isn't a file
373Warning: haddock-html: /nix/store/7jagv5zjaiz2cywccdpn4lvf2h5zf9dv-fail-4.9.0.0/share/doc/x86_64-osx-ghc-8.2.2/fail-4.9.0.0/html doesn't exist or isn't a directory
374Warning: haddock-interfaces: /nix/store/5kblpllg7za260gw9lqhwyl9nsi9zw6a-JuicyPixels-3.2.9.4/share/doc/x86_64-osx-ghc-8.2.2/JuicyPixels-3.2.9.4/html/JuicyPixels.haddock doesn't exist or isn't a file
375Warning: haddock-html: /nix/store/5kblpllg7za260gw9lqhwyl9nsi9zw6a-JuicyPixels-3.2.9.4/share/doc/x86_64-osx-ghc-8.2.2/JuicyPixels-3.2.9.4/html doesn't exist or isn't a directory
376Warning: haddock-interfaces: /nix/store/mnq2djh7fbll0sgvvpzcc5qpxks30n10-nats-1.1.2/share/doc/x86_64-osx-ghc-8.2.2/nats-1.1.2/html/nats.haddock doesn't exist or isn't a file
377Warning: haddock-html: /nix/store/mnq2djh7fbll0sgvvpzcc5qpxks30n10-nats-1.1.2/share/doc/x86_64-osx-ghc-8.2.2/nats-1.1.2/html doesn't exist or isn't a directory
378
379[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ ghci
380GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
381Prelude> :l Notes.lhs
382[1 of 1] Compiling Main ( Notes.lhs, interpreted )
383
384Notes.lhs:160:27: error: Variable not in scope: mu
385 |
386160 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
387 | ^^
388Failed, no modules loaded.
389Prelude> :r
390[1 of 1] Compiling Main ( Notes.lhs, interpreted )
391Ok, one module loaded.
392*Main> :r
393[1 of 1] Compiling Main ( Notes.lhs, interpreted )
394
395Notes.lhs:164:5: error:
396 • No instance for (Fractional [a0])
397 arising from the literal ‘1.0e-6’
398 • In the expression: 1.0e-6
399 In an equation for ‘h’: h = 1.0e-6
400 |
401164 | h = 1.0e-6
402 | ^^^^^^
403
404Notes.lhs:166:9: error:
405 • Ambiguous type variable ‘a0’ arising from the literal ‘1.0’
406 prevents the constraint ‘(Fractional a0)’ from being solved.
407 Relevant bindings include y_n0 :: [a0] (bound at Notes.lhs:166:1)
408 Probable fix: use a type annotation to specify what ‘a0’ should be.
409 These potential instances exist:
410 instance Fractional Double -- Defined in ‘GHC.Float’
411 instance Fractional Float -- Defined in ‘GHC.Float’
412 ...plus one instance involving out-of-scope types
413 (use -fprint-potential-instances to see them all)
414 • In the expression: 1.0
415 In the expression: [1.0, 0.0]
416 In an equation for ‘y_n0’: y_n0 = [1.0, 0.0]
417 |
418166 | y_n0 = [1.0, 0.0]
419 | ^^^
420
421Notes.lhs:168:37: error:
422 • No instance for (Num [a0]) arising from a use of ‘*’
423 • In the first argument of ‘(/)’, namely
424 ‘h * f (0.0 + h / 2) (y_n0 + y_n1)’
425 In the second argument of ‘(+)’, namely
426 ‘h * f (0.0 + h / 2) (y_n0 + y_n1) / 2’
427 In the expression: y_n0 + h * f (0.0 + h / 2) (y_n0 + y_n1) / 2
428 |
429168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f (0.0 + h / 2) (y_n0 + y_n1) / 2) y_n1s
430 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
431
432Notes.lhs:168:37: error:
433 • No instance for (Fractional [a0]) arising from a use of ‘/’
434 • In the second argument of ‘(+)’, namely
435 ‘h * f (0.0 + h / 2) (y_n0 + y_n1) / 2’
436 In the expression: y_n0 + h * f (0.0 + h / 2) (y_n0 + y_n1) / 2
437 In the first argument of ‘map’, namely
438 ‘(\ y_n1 -> y_n0 + h * f (0.0 + h / 2) (y_n0 + y_n1) / 2)’
439 |
440168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f (0.0 + h / 2) (y_n0 + y_n1) / 2) y_n1s
441 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
442
443Notes.lhs:168:41: error:
444 • Ambiguous type variable ‘a0’ arising from a use of ‘f’
445 prevents the constraint ‘(Fractional a0)’ from being solved.
446 Relevant bindings include
447 y_n1 :: [a0] (bound at Notes.lhs:168:22)
448 y_n1s :: [[a0]] (bound at Notes.lhs:168:1)
449 Probable fix: use a type annotation to specify what ‘a0’ should be.
450 These potential instances exist:
451 instance Fractional Double -- Defined in ‘GHC.Float’
452 instance Fractional Float -- Defined in ‘GHC.Float’
453 ...plus one instance involving out-of-scope types
454 (use -fprint-potential-instances to see them all)
455 • In the second argument of ‘(*)’, namely
456 ‘f (0.0 + h / 2) (y_n0 + y_n1)’
457 In the first argument of ‘(/)’, namely
458 ‘h * f (0.0 + h / 2) (y_n0 + y_n1)’
459 In the second argument of ‘(+)’, namely
460 ‘h * f (0.0 + h / 2) (y_n0 + y_n1) / 2’
461 |
462168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f (0.0 + h / 2) (y_n0 + y_n1) / 2) y_n1s
463 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
464Failed, no modules loaded.
465Prelude> :r
466[1 of 1] Compiling Main ( Notes.lhs, interpreted )
467
468Notes.lhs:171:1: error:
469 parse error (possibly incorrect indentation or mismatched brackets)
470Failed, no modules loaded.
471Prelude> :r
472[1 of 1] Compiling Main ( Notes.lhs, interpreted )
473
474Notes.lhs:168:41: error:
475 • Couldn't match expected type ‘[a0]’
476 with actual type ‘[Double] -> [Double]’
477 • Probable cause: ‘f’ is applied to too few arguments
478 In the second argument of ‘(*)’, namely
479 ‘f [0.0 + h / 2, (y_n0 + y_n1) / 2]’
480 In the second argument of ‘(+)’, namely
481 ‘h * f [0.0 + h / 2, (y_n0 + y_n1) / 2]’
482 In the expression: y_n0 + h * f [0.0 + h / 2, (y_n0 + y_n1) / 2]
483 • Relevant bindings include
484 y_n1 :: [a0] (bound at Notes.lhs:168:22)
485 y_n1s :: [[a0]] (bound at Notes.lhs:168:1)
486 |
487168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f [0.0 + h / 2, (y_n0 + y_n1) / 2]) y_n1s
488 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
489Failed, no modules loaded.
490Prelude> :r
491[1 of 1] Compiling Main ( Notes.lhs, interpreted )
492
493Notes.lhs:168:20: error:
494 • Couldn't match expected type ‘[a1] -> [a1]’
495 with actual type ‘(p0 -> [a1], [a1])’
496 • In the first argument of ‘map’, namely
497 ‘(\ y_n1 -> y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1)’
498 In the second argument of ‘(:)’, namely
499 ‘map
500 (\ y_n1 -> y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s’
501 In the expression:
502 y_n0
503 : map
504 (\ y_n1 -> y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s
505 • Relevant bindings include
506 y_n1s :: [[a1]] (bound at Notes.lhs:168:1)
507 |
508168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s
509 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
510
511Notes.lhs:168:37: error:
512 • Couldn't match expected type ‘[a1]’ with actual type ‘a0 -> a0’
513 • Probable cause: ‘(*)’ is applied to too few arguments
514 In the second argument of ‘(+)’, namely ‘h * f 0.0’
515 In the first argument of ‘(+)’, namely ‘y_n0 + h * f 0.0’
516 In the expression: y_n0 + h * f 0.0 + h / 2
517 • Relevant bindings include
518 y_n1s :: [[a1]] (bound at Notes.lhs:168:1)
519 |
520168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s
521 | ^^^^^^^^^
522
523Notes.lhs:168:71: error:
524 • Variable not in scope: y_n1 :: [a1]
525 • Perhaps you meant one of these:
526 ‘y_n0’ (line 166), ‘y_n1s’ (line 168)
527 |
528168 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s
529 | ^^^^
530Failed, no modules loaded.
531Prelude> :r
532[1 of 1] Compiling Main ( Notes.lhs, interpreted )
533
534Notes.lhs:168:5: error:
535 • No instance for (Fractional ([a0] -> [a0]))
536 arising from the literal ‘1.0e-6’
537 (maybe you haven't applied a function to enough arguments?)
538 • In the expression: 1.0e-6
539 In an equation for ‘h’: h = 1.0e-6
540 |
541168 | h = 1.0e-6
542 | ^^^^^^
543
544Notes.lhs:170:9: error:
545 • Ambiguous type variable ‘a0’ arising from the literal ‘1.0’
546 prevents the constraint ‘(Fractional a0)’ from being solved.
547 Relevant bindings include y_n0 :: [a0] (bound at Notes.lhs:170:1)
548 Probable fix: use a type annotation to specify what ‘a0’ should be.
549 These potential instances exist:
550 instance Fractional Double -- Defined in ‘GHC.Float’
551 instance Fractional Float -- Defined in ‘GHC.Float’
552 ...plus one instance involving out-of-scope types
553 (use -fprint-potential-instances to see them all)
554 • In the expression: 1.0
555 In the expression: [1.0, 0.0]
556 In an equation for ‘y_n0’: y_n0 = [1.0, 0.0]
557 |
558170 | y_n0 = [1.0, 0.0]
559 | ^^^
560
561Notes.lhs:172:20: error:
562 • Couldn't match expected type ‘[a0] -> [a0]’
563 with actual type ‘(p0 -> [a0] -> [a0], [a0])’
564 • In the first argument of ‘map’, namely
565 ‘(\ y_n1 -> zipWith (+) y_n0 + h * f 0.0 + h / 2,
566 zipWith f y_n0 y_n1)’
567 In the second argument of ‘(:)’, namely
568 ‘map
569 (\ y_n1 -> zipWith (+) y_n0 + h * f 0.0 + h / 2,
570 zipWith f y_n0 y_n1)
571 y_n1s’
572 In the expression:
573 y_n0
574 : map
575 (\ y_n1 -> zipWith (+) y_n0 + h * f 0.0 + h / 2,
576 zipWith f y_n0 y_n1)
577 y_n1s
578 • Relevant bindings include
579 y_n1s :: [[a0]] (bound at Notes.lhs:172:1)
580 |
581172 | y_n1s = y_n0 : map (\y_n1 -> zipWith (+) y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s
582 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
583
584Notes.lhs:172:83: error:
585 • Variable not in scope: y_n1 :: [a0]
586 • Perhaps you meant one of these:
587 ‘y_n0’ (line 170), ‘y_n1s’ (line 172)
588 |
589172 | y_n1s = y_n0 : map (\y_n1 -> zipWith (+) y_n0 + h * f 0.0 + h / 2, zipWith f y_n0 y_n1) y_n1s
590 | ^^^^
591Failed, no modules loaded.
592Prelude> :r
593[1 of 1] Compiling Main ( Notes.lhs, interpreted )
594
595Notes.lhs:175:1: error:
596 parse error (possibly incorrect indentation or mismatched brackets)
597Failed, no modules loaded.
598Prelude> :r
599[1 of 1] Compiling Main ( Notes.lhs, interpreted )
600
601Notes.lhs:168:5: error:
602 • Ambiguous type variable ‘p0’ arising from the literal ‘1.0e-6’
603 prevents the constraint ‘(Fractional p0)’ from being solved.
604 Relevant bindings include h :: p0 (bound at Notes.lhs:168:1)
605 Probable fix: use a type annotation to specify what ‘p0’ should be.
606 These potential instances exist:
607 instance Fractional Double -- Defined in ‘GHC.Float’
608 instance Fractional Float -- Defined in ‘GHC.Float’
609 ...plus one instance involving out-of-scope types
610 (use -fprint-potential-instances to see them all)
611 • In the expression: 1.0e-6
612 In an equation for ‘h’: h = 1.0e-6
613 |
614168 | h = 1.0e-6
615 | ^^^^^^
616
617Notes.lhs:170:9: error:
618 • Ambiguous type variable ‘p0’ arising from the literal ‘1.0’
619 prevents the constraint ‘(Fractional p0)’ from being solved.
620 Relevant bindings include y_n0 :: [p0] (bound at Notes.lhs:170:1)
621 Probable fix: use a type annotation to specify what ‘p0’ should be.
622 These potential instances exist:
623 instance Fractional Double -- Defined in ‘GHC.Float’
624 instance Fractional Float -- Defined in ‘GHC.Float’
625 ...plus one instance involving out-of-scope types
626 (use -fprint-potential-instances to see them all)
627 • In the expression: 1.0
628 In the expression: [1.0, 0.0]
629 In an equation for ‘y_n0’: y_n0 = [1.0, 0.0]
630 |
631170 | y_n0 = [1.0, 0.0]
632 | ^^^
633
634Notes.lhs:172:30: error:
635 • Ambiguous type variable ‘p0’ arising from a use of ‘+’
636 prevents the constraint ‘(Num p0)’ from being solved.
637 Relevant bindings include
638 y_n1 :: [p0] (bound at Notes.lhs:172:22)
639 y_n1s :: [[p0]] (bound at Notes.lhs:172:1)
640 Probable fix: use a type annotation to specify what ‘p0’ should be.
641 These potential instances exist:
642 instance Num Integer -- Defined in ‘GHC.Num’
643 instance Num Double -- Defined in ‘GHC.Float’
644 instance Num Float -- Defined in ‘GHC.Float’
645 ...plus three others
646 ...plus one instance involving out-of-scope types
647 (use -fprint-potential-instances to see them all)
648 • In the expression:
649 y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))
650 In the first argument of ‘map’, namely
651 ‘(\ y_n1
652 -> y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1)))’
653 In the second argument of ‘(:)’, namely
654 ‘map
655 (\ y_n1
656 -> y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1)))
657 y_n1s’
658 |
659172 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))) y_n1s
660 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
661
662Notes.lhs:172:48: error:
663 • Ambiguous type variable ‘p0’ arising from a use of ‘f’
664 prevents the constraint ‘(Fractional p0)’ from being solved.
665 Relevant bindings include
666 y_n1 :: [p0] (bound at Notes.lhs:172:22)
667 y_n1s :: [[p0]] (bound at Notes.lhs:172:1)
668 Probable fix: use a type annotation to specify what ‘p0’ should be.
669 These potential instances exist:
670 instance Fractional Double -- Defined in ‘GHC.Float’
671 instance Fractional Float -- Defined in ‘GHC.Float’
672 ...plus one instance involving out-of-scope types
673 (use -fprint-potential-instances to see them all)
674 • In the second argument of ‘(*)’, namely
675 ‘f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))’
676 In the second argument of ‘(+)’, namely
677 ‘(pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))’
678 In the expression:
679 y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))
680 |
681172 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))) y_n1s
682 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
683
684Notes.lhs:172:67: error:
685 • No instance for (Fractional [p0]) arising from the literal ‘0.5’
686 • In the first argument of ‘(*)’, namely ‘0.5’
687 In the second argument of ‘f’, namely ‘(0.5 * (y_n0 + y_n1))’
688 In the second argument of ‘(*)’, namely
689 ‘f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))’
690 |
691172 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))) y_n1s
692 | ^^^
693Failed, no modules loaded.
694Prelude> :r
695[1 of 1] Compiling Main ( Notes.lhs, interpreted )
696
697Notes.lhs:173:67: error:
698 • No instance for (Fractional [Double])
699 arising from the literal ‘0.5’
700 • In the first argument of ‘(*)’, namely ‘0.5’
701 In the second argument of ‘f’, namely ‘(0.5 * (y_n0 + y_n1))’
702 In the second argument of ‘(*)’, namely
703 ‘f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))’
704 |
705173 | y_n1s = y_n0 : map (\y_n1 -> y_n0 + (pure h) * f (0.0 + 0.5 * h) (0.5 * (y_n0 + y_n1))) y_n1s
706 | ^^^
707Failed, no modules loaded.
708Prelude> :r
709[1 of 1] Compiling Main ( Notes.lhs, interpreted )
710
711Notes.lhs:160:10: warning: [-Wmissing-methods]
712 • No explicit implementation for
713 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
714 • In the instance declaration for ‘Num [a]’
715 |
716160 | instance Num a => Num [a] where
717 | ^^^^^^^^^^^^^^^^
718Ok, one module loaded.
719*Main> head y_n1s
720[1.0,0.0]
721*Main> y_n1s!!0
722[1.0,0.0]
723*Main> y_n1s!!1
724*** Exception: Notes.lhs:(164,1)-(166,13): Non-exhaustive patterns in function f
725
726*Main> :r
727[1 of 1] Compiling Main ( Notes.lhs, interpreted )
728
729Notes.lhs:160:10: warning: [-Wmissing-methods]
730 • No explicit implementation for
731 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
732 • In the instance declaration for ‘Num [a]’
733 |
734160 | instance Num a => Num [a] where
735 | ^^^^^^^^^^^^^^^^
736Ok, one module loaded.
737*Main> :r
738[1 of 1] Compiling Main ( Notes.lhs, interpreted )
739
740Notes.lhs:160:10: warning: [-Wmissing-methods]
741 • No explicit implementation for
742 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
743 • In the instance declaration for ‘Num [a]’
744 |
745160 | instance Num a => Num [a] where
746 | ^^^^^^^^^^^^^^^^
747Ok, one module loaded.
748*Main> :r
749[1 of 1] Compiling Main ( Notes.lhs, interpreted )
750
751Notes.lhs:175:64: error:
752 • Variable not in scope: y_n1 :: [Double]
753 • Perhaps you meant one of these:
754 ‘y_n0’ (line 170), ‘y_n1s’ (line 173)
755 |
756175 | g u' = y_n0 + pure h * f (0.0 + 0.5 * h) ((pure 0.5) * (y_n0 + y_n1))
757 | ^^^^
758Failed, no modules loaded.
759Prelude> :r
760[1 of 1] Compiling Main ( Notes.lhs, interpreted )
761
762Notes.lhs:160:10: warning: [-Wmissing-methods]
763 • No explicit implementation for
764 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
765 • In the instance declaration for ‘Num [a]’
766 |
767160 | instance Num a => Num [a] where
768 | ^^^^^^^^^^^^^^^^
769Ok, one module loaded.
770*Main> g y_n0
771*** Exception: Notes.lhs:(164,1)-(166,13): Non-exhaustive patterns in function f
772
773*Main> :t f
774f :: Fractional a => p -> [a] -> [a]
775*Main> :r
776[1 of 1] Compiling Main ( Notes.lhs, interpreted )
777
778Notes.lhs:164:27: error: Variable not in scope: mu
779 |
780164 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
781 | ^^
782Failed, no modules loaded.
783Prelude> :r
784[1 of 1] Compiling Main ( Notes.lhs, interpreted )
785
786Notes.lhs:160:10: warning: [-Wmissing-methods]
787 • No explicit implementation for
788 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
789 • In the instance declaration for ‘Num [a]’
790 |
791160 | instance Num a => Num [a] where
792 | ^^^^^^^^^^^^^^^^
793Ok, one module loaded.
794*Main> g y_n0
795*** Exception: 1
796CallStack (from HasCallStack):
797 error, called at Notes.lhs:167:16 in main:Main
798*Main> y_n0
799[1.0,0.0]
800*Main> pure h * y_n0
801[1.0e-6]
802*Main> (pure h) * y_n0
803[1.0e-6]
804*Main> :t zipWith
805zipWith :: (a -> b -> c) -> [a] -> [b] -> [c]
806*Main> :t repeat
807repeat :: a -> [a]
808*Main> :r
809[1 of 1] Compiling Main ( Notes.lhs, interpreted )
810
811Notes.lhs:160:10: warning: [-Wmissing-methods]
812 • No explicit implementation for
813 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
814 • In the instance declaration for ‘Num [a]’
815 |
816160 | instance Num a => Num [a] where
817 | ^^^^^^^^^^^^^^^^
818Ok, one module loaded.
819*Main> (pure h) * y_n0
820[1.0e-6]
821*Main> (repeat h) * y_n0
822[1.0e-6,0.0]
823*Main> :r
824[1 of 1] Compiling Main ( Notes.lhs, interpreted )
825
826Notes.lhs:160:10: warning: [-Wmissing-methods]
827 • No explicit implementation for
828 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
829 • In the instance declaration for ‘Num [a]’
830 |
831160 | instance Num a => Num [a] where
832 | ^^^^^^^^^^^^^^^^
833Ok, one module loaded.
834*Main> head y_n1s
835[1.0,0.0]
836*Main> head $ tail y_n1s
837[1.0,-1.0e-6]
838*Main> take 10 y_n1s
839[[1.0,0.0],[1.0,-1.0e-6],[0.9999999999995,-1.0e-6],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7]]
840*Main> take 100 y_n1s
841[[1.0,0.0],[1.0,-1.0e-6],[0.9999999999995,-1.0e-6],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7]]
842*Main> :r
843[1 of 1] Compiling Main ( Notes.lhs, interpreted )
844
845Notes.lhs:160:10: warning: [-Wmissing-methods]
846 • No explicit implementation for
847 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
848 • In the instance declaration for ‘Num [a]’
849 |
850160 | instance Num a => Num [a] where
851 | ^^^^^^^^^^^^^^^^
852Ok, one module loaded.
853*Main> :r
854[1 of 1] Compiling Main ( Notes.lhs, interpreted )
855
856Notes.lhs:160:10: warning: [-Wmissing-methods]
857 • No explicit implementation for
858 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
859 • In the instance declaration for ‘Num [a]’
860 |
861160 | instance Num a => Num [a] where
862 | ^^^^^^^^^^^^^^^^
863Ok, one module loaded.
864*Main> take 100 y_n1s
865[[1.0,0.0],[1.0,-1.0e-6],[0.9999999999995,-1.0e-6],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7],[0.9999999999995,-9.999999999997499e-7]]
866*Main> :r
867[1 of 1] Compiling Main ( Notes.lhs, interpreted )
868
869Notes.lhs:176:38: error:
870 • Variable not in scope: y_n1s :: [[Double]]
871 • Perhaps you meant ‘y_1s’ (line 176)
872 |
873176 | y_1s = y_init : map (rk2Step y_init) y_n1s
874 | ^^^^^
875Failed, no modules loaded.
876Prelude> :r
877[1 of 1] Compiling Main ( Notes.lhs, interpreted )
878
879Notes.lhs:160:10: warning: [-Wmissing-methods]
880 • No explicit implementation for
881 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
882 • In the instance declaration for ‘Num [a]’
883 |
884160 | instance Num a => Num [a] where
885 | ^^^^^^^^^^^^^^^^
886Ok, one module loaded.
887*Main> :r
888[1 of 1] Compiling Main ( Notes.lhs, interpreted )
889
890Notes.lhs:160:10: warning: [-Wmissing-methods]
891 • No explicit implementation for
892 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
893 • In the instance declaration for ‘Num [a]’
894 |
895160 | instance Num a => Num [a] where
896 | ^^^^^^^^^^^^^^^^
897Ok, one module loaded.
898*Main> y_1
899[0.9999999999995,-9.999999999997499e-7]
900*Main> :r
901[1 of 1] Compiling Main ( Notes.lhs, interpreted )
902
903Notes.lhs:160:10: warning: [-Wmissing-methods]
904 • No explicit implementation for
905 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
906 • In the instance declaration for ‘Num [a]’
907 |
908160 | instance Num a => Num [a] where
909 | ^^^^^^^^^^^^^^^^
910Ok, one module loaded.
911*Main> take 10 y2s
912
913<interactive>:45:9: error:
914 • Variable not in scope: y2s :: [a]
915 • Perhaps you meant ‘y_2s’ (line 183)
916*Main> take 10 y_2s
917[[0.9999999999995,-9.999999999997499e-7],[0.9999999999985,-1.99999999999925e-6],[0.9999999999979999,-1.9999999999987497e-6],[0.9999999999979999,-1.9999999999985e-6],[0.9999999999979999,-1.9999999999985e-6],[0.9999999999979999,-1.9999999999985e-6],[0.9999999999979999,-1.9999999999985e-6],[0.9999999999979999,-1.9999999999985e-6],[0.9999999999979999,-1.9999999999985e-6],[0.9999999999979999,-1.9999999999985e-6]]
918*Main> :r
919[1 of 1] Compiling Main ( Notes.lhs, interpreted )
920
921Notes.lhs:160:10: warning: [-Wmissing-methods]
922 • No explicit implementation for
923 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
924 • In the instance declaration for ‘Num [a]’
925 |
926160 | instance Num a => Num [a] where
927 | ^^^^^^^^^^^^^^^^
928Ok, one module loaded.
929*Main> take 10 y_2s
930[[0.9999999999995,-9.999999999997499e-7],[0.9999999999945,-5.99999999999725e-6],[0.999999999982,-5.999999999984751e-6],[0.999999999982,-5.999999999953503e-6],[0.999999999982,-5.999999999953503e-6],[0.999999999982,-5.999999999953503e-6],[0.999999999982,-5.999999999953503e-6],[0.999999999982,-5.999999999953503e-6],[0.999999999982,-5.999999999953503e-6],[0.999999999982,-5.999999999953503e-6]]
931*Main> :r
932[1 of 1] Compiling Main ( Notes.lhs, interpreted )
933
934Notes.lhs:160:10: warning: [-Wmissing-methods]
935 • No explicit implementation for
936 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
937 • In the instance declaration for ‘Num [a]’
938 |
939160 | instance Num a => Num [a] where
940 | ^^^^^^^^^^^^^^^^
941Ok, one module loaded.
942*Main> take 10 y_3s
943[[0.999999999982,-5.999999999953503e-6],[0.9999999998319999,-3.099999999950356e-5],[0.9999999995194999,-3.0999999997629366e-5],[0.9999999995194999,-3.099999999372456e-5],[0.9999999995194999,-3.099999999372456e-5],[0.9999999995194999,-3.099999999372456e-5],[0.9999999995194999,-3.099999999372456e-5],[0.9999999995194999,-3.099999999372456e-5],[0.9999999995194999,-3.099999999372456e-5],[0.9999999995194999,-3.099999999372456e-5]]
944*Main> :q
945Leaving GHCi.
946
947[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
948
949[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
950
951[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
952
953[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
954
955[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
956
957[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
958
959[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --math=mathjax Notes.lhs > Notes.html
960
961[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ ghci
962GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
963Prelude> :l Notes.lhs
964[1 of 1] Compiling Main ( Notes.lhs, interpreted )
965
966Notes.lhs:248:1: warning: [-Worphans]
967 Orphan instance: instance Num a => Num [a]
968 To avoid this
969 move the instance declaration to the module of the class or of the type, or
970 wrap the type with a newtype and declare the instance on the new type.
971 |
972248 | instance Num a => Num [a] where
973 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
974
975Notes.lhs:248:10: warning: [-Wmissing-methods]
976 • No explicit implementation for
977 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
978 • In the instance declaration for ‘Num [a]’
979 |
980248 | instance Num a => Num [a] where
981 | ^^^^^^^^^^^^^^^^
982
983Notes.lhs:256:1: warning: [-Wmissing-signatures]
984 Top-level binding with no type signature:
985 rk2Step :: Fractional p => p -> p -> [p] -> [p] -> [p]
986 |
987256 | rk2Step h t y_n0 y_n1 = y_n0 + (repeat h) * f (t + 0.5 * h) ((repeat 0.5) * (y_n0 + y_n1))
988 | ^^^^^^^
989
990Notes.lhs:263:1: warning: [-Wmissing-signatures]
991 Top-level binding with no type signature:
992 f :: Fractional a => p -> [a] -> [a]
993 |
994263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
995 | ^
996
997Notes.lhs:263:1: warning: [-Wincomplete-patterns]
998 Pattern match(es) are non-exhaustive
999 In an equation for ‘f’:
1000 Patterns not matched:
1001 _ []
1002 _ [_]
1003 _ (_:_:_:_)
1004 |
1005263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1006 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1007
1008Notes.lhs:263:3: warning: [-Wunused-matches]
1009 Defined but not used: ‘t’
1010 |
1011263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1012 | ^
1013
1014Notes.lhs:267:1: warning: [-Wmissing-signatures]
1015 Top-level binding with no type signature: y_init :: [Double]
1016 |
1017267 | y_init = [1.0, 0.0]
1018 | ^^^^^^
1019
1020Notes.lhs:277:1: warning: [-Wmissing-signatures]
1021 Top-level binding with no type signature: y_1 :: [Double]
1022 |
1023277 | y_1 = y_1s !! nC
1024 | ^^^
1025
1026Notes.lhs:279:1: warning: [-Wmissing-signatures]
1027 Top-level binding with no type signature: y_2s :: [[Double]]
1028 |
1029279 | y_2s = y_1 : map (rk2Step 5.0e-6 1.0e-6 y_1) y_2s
1030 | ^^^^
1031
1032Notes.lhs:281:1: warning: [-Wmissing-signatures]
1033 Top-level binding with no type signature: y_2 :: [Double]
1034 |
1035281 | y_2 = y_2s !! nC
1036 | ^^^
1037
1038Notes.lhs:283:1: warning: [-Wmissing-signatures]
1039 Top-level binding with no type signature: y_3s :: [[Double]]
1040 |
1041283 | y_3s = y_2 : map (rk2Step 2.5e-5 6.0e-6 y_2) y_3s
1042 | ^^^^
1043Ok, one module loaded.
1044*Main> :r
1045[1 of 1] Compiling Main ( Notes.lhs, interpreted )
1046
1047Notes.lhs:248:1: warning: [-Worphans]
1048 Orphan instance: instance Num a => Num [a]
1049 To avoid this
1050 move the instance declaration to the module of the class or of the type, or
1051 wrap the type with a newtype and declare the instance on the new type.
1052 |
1053248 | instance Num a => Num [a] where
1054 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1055
1056Notes.lhs:248:10: warning: [-Wmissing-methods]
1057 • No explicit implementation for
1058 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
1059 • In the instance declaration for ‘Num [a]’
1060 |
1061248 | instance Num a => Num [a] where
1062 | ^^^^^^^^^^^^^^^^
1063
1064Notes.lhs:256:1: warning: [-Wmissing-signatures]
1065 Top-level binding with no type signature:
1066 rk2Step :: Fractional p => p -> p -> [p] -> [p] -> [p]
1067 |
1068256 | rk2Step h t y_n0 y_n1 = y_n0 + (repeat h) * f (t + 0.5 * h) ((repeat 0.5) * (y_n0 + y_n1))
1069 | ^^^^^^^
1070
1071Notes.lhs:263:1: warning: [-Wmissing-signatures]
1072 Top-level binding with no type signature:
1073 f :: Fractional a => p -> [a] -> [a]
1074 |
1075263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1076 | ^
1077
1078Notes.lhs:263:1: warning: [-Wincomplete-patterns]
1079 Pattern match(es) are non-exhaustive
1080 In an equation for ‘f’:
1081 Patterns not matched:
1082 _ []
1083 _ [_]
1084 _ (_:_:_:_)
1085 |
1086263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1087 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1088
1089Notes.lhs:263:3: warning: [-Wunused-matches]
1090 Defined but not used: ‘t’
1091 |
1092263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1093 | ^
1094
1095Notes.lhs:267:1: warning: [-Wmissing-signatures]
1096 Top-level binding with no type signature: y_init :: [Double]
1097 |
1098267 | y_init = [1.0, 0.0]
1099 | ^^^^^^
1100
1101Notes.lhs:277:1: warning: [-Wmissing-signatures]
1102 Top-level binding with no type signature: y_1 :: [Double]
1103 |
1104277 | y_1 = y_1s !! nC
1105 | ^^^
1106
1107Notes.lhs:281:1: warning: [-Wmissing-signatures]
1108 Top-level binding with no type signature: y_2 :: [Double]
1109 |
1110281 | y_2 = y_2s !! nC
1111 | ^^^
1112Ok, one module loaded.
1113*Main> :r
1114[1 of 1] Compiling Main ( Notes.lhs, interpreted )
1115
1116Notes.lhs:277:11: error:
1117 The type signature for ‘y_3’ lacks an accompanying binding
1118 |
1119277 | y_1, y_2, y_3 :: [Double]
1120 | ^^^
1121Failed, no modules loaded.
1122Prelude> :r
1123[1 of 1] Compiling Main ( Notes.lhs, interpreted )
1124
1125Notes.lhs:248:1: warning: [-Worphans]
1126 Orphan instance: instance Num a => Num [a]
1127 To avoid this
1128 move the instance declaration to the module of the class or of the type, or
1129 wrap the type with a newtype and declare the instance on the new type.
1130 |
1131248 | instance Num a => Num [a] where
1132 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1133
1134Notes.lhs:248:10: warning: [-Wmissing-methods]
1135 • No explicit implementation for
1136 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
1137 • In the instance declaration for ‘Num [a]’
1138 |
1139248 | instance Num a => Num [a] where
1140 | ^^^^^^^^^^^^^^^^
1141
1142Notes.lhs:256:1: warning: [-Wmissing-signatures]
1143 Top-level binding with no type signature:
1144 rk2Step :: Fractional p => p -> p -> [p] -> [p] -> [p]
1145 |
1146256 | rk2Step h t y_n0 y_n1 = y_n0 + (repeat h) * f (t + 0.5 * h) ((repeat 0.5) * (y_n0 + y_n1))
1147 | ^^^^^^^
1148
1149Notes.lhs:263:1: warning: [-Wmissing-signatures]
1150 Top-level binding with no type signature:
1151 f :: Fractional a => p -> [a] -> [a]o
1152 |
1153263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1154 | ^
1155
1156Notes.lhs:263:1: warning: [-Wincomplete-patterns]
1157 Pattern match(es) are non-exhaustive
1158 In an equation for ‘f’:
1159 Patterns not matched:
1160 _ []
1161 _ [_]
1162 _ (_:_:_:_)
1163 |
1164263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1165 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1166
1167Notes.lhs:263:3: warning: [-Wunused-matches]
1168 Defined but not used: ‘t’
1169 |
1170263 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1171 | ^
1172
1173Notes.lhs:267:1: warning: [-Wmissing-signatures]
1174 Top-level binding with no type signature: y_init :: [Double]
1175 |
1176267 | y_init = [1.0, 0.0]
1177 | ^^^^^^
1178Ok, one module loaded.
1179*Main> :r
1180[1 of 1] Compiling Main ( Notes.lhs, interpreted )
1181
1182Notes.lhs:248:1: warning: [-Worphans]
1183 Orphan instance: instance Num a => Num [a]
1184 To avoid this
1185 move the instance declaration to the module of the class or of the type, or
1186 wrap the type with a newtype and declare the instance on the new type.
1187 |
1188248 | instance Num a => Num [a] where
1189 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1190
1191Notes.lhs:248:10: warning: [-Wmissing-methods]
1192 • No explicit implementation for
1193 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
1194 • In the instance declaration for ‘Num [a]’
1195 |
1196248 | instance Num a => Num [a] where
1197 | ^^^^^^^^^^^^^^^^
1198
1199Notes.lhs:256:1: warning: [-Wmissing-signatures]
1200 Top-level binding with no type signature:
1201 rk2Step :: Fractional a => a -> a -> [a] -> [a] -> [a]
1202 |
1203256 | rk2Step h t y_n0 y_n1 = y_n0 + (repeat h) * f (t + 0.5 * h) ((repeat 0.5) * (y_n0 + y_n1))
1204 | ^^^^^^^
1205
1206Notes.lhs:264:1: warning: [-Wincomplete-patterns]
1207 Pattern match(es) are non-exhaustive
1208 In an equation for ‘f’:
1209 Patterns not matched:
1210 _ []
1211 _ [_]
1212 _ (_:_:_:_)
1213 |
1214264 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1215 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1216
1217Notes.lhs:264:3: warning: [-Wunused-matches]
1218 Defined but not used: ‘t’
1219 |
1220264 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1221 | ^
1222Ok, one module loaded.
1223*Main> :r
1224[1 of 1] Compiling Main ( Notes.lhs, interpreted )
1225
1226Notes.lhs:248:1: warning: [-Worphans]
1227 Orphan instance: instance Num a => Num [a]
1228 To avoid this
1229 move the instance declaration to the module of the class or of the type, or
1230 wrap the type with a newtype and declare the instance on the new type.
1231 |
1232248 | instance Num a => Num [a] where
1233 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1234
1235Notes.lhs:248:10: warning: [-Wmissing-methods]
1236 • No explicit implementation for
1237 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
1238 • In the instance declaration for ‘Num [a]’
1239 |
1240248 | instance Num a => Num [a] where
1241 | ^^^^^^^^^^^^^^^^
1242
1243Notes.lhs:265:1: warning: [-Wincomplete-patterns]
1244 Pattern match(es) are non-exhaustive
1245 In an equation for ‘f’:
1246 Patterns not matched:
1247 _ []
1248 _ [_]
1249 _ (_:_:_:_)
1250 |
1251265 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1252 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
1253
1254Notes.lhs:265:3: warning: [-Wunused-matches]
1255 Defined but not used: ‘t’
1256 |
1257265 | f t [y0, y1] = [y1, -y0 - mu * y1 * (y0 * y0 - 1)]
1258 | ^
1259Ok, one module loaded.
1260*Main> :r
1261[1 of 1] Compiling Main ( Notes.lhs, interpreted )
1262
1263Notes.lhs:246:10: warning: [-Wmissing-methods]
1264 • No explicit implementation for
1265 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
1266 • In the instance declaration for ‘Num [a]’
1267 |
1268246 | instance Num a => Num [a] where
1269 | ^^^^^^^^^^^^^^^^
1270Ok, one module loaded.
1271*Main> :q
1272Leaving GHCi.
1273
1274[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1275
1276[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1277
1278[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1279
1280[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ ghci
1281GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
1282Prelude> :l Notes.lhs
1283[1 of 1] Compiling RK2Imp ( Notes.lhs, interpreted )
1284Ok, one module loaded.
1285*RK2Imp> :version
1286unknown command ':version'
1287use :? for help.
1288*RK2Imp> :?
1289 Commands available from the prompt:
1290
1291 <statement> evaluate/run <statement>
1292 : repeat last command
1293 :{\n ..lines.. \n:}\n multiline command
1294 :add [*]<module> ... add module(s) to the current target set
1295 :browse[!] [[*]<mod>] display the names defined by module <mod>
1296 (!: more details; *: all top-level names)
1297 :cd <dir> change directory to <dir>
1298 :cmd <expr> run the commands returned by <expr>::IO String
1299 :complete <dom> [<rng>] <s> list completions for partial input string
1300 :ctags[!] [<file>] create tags file <file> for Vi (default: "tags")
1301 (!: use regex instead of line number)
1302 :def <cmd> <expr> define command :<cmd> (later defined command has
1303 precedence, ::<cmd> is always a builtin command)
1304 :edit <file> edit file
1305 :edit edit last module
1306 :etags [<file>] create tags file <file> for Emacs (default: "TAGS")
1307 :help, :? display this list of commands
1308 :info[!] [<name> ...] display information about the given names
1309 (!: do not filter instances)
1310 :issafe [<mod>] display safe haskell information of module <mod>
1311 :kind[!] <type> show the kind of <type>
1312 (!: also print the normalised type)
1313 :load[!] [*]<module> ... load module(s) and their dependents
1314 (!: defer type errors)
1315 :main [<arguments> ...] run the main function with the given arguments
1316 :module [+/-] [*]<mod> ... set the context for expression evaluation
1317 :quit exit GHCi
1318 :reload[!] reload the current module set
1319 (!: defer type errors)
1320 :run function [<arguments> ...] run the function with the given arguments
1321 :script <file> run the script <file>
1322 :type <expr> show the type of <expr>
1323 :type +d <expr> show the type of <expr>, defaulting type variables
1324 :type +v <expr> show the type of <expr>, with its specified tyvars
1325 :undef <cmd> undefine user-defined command :<cmd>
1326 :!<command> run the shell command <command>
1327
1328 -- Commands for debugging:
1329
1330 :abandon at a breakpoint, abandon current computation
1331 :back [<n>] go back in the history N steps (after :trace)
1332 :break [<mod>] <l> [<col>] set a breakpoint at the specified location
1333 :break <name> set a breakpoint on the specified function
1334 :continue resume after a breakpoint
1335 :delete <number> delete the specified breakpoint
1336 :delete * delete all breakpoints
1337 :force <expr> print <expr>, forcing unevaluated parts
1338 :forward [<n>] go forward in the history N step s(after :back)
1339 :history [<n>] after :trace, show the execution history
1340 :list show the source code around current breakpoint
1341 :list <identifier> show the source code for <identifier>
1342 :list [<module>] <line> show the source code around line number <line>
1343 :print [<name> ...] show a value without forcing its computation
1344 :sprint [<name> ...] simplified version of :print
1345 :step single-step after stopping at a breakpoint
1346 :step <expr> single-step into <expr>
1347 :steplocal single-step within the current top-level binding
1348 :stepmodule single-step restricted to the current module
1349 :trace trace after stopping at a breakpoint
1350 :trace <expr> evaluate <expr> with tracing on (see :history)
1351
1352 -- Commands for changing settings:
1353
1354 :set <option> ... set options
1355 :seti <option> ... set options for interactive evaluation only
1356 :set args <arg> ... set the arguments returned by System.getArgs
1357 :set prog <progname> set the value returned by System.getProgName
1358 :set prompt <prompt> set the prompt used in GHCi
1359 :set prompt-cont <prompt> set the continuation prompt used in GHCi
1360 :set prompt-function <expr> set the function to handle the prompt
1361 :set prompt-cont-function <expr>set the function to handle the continuation prompt
1362 :set editor <cmd> set the command used for :edit
1363 :set stop [<n>] <cmd> set the command to run when a breakpoint is hit
1364 :unset <option> ... unset options
1365
1366 Options for ':set' and ':unset':
1367
1368 +m allow multiline commands
1369 +r revert top-level expressions after each evaluation
1370 +s print timing/memory stats after each evaluation
1371 +t print type after evaluation
1372 +c collect type/location info after loading modules
1373 -<flags> most GHC command line flags can also be set here
1374 (eg. -v2, -XFlexibleInstances, etc.)
1375 for GHCi-specific flags, see User's Guide,
1376 Flag reference, Interactive-mode options
1377
1378 -- Commands for displaying information:
1379
1380 :show bindings show the current bindings made at the prompt
1381 :show breaks show the active breakpoints
1382 :show context show the breakpoint context
1383 :show imports show the current imports
1384 :show linker show current linker state
1385 :show modules show the currently loaded modules
1386 :show packages show the currently active package flags
1387 :show paths show the currently active search paths
1388 :show language show the currently active language flags
1389 :show <setting> show value of <setting>, which is one of
1390 [args, prog, editor, stop]
1391 :showi language show language flags for interactive evaluation
1392
1393*RK2Imp> :q
1394Leaving GHCi.
1395
1396[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1397
1398[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1399
1400[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1401
1402[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ exit
1403bash-3.2$ ghci
1404GHCi, version 8.0.2: http://www.haskell.org/ghc/ :? for help
1405Prelude> :q
1406Leaving GHCi.
1407bash-3.2$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1408bash-3.2$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1409bash-3.2$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1410bash-3.2$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1411bash-3.2$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1412bash-3.2$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1413bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1414error: undefined variable ‘c2035977d65cd804169ff3370da6723cf879be75’ at /Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators/shell.nix:77:11
1415bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1416error: anonymous function at /Users/dom/nixpkgs/pkgs/build-support/fetchgit/default.nix:15:1 called with unexpected argument ‘sha’, at /Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators/shell.nix:75:9
1417(use ‘--show-trace’ to show detailed location information)
1418bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1419these derivations will be built:
1420 /nix/store/qz064bkxr3gnpnkqscny070ssxj1zq6z-gsl-c203597.drv
1421 /nix/store/c82ij8vqv3p0xmxbyfw2lm063wnsgr2n-gsl-2.5.drv
1422these paths will be fetched (5.06 MiB download, 36.67 MiB unpacked):
1423 /nix/store/1z4dsjwfqzw1raiyf5w94x32h0sk7pi2-perl-IO-HTML-1.001
1424 /nix/store/5kkw217xqighkdh0y4bl9wk8j42ixsbq-nss-cacert-3.34.1
1425 /nix/store/5w5b8hkmfdbk0al318g84ys4s9hj9cdq-perl-TermReadKey-2.37
1426 /nix/store/62y3hp4jlyb80bfhadsw4yrqxxaixrn3-perl-WWW-RobotRules-6.02
1427 /nix/store/82l1c9z1wx8l2g91akn2slhrvw70rkwn-perl-HTTP-Message-6.14
1428 /nix/store/83ab8yrrqp1ibafim14lxv4mlflg3ih4-perl-File-Listing-6.04
1429 /nix/store/a44vwnbw9f9qqzb7mam6jbhag737dzg8-perl-HTTP-Daemon-6.01
1430 /nix/store/advb87930awj492pjis52xkikgmyjcrl-openssh-7.6p1
1431 /nix/store/bdq55vgjqdkwh2vakkqzkz9snbcgn3qg-perl-LWP-MediaTypes-6.02
1432 /nix/store/bg3r4x2hbhgnd316rdwnhry07zr4z6y3-perl-HTML-Parser-3.72
1433 /nix/store/bghpxzzp9c5awbw1lgqsf8hzj2dnsa7j-perl-HTTP-Date-6.02
1434 /nix/store/bvlfxjaj4bxfjncl95yy5bfiz8w5dsby-perl-HTTP-Cookies-6.01
1435 /nix/store/g05bzgr406s07dq9jb07xaw1sqjfy01x-perl-libwww-perl-6.15
1436 /nix/store/i1nl1mxwdspr599vkpdhsgshkc9g92pw-perl-URI-1.73
1437 /nix/store/ljkg0rsprp8gvpg9q8rwfx8v68qcrxs9-perl-HTTP-Negotiate-6.01
1438 /nix/store/q0flzrajz7nwiq6dymhvml5jpa9zdswr-perl-Net-HTTP-6.12
1439 /nix/store/r7c80r0p8mc55yvlkvipr343dwbvjz88-perl-HTML-Tagset-3.20
1440 /nix/store/s75304s8akj8n461bgdw6xivr904ngq2-perl-CGI-4.38
1441 /nix/store/w77a1p7b4z1dniss9993dlnlfz4n6igv-libedit-20160903-3.1
1442 /nix/store/x671l2pi3zsi15ivhfwp9i50fcaff6fr-perl-Encode-Locale-1.05
1443 /nix/store/zxldsnny21glnh5mq0xikcdwjz05hayp-git-2.16.2
1444fetching path ‘/nix/store/5kkw217xqighkdh0y4bl9wk8j42ixsbq-nss-cacert-3.34.1’...
1445fetching path ‘/nix/store/i1nl1mxwdspr599vkpdhsgshkc9g92pw-perl-URI-1.73’...
1446fetching path ‘/nix/store/x671l2pi3zsi15ivhfwp9i50fcaff6fr-perl-Encode-Locale-1.05’...
1447fetching path ‘/nix/store/r7c80r0p8mc55yvlkvipr343dwbvjz88-perl-HTML-Tagset-3.20’...
1448fetching path ‘/nix/store/bghpxzzp9c5awbw1lgqsf8hzj2dnsa7j-perl-HTTP-Date-6.02’...
1449fetching path ‘/nix/store/1z4dsjwfqzw1raiyf5w94x32h0sk7pi2-perl-IO-HTML-1.001’...
1450fetching path ‘/nix/store/bdq55vgjqdkwh2vakkqzkz9snbcgn3qg-perl-LWP-MediaTypes-6.02’...
1451fetching path ‘/nix/store/5w5b8hkmfdbk0al318g84ys4s9hj9cdq-perl-TermReadKey-2.37’...
1452
1453*** Downloading ‘https://cache.nixos.org/nar/1mkfln8d6idbj7znqipv298fni3w5dbx7gcsiny5fgyiqsfmysjj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5kkw217xqighkdh0y4bl9wk8j42ixsbq-nss-cacert-3.34.1’...
1454
1455*** Downloading ‘https://cache.nixos.org/nar/0p4p8fr8wdr4hk6lni1cmc562kmj1rk9qdrd7fmd48dvkw6p6cvw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r7c80r0p8mc55yvlkvipr343dwbvjz88-perl-HTML-Tagset-3.20’...
1456
1457*** Downloading ‘https://cache.nixos.org/nar/1yxp84bwdb44gxxfwj3nq9y9sd058dfvf4ar385l5iyld7glh3js.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1z4dsjwfqzw1raiyf5w94x32h0sk7pi2-perl-IO-HTML-1.001’...
1458
1459*** Downloading ‘https://cache.nixos.org/nar/179i8k5w3x9sk3ri3fkcr9k39scj9minprrcbyi8z9aq3vjag3av.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/i1nl1mxwdspr599vkpdhsgshkc9g92pw-perl-URI-1.73’...
1460
1461*** Downloading ‘https://cache.nixos.org/nar/1grr89ynqq3hlfdxz9skxybdbivk56zad8n9bf6s9r4h5j1b8cjh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bghpxzzp9c5awbw1lgqsf8hzj2dnsa7j-perl-HTTP-Date-6.02’...
1462
1463*** Downloading ‘https://cache.nixos.org/nar/1frnr0vi56i32fyik0bcypm5yk6cf7288pzmkapa93xy3mn420z8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bdq55vgjqdkwh2vakkqzkz9snbcgn3qg-perl-LWP-MediaTypes-6.02’...
1464
1465*** Downloading ‘https://cache.nixos.org/nar/0q1qk1k8pcnqsn2lvj2miry10in2s17jhrg0s553q6skcvmw0ypc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x671l2pi3zsi15ivhfwp9i50fcaff6fr-perl-Encode-Locale-1.05’...
1466
1467*** Downloading ‘https://cache.nixos.org/nar/1r1sdqkc7cqmy3599r4cwi5gc9i9xmsp1w27wzkl6xzpwahkvs9w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5w5b8hkmfdbk0al318g84ys4s9hj9cdq-perl-TermReadKey-2.37’...
1468 % Total % Received % Xferd Average Speed Time Time Time Current
1469 Dload Upload Total Spent Left Speed
1470 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1471 Dload Upload Total Spent Left Speed
1472 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1473 Dload Upload Total Spent Left Speed
1474 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1475 Dload Upload Total Spent Left Speed
1476 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1477 Dload Upload Total Spent Left Speed
1478 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1479 Dload Upload Total Spent Left Speed
1480 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1481 Dload Upload Total Spent Left Speed
1482 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1483 Dload Upload Total Spent Left Speed
1484100 6276 100 6276 0 0 6276 0 0:00:01 --:--:-- 0:00:01 11473
1485
1486fetching path ‘/nix/store/w77a1p7b4z1dniss9993dlnlfz4n6igv-libedit-20160903-3.1’...
1487100 130k 100 130k 0 0 130k 0 0:00:01 --:--:-- 0:00:01 226k
1488
1489
1490*** Downloading ‘https://cache.nixos.org/nar/17g3ia2apkmbqw726wd18jn7xj5mwpmk64hjkl4mqy9gr05ffav6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/w77a1p7b4z1dniss9993dlnlfz4n6igv-libedit-20160903-3.1’...
1491 % Total % Received % Xferd Average Speed Time Time Time Current
1492 Dload Upload Total Spent Left Speed
1493100 12220 100 12220 0 0 12220 0 0:00:01 --:--:-- 0:00:01 17735
1494100 14356 100 14356 0 0 14356 0 0:00:01 --:--:-- 0:00:01 20685
1495
1496
1497100 5160 100 5160 0 0 5160 0 0:00:01 --:--:-- 0:00:01 7329
1498
1499fetching path ‘/nix/store/bg3r4x2hbhgnd316rdwnhry07zr4z6y3-perl-HTML-Parser-3.72’...
1500100 36548 100 36548 0 0 36548 0 0:00:01 --:--:-- 0:00:01 49456
1501
1502fetching path ‘/nix/store/q0flzrajz7nwiq6dymhvml5jpa9zdswr-perl-Net-HTTP-6.12’...
1503fetching path ‘/nix/store/62y3hp4jlyb80bfhadsw4yrqxxaixrn3-perl-WWW-RobotRules-6.02’...
1504100 4204 100 4204 0 0 4204 0 0:00:01 --:--:-- 0:00:01 5452
1505
1506fetching path ‘/nix/store/83ab8yrrqp1ibafim14lxv4mlflg3ih4-perl-File-Listing-6.04’...
1507100 4612 100 4612 0 0 4612 0 0:00:01 --:--:-- 0:00:01 5845
1508 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
1509fetching path ‘/nix/store/82l1c9z1wx8l2g91akn2slhrvw70rkwn-perl-HTTP-Message-6.14’...
1510
1511*** Downloading ‘https://cache.nixos.org/nar/1wypfwfk1jrv59v5n5y2xx4r76wcpqa06k46pyc2bgdb233cy4sz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bg3r4x2hbhgnd316rdwnhry07zr4z6y3-perl-HTML-Parser-3.72’...
1512 % Total % Received % Xferd Average Speed Time Time Time Current
1513 Dload Upload Total Spent Left Speed
1514 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
1515*** Downloading ‘https://cache.nixos.org/nar/11r7vj31gcqsarc25i9jl2h0y1iwvxbrbc5v700l0dkdw8wpgzpm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q0flzrajz7nwiq6dymhvml5jpa9zdswr-perl-Net-HTTP-6.12’...
1516
1517*** Downloading ‘https://cache.nixos.org/nar/1107q7i0gbdlzqlj77iniihcihxycc2qagck3cd36y9wpm4x8s6h.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/62y3hp4jlyb80bfhadsw4yrqxxaixrn3-perl-WWW-RobotRules-6.02’...
1518 % Total % Received % Xferd Average Speed Time Time Time Current
1519 Dload Upload Total Spent Left Speed
1520 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
1521*** Downloading ‘https://cache.nixos.org/nar/12ik7fyf1fdlzy8vmv1ik8hnq5yx9q653kica5ni6smgsls59dgw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/83ab8yrrqp1ibafim14lxv4mlflg3ih4-perl-File-Listing-6.04’...
1522 % Total % Received % Xferd Average Speed Time Time Time Current
1523 Dload Upload Total Spent Left Speed
1524 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1525 Dload Upload Total Spent Left Speed
1526 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
1527*** Downloading ‘https://cache.nixos.org/nar/1np37v26x8pvszr405x1lvnvw6740zwwhrzclvidy2n5c29argba.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/82l1c9z1wx8l2g91akn2slhrvw70rkwn-perl-HTTP-Message-6.14’...
1528 % Total % Received % Xferd Average Speed Time Time Time Current
1529 Dload Upload Total Spent Left Speed
1530100 10564 100 10564 0 0 10564 0 0:00:01 --:--:-- 0:00:01 17665
1531100 5392 100 5392 0 0 5392 0 0:00:01 --:
1532--:-- 0:00:01 9046
1533
1534100 43076 100 43076 0 0 43076 0 0:00:01 --:--:-- 0:00:01 60755
1535100 33800 100 33800 0 0 33800 0 0:00:01 --:--:-- 0:00:01 54870
1536
1537
1538fetching path ‘/nix/store/s75304s8akj8n461bgdw6xivr904ngq2-perl-CGI-4.38’...
1539fetching path ‘/nix/store/bvlfxjaj4bxfjncl95yy5bfiz8w5dsby-perl-HTTP-Cookies-6.01’...
1540fetching path ‘/nix/store/a44vwnbw9f9qqzb7mam6jbhag737dzg8-perl-HTTP-Daemon-6.01’...
1541fetching path ‘/nix/store/ljkg0rsprp8gvpg9q8rwfx8v68qcrxs9-perl-HTTP-Negotiate-6.01’...
1542100 81824 100 81824 0 0 81824 0 0:00:01 --:--:-- 0:00:01 89132
1543100 4276 100 4276 0 0 4276 0 0:00:01 --:--:-- 0:00:01 6401
1544
1545fetching path ‘/nix/store/advb87930awj492pjis52xkikgmyjcrl-openssh-7.6p1’...
1546
1547
1548*** Downloading ‘https://cache.nixos.org/nar/0f03vgjsn1ax0q31z286qjdgiyig0vlxvh0n4pxpvzxqfp9a81ml.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s75304s8akj8n461bgdw6xivr904ngq2-perl-CGI-4.38’...
1549
1550*** Downloading ‘https://cache.nixos.org/nar/1jhaxxg0kfw9mgid3y28bjn2sfyg8i72ksrxdqbcgsp22qps7a6c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a44vwnbw9f9qqzb7mam6jbhag737dzg8-perl-HTTP-Daemon-6.01’...
1551
1552*** Downloading ‘https://cache.nixos.org/nar/16x88pc03291wfxaq3668gvwd43gkyba4ixzh3w78cdf0zbvyibw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ljkg0rsprp8gvpg9q8rwfx8v68qcrxs9-perl-HTTP-Negotiate-6.01’...
1553
1554*** Downloading ‘https://cache.nixos.org/nar/189rvwpgk947b4ap4272b8isg71dm2qlgc2hicqb8pdjvm7l7vzf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bvlfxjaj4bxfjncl95yy5bfiz8w5dsby-perl-HTTP-Cookies-6.01’...
1555 % Total % Received % Xferd Average Speed Time Time Time Current
1556 Dload Upload Total Spent Left Speed
1557 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1558 Dload Upload Total Spent Left Speed
1559 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1560 Dload Upload Total Spent Left Speed
1561 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
1562 Dload Upload Total Spent Left Speed
1563 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
1564*** Downloading ‘https://cache.nixos.org/nar/0mmwxl3kzffgrls0in25bb8v53xjc4kwwgryawiw4lj0w10kn8ln.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/advb87930awj492pjis52xkikgmyjcrl-openssh-7.6p1’...
1565 % Total % Received % Xferd Average Speed Time Time Time Current
1566 Dload Upload Total Spent Left Speed
1567100 6044 100 6044 0 0 6044 0 0:00:01 --:--:-- 0:00:01 16379
1568
1569100 7864 100 7864 0 0 7864 0 0:00:01 --:--:-- 0:00:01 13918
1570
1571100 10444 100 10444 0 0 10444 0 0:00:01 --:--:-- 0:00:01 16982
1572
1573fetching path ‘/nix/store/g05bzgr406s07dq9jb07xaw1sqjfy01x-perl-libwww-perl-6.15’...
1574100 83732 100 83732 0 0 83732 0 0:00:01 --:--:-- 0:00:01 122k
1575
1576
1577*** Downloading ‘https://cache.nixos.org/nar/08higj1g6wlk543c0mlfkb41k0q539xwaqq8k4hv8s2byhsmamcz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/g05bzgr406s07dq9jb07xaw1sqjfy01x-perl-libwww-perl-6.15’...
1578 % Total % Received % Xferd Average Speed Time Time Time Current
1579 Dload Upload Total Spent Left Speed
1580100 700k 100 700k 0 0 700k 0 0:00:01 --:--:-- 0:00:01 822k
1581
1582100 75268 100 75268 0 0 75268 0 0:00:01 --:--:-- 0:00:01 99692
1583
1584fetching path ‘/nix/store/zxldsnny21glnh5mq0xikcdwjz05hayp-git-2.16.2’...
1585
1586*** Downloading ‘https://cache.nixos.org/nar/0fl0wl3pvwk45zmmlz1dzwyy97lksrcnpyz1cpaijh8jf3agxm2l.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zxldsnny21glnh5mq0xikcdwjz05hayp-git-2.16.2’...
1587 % Total % Received % Xferd Average Speed Time Time Time Current
1588 Dload Upload Total Spent Left Speed
1589100 3911k 100 3911k 0 0 1955k 0 0:00:02 0:00:02 --:--:-- 1720k
1590
1591building path(s) ‘/nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597’
1592exporting git://github.com:idontgetoutmuch/gsl (rev c2035977d65cd804169ff3370da6723cf879be75) into /nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597
1593Initialized empty Git repository in /nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597/.git/
1594fatal: Unable to look up github.com:idontgetoutmuch (port 9418) (nodename nor servname provided, or not known)
1595fatal: Unable to look up github.com:idontgetoutmuch (port 9418) (nodename nor servname provided, or not known)
1596Unable to checkout c2035977d65cd804169ff3370da6723cf879be75 from git://github.com:idontgetoutmuch/gsl.
1597builder for ‘/nix/store/qz064bkxr3gnpnkqscny070ssxj1zq6z-gsl-c203597.drv’ failed with exit code 1
1598cannot build derivation ‘/nix/store/c82ij8vqv3p0xmxbyfw2lm063wnsgr2n-gsl-2.5.drv’: 1 dependencies couldn't be built
1599error: build of ‘/nix/store/c82ij8vqv3p0xmxbyfw2lm063wnsgr2n-gsl-2.5.drv’ failed
1600/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
1601bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1602these derivations will be built:
1603 /nix/store/pm6z5hk5i3ipvi0qsr51zcjlk3sz310m-gsl-c203597.drv
1604 /nix/store/yhamznw2cjm65y9yga1pvd9jr5p7g198-gsl-2.5.drv
1605building path(s) ‘/nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597’
1606exporting git://github.com/idontgetoutmuch/gsl (rev c2035977d65cd804169ff3370da6723cf879be75) into /nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597
1607Initialized empty Git repository in /nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597/.git/
1608remote: Counting objects: 2470, done.
1609remote: Compressing objects: 100% (1938/1938), done.
1610remote: Total 2470 (delta 863), reused 1394 (delta 517), pack-reused 0
1611Receiving objects: 100% (2470/2470), 6.45 MiB | 2.30 MiB/s, done.
1612Resolving deltas: 100% (863/863), done.
1613From git://github.com/idontgetoutmuch/gsl
1614 * branch HEAD -> FETCH_HEAD
1615Switched to a new branch 'fetchgit'
1616removing `.git'...
1617output path ‘/nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597’ has r:sha256 hash ‘1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k7’ when ‘11wr59wg21rky59j3kkd3ba6aqns9gkh0r1fnhwhn3fp7zfhanqn’ was expected
1618cannot build derivation ‘/nix/store/yhamznw2cjm65y9yga1pvd9jr5p7g198-gsl-2.5.drv’: 1 dependencies couldn't be built
1619error: build of ‘/nix/store/yhamznw2cjm65y9yga1pvd9jr5p7g198-gsl-2.5.drv’ failed
1620/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
1621bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1622these derivations will be built:
1623 /nix/store/4md10x9yn9q9qsyx07fkj0cjwg8gqhxk-gsl.drv
1624 /nix/store/p0xb7xzis6nj1jwx8bh4kljdgpy6mljx-gsl-2.5.drv
1625building path(s) ‘/nix/store/bczk9yf3p3qwzlffvjqaa6m4m9a8aah1-gsl’
1626exporting git://github.com/idontgetoutmuch/gsl (rev 1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k7) into /nix/store/bczk9yf3p3qwzlffvjqaa6m4m9a8aah1-gsl
1627Initialized empty Git repository in /nix/store/bczk9yf3p3qwzlffvjqaa6m4m9a8aah1-gsl/.git/
1628fatal: Couldn't find remote ref refs/tags/1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k7
1629remote: Counting objects: 50467, done.
1630remote: Compressing objects: 100% (9173/9173), done.
1631remote: Total 50467 (delta 41229), reused 50464 (delta 41226), pack-reused 0
1632Receiving objects: 100% (50467/50467), 20.83 MiB | 1.64 MiB/s, done.
1633Resolving deltas: 100% (41229/41229), done.
1634From git://github.com/idontgetoutmuch/gsl
1635 * [new branch] master -> origin/master
1636fatal: empty string is not a valid pathspec. please use . instead if you meant to match all paths
1637Unable to checkout refs/tags/1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k7 from git://github.com/idontgetoutmuch/gsl.
1638builder for ‘/nix/store/4md10x9yn9q9qsyx07fkj0cjwg8gqhxk-gsl.drv’ failed with exit code 1
1639cannot build derivation ‘/nix/store/p0xb7xzis6nj1jwx8bh4kljdgpy6mljx-gsl-2.5.drv’: 1 dependencies couldn't be built
1640error: build of ‘/nix/store/p0xb7xzis6nj1jwx8bh4kljdgpy6mljx-gsl-2.5.drv’ failed
1641/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
1642bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1643these derivations will be built:
1644 /nix/store/fhy58ljg97csdnkqac3pk20jfx26lzir-gsl.drv
1645 /nix/store/7vsakn355prr3k2nwk8f7cfxxchvdqk1-gsl-2.5.drv
1646building path(s) ‘/nix/store/bczk9yf3p3qwzlffvjqaa6m4m9a8aah1-gsl’
1647exporting git://github.com/idontgetoutmuch/gsl (rev 1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k75) into /nix/store/bczk9yf3p3qwzlffvjqaa6m4m9a8aah1-gsl
1648Initialized empty Git repository in /nix/store/bczk9yf3p3qwzlffvjqaa6m4m9a8aah1-gsl/.git/
1649fatal: Couldn't find remote ref refs/tags/1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k75
1650remote: Counting objects: 50467, done.
1651remote: Compressing objects: 100% (9173/9173), done.
1652Receiving objects: 100% (50467/50467), 20.83 MiB | 3.58 MiB/s, done.
1653remote: Total 50467 (delta 41229), reused 50464 (delta 41226), pack-reused 0
1654Resolving deltas: 100% (41229/41229), done.
1655From git://github.com/idontgetoutmuch/gsl
1656 * [new branch] master -> origin/master
1657fatal: empty string is not a valid pathspec. please use . instead if you meant to match all paths
1658Unable to checkout refs/tags/1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k75 from git://github.com/idontgetoutmuch/gsl.
1659builder for ‘/nix/store/fhy58ljg97csdnkqac3pk20jfx26lzir-gsl.drv’ failed with exit code 1
1660cannot build derivation ‘/nix/store/7vsakn355prr3k2nwk8f7cfxxchvdqk1-gsl-2.5.drv’: 1 dependencies couldn't be built
1661error: build of ‘/nix/store/7vsakn355prr3k2nwk8f7cfxxchvdqk1-gsl-2.5.drv’ failed
1662/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
1663bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1664these derivations will be built:
1665 /nix/store/pm6z5hk5i3ipvi0qsr51zcjlk3sz310m-gsl-c203597.drv
1666 /nix/store/yhamznw2cjm65y9yga1pvd9jr5p7g198-gsl-2.5.drv
1667building path(s) ‘/nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597’
1668exporting git://github.com/idontgetoutmuch/gsl (rev c2035977d65cd804169ff3370da6723cf879be75) into /nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597
1669Initialized empty Git repository in /nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597/.git/
1670remote: Counting objects: 2470, done.
1671remote: Compressing objects: 100% (1938/1938), done.
1672remote: Total 2470 (delta 863), reused 1394 (delta 517), pack-reused 0
1673Receiving objects: 100% (2470/2470), 6.45 MiB | 2.82 MiB/s, done.
1674Resolving deltas: 100% (863/863), done.
1675From git://github.com/idontgetoutmuch/gsl
1676 * branch HEAD -> FETCH_HEAD
1677Switched to a new branch 'fetchgit'
1678removing `.git'...
1679output path ‘/nix/store/6ib2422q2sdl66sd5adzwdf2yg8nqhvw-gsl-c203597’ has r:sha256 hash ‘1fqp77gp9nl3av1z58cwg8fivik4rff394wgjzc76ayd04y0d1k7’ when ‘11wr59wg21rky59j3kkd3ba6aqns9gkh0r1fnhwhn3fp7zfhanqn’ was expected
1680cannot build derivation ‘/nix/store/yhamznw2cjm65y9yga1pvd9jr5p7g198-gsl-2.5.drv’: 1 dependencies couldn't be built
1681error: build of ‘/nix/store/yhamznw2cjm65y9yga1pvd9jr5p7g198-gsl-2.5.drv’ failed
1682/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
1683bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
1684these derivations will be built:
1685 /nix/store/3ixzzjgcm3y4c453wbs2snkbb9f27i1l-gsl-c203597.drv
1686 /nix/store/qx23mrcvs0yjp0kh84nb4yj0scdmhjp9-gsl-2.5.drv
1687building path(s) ‘/nix/store/cy5av2bawckc4rf8gz29vs018g8g6nm9-gsl-c203597’
1688exporting git://github.com/idontgetoutmuch/gsl (rev c2035977d65cd804169ff3370da6723cf879be75) into /nix/store/cy5av2bawckc4rf8gz29vs018g8g6nm9-gsl-c203597
1689Initialized empty Git repository in /nix/store/cy5av2bawckc4rf8gz29vs018g8g6nm9-gsl-c203597/.git/
1690remote: Counting objects: 2470, done.
1691remote: Compressing objects: 100% (1938/1938), done.
1692remote: Total 2470 (delta 863), reused 1394 (delta 517), pack-reused 0
1693Receiving objects: 100% (2470/2470), 6.45 MiB | 2.92 MiB/s, done.
1694Resolving deltas: 100% (863/863), done.
1695From git://github.com/idontgetoutmuch/gsl
1696 * branch HEAD -> FETCH_HEAD
1697Switched to a new branch 'fetchgit'
1698removing `.git'...
1699building path(s) ‘/nix/store/nlv1ry7amvbghasjzd5l6v9c2mzdwi4h-gsl-2.5’
1700unpacking sources
1701unpacking source archive /nix/store/cy5av2bawckc4rf8gz29vs018g8g6nm9-gsl-c203597
1702source root is gsl-c203597
1703patching sources
1704applying patch /nix/store/4sdq8yaz6lzp1j2wdmxazp10a3cqfgzi-disable-fma.patch
1705patching file configure.ac
1706Hunk #1 succeeded at 402 (offset 21 lines).
1707configuring
1708no configure script, doing nothing
1709building
1710no Makefile, doing nothing
1711installing
1712install flags: install
1713make: Nothing to be done for 'install'.
1714post-installation fixup
1715strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
1716patching script interpreter paths in /nix/store/nlv1ry7amvbghasjzd5l6v9c2mzdwi4h-gsl-2.5
1717
1718[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$
1719
1720[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --math=mathjax Notes.lhs > Notes.html
1721
1722[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ BlogLiterately --ghci --wplatex Notes.lhs > Notes.html
1723
1724[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ history | grep standalone
1725 219 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1726 222 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1727 224 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1728 226 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1729 228 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1730 230 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1731 232 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1732 234 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1733 236 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1734 238 pandoc --standalone core/data/Playground/RunXXX/Outputs/Documentation.md -o Documentation.tex
1735 503 history | grep standalone
1736
1737[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ ps ax|grep 'coreaudio[a-z]
1738> '
1739 PID TT STAT TIME COMMAND
1740 1 ?? Ss 63:43.07 /sbin/launchd
1741 50 ?? Ss 1:55.14 /usr/sbin/syslogd
1742 51 ?? Ss 1:32.84 /usr/libexec/UserEventAgent (System)
1743 53 ?? Ss 0:17.65 /System/Library/PrivateFrameworks/Uninstall.framework/Resources/uninstalld
1744 54 ?? Ss 1:34.14 /usr/libexec/kextd
1745 55 ?? Ss 8:31.65 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd
1746 57 ?? Ss 1:22.86 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted
1747 59 ?? Ss 0:17.85 /System/Library/CoreServices/appleeventsd --server
1748 60 ?? Ss 2:04.41 /usr/sbin/systemstats --daemon
1749 62 ?? Ss 2:05.89 /usr/libexec/configd
1750 63 ?? Ss 5:14.78 /System/Library/CoreServices/powerd.bundle/powerd
1751 66 ?? Ss 6:51.48 /usr/libexec/logd
1752 72 ?? SNs 0:15.93 /usr/libexec/warmd
1753 73 ?? Ss 72:24.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
1754 74 ?? Ss 0:00.66 /System/Library/CoreServices/iconservicesd
1755 75 ?? Ss 0:00.89 /System/Library/CoreServices/iconservicesagent
1756 76 ?? Ss 0:09.14 /usr/libexec/diskarbitrationd
1757 79 ?? Ss 0:05.03 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd
1758 80 ?? Ss 4:01.15 /usr/libexec/coreduetd
1759 83 ?? Ss 7:21.54 /usr/libexec/opendirectoryd
1760 84 ?? Ss 0:00.31 /nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/bin/nix-daemon
1761 86 ?? Ss 0:29.69 /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
1762 87 ?? Ss 0:00.01 /Library/PrivilegedHelperTools/com.docker.vmnetd
1763 88 ?? Ss 0:03.71 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated
1764 89 ?? Ss 2:33.41 /System/Library/CoreServices/launchservicesd
1765 90 ?? Ss 0:04.70 /usr/libexec/timed
1766 91 ?? Ss 1:33.95 /usr/sbin/securityd -i
1767 92 ?? Ss 0:01.08 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd
1768 94 ?? Ss 3:35.75 /usr/libexec/locationd
1769 95 ?? Ss 0:00.05 autofsd
1770 96 ?? Ss 0:02.18 /usr/libexec/displaypolicyd -k 1
1771 97 ?? Ss 1:52.02 /usr/libexec/dasd
1772 100 ?? Ss 4:40.37 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
1773 101 ?? Ss 0:00.66 /System/Library/CoreServices/logind
1774 102 ?? Ss 0:02.12 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond
1775 103 ?? Ss 0:00.04 /usr/sbin/KernelEventAgent
1776 105 ?? Ss 2:22.86 /usr/sbin/bluetoothd
1777 106 ?? Ss 85:13.01 /usr/libexec/hidd
1778 107 ?? Ss 0:02.03 /usr/libexec/corebrightnessd --launchd
1779 108 ?? Ss 0:04.88 /usr/libexec/AirPlayXPCHelper
1780 109 ?? Ss 0:07.64 /usr/libexec/amfid
1781 110 ?? Ss 6:13.96 /usr/sbin/notifyd
1782 112 ?? Ss 1:41.27 /usr/sbin/distnoted daemon
1783 115 ?? Ss 1:20.57 /usr/sbin/cfprefsd daemon
1784 120 ?? Ss 4:47.56 /usr/libexec/taskgated -s
1785 124 ?? Ss 0:00.92 aslmanager
1786 125 ?? Ss 0:09.91 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd
1787 127 ?? Ss 2:11.92 /System/Library/CoreServices/coreservicesd
1788 150 ?? Ss 0:00.02 /System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd
1789 156 ?? Ss 0:00.02 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s
1790 162 ?? Ss 13:01.17 /usr/libexec/sandboxd
1791 164 ?? Ss 2:14.80 /usr/libexec/trustd
1792 166 ?? Ss 4:42.23 /usr/libexec/airportd
1793 167 ?? Ss 0:04.20 /usr/libexec/nehelper
1794 168 ?? Ss 31:46.03 /usr/sbin/coreaudiod
1795 172 ?? Ss 0:14.34 /usr/libexec/mobileassetd
1796 174 ?? Ss 0:25.50 /usr/libexec/nsurlsessiond --privileged
1797 183 ?? Ss 0:06.71 /usr/libexec/lsd runAsRoot
1798 189 ?? Ss 0:00.48 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon
1799 190 ?? Ss 2:03.83 /usr/sbin/mDNSResponder
1800 191 ?? Ss 0:05.88 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd
1801 192 ?? Ss 5:40.16 /System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd
1802 193 ?? Ss 0:20.94 /usr/sbin/mDNSResponderHelper
1803 195 ?? Ss 0:19.55 /usr/libexec/findmydeviced
1804 198 ?? Ss 1:33.16 /usr/libexec/symptomsd
1805 199 ?? Ss 0:00.92 /usr/libexec/apfsd
1806 200 ?? Ss 0:00.08 /usr/libexec/xartstorageremoted
1807 201 ?? Ss 1:57.51 /usr/libexec/biometrickitd --launchd
1808 202 ?? Ss 12:04.60 /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant
1809 203 ?? Ss 0:20.12 /usr/libexec/usbd
1810 205 ?? Ss 0:00.33 /System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader
1811 206 ?? Ss 0:09.06 /usr/libexec/nsurlstoraged --privileged
1812 207 ?? Ss 1:17.95 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd
1813 208 ?? Ss 108:06.33 /usr/libexec/sysmond
1814 209 ?? Ss 681:28.33 /System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon
1815 210 ?? S 0:05.51 /usr/sbin/systemstats --logger-helper /var/db/systemstats
1816 211 ?? Ss 0:01.84 /usr/libexec/eoshostd
1817 212 ?? Ss 0:04.86 /usr/libexec/watchdogd
1818 213 ?? Ss 0:42.49 /System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd
1819 214 ?? Ss 96:05.59 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores
1820 215 ?? Ss 0:00.44 /usr/libexec/biokitaggdd
1821 216 ?? Ss 0:01.61 /usr/libexec/thermald
1822 219 ?? Ss 0:03.92 /usr/libexec/secinitd
1823 225 ?? S 0:19.20 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
1824 227 ?? S 0:00.76 /usr/sbin/cfprefsd agent
1825 234 ?? Ss 15:41.67 /usr/libexec/TouchBarServer
1826 236 ?? Ss 0:10.86 /System/Library/PrivateFrameworks/CoreADI.framework/adid
1827 237 ?? Ss 0:00.19 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer
1828 238 ?? S 0:03.00 /usr/libexec/trustd --agent
1829 239 ?? Ss 0:00.38 /usr/libexec/colorsync.displayservices
1830 240 ?? Ss 0:00.03 /usr/libexec/colorsyncd
1831 249 ?? Ss 0:03.71 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper
1832 254 ?? Ss 0:03.91 /System/Library/CoreServices/sharedfilelistd
1833 259 ?? Ss 0:00.34 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d
1834 261 ?? Ss 0:00.49 /System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper
1835 273 ?? Ss 0:17.50 /usr/libexec/captiveagent
1836 276 ?? Ss 0:01.62 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd
1837 277 ?? Ss 0:00.22 /usr/libexec/securityd_service
1838 278 ?? Ss 0:05.38 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd
1839 283 ?? S 1:17.56 /usr/sbin/cfprefsd agent
1840 284 ?? S 1:23.34 /usr/libexec/UserEventAgent (Aqua)
1841 286 ?? S 6:56.95 /usr/sbin/distnoted agent
1842 288 ?? S 0:27.22 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
1843 289 ?? S 1:32.34 /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L
1844 290 ?? S 0:20.76 /usr/libexec/lsd
1845 291 ?? S 6:18.31 /usr/libexec/trustd --agent
1846 293 ?? S 63:46.77 /Applications/Mail.app/Contents/MacOS/Mail -psn_0_45067
1847 294 ?? S 0:03.31 /System/Library/CoreServices/sharedfilelistd
1848 295 ?? S 15:36.04 /Applications/Calendar.app/Contents/MacOS/Calendar -psn_0_49164
1849 296 ?? S 0:44.45 /usr/libexec/secd
1850 298 ?? S 189:46.56 /nix/store/rsd6rgr3z6baymd0ickwg92a7gfal3y7-emacs-25.3/Applications/Emacs.app/Contents/MacOS/Emacs -psn_0_57358
1851 299 ?? S 52:24.22 /Applications/WhatsApp.app/Contents/MacOS/WhatsApp -psn_0_61455
1852 300 ?? S 50:40.78 /Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity Monitor -psn_0_65552
1853 301 ?? S 23:59.90 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd
1854 303 ?? S 0:01.28 /System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy
1855 304 ?? S 1:22.62 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_73746
1856 305 ?? Ss 0:05.82 /usr/sbin/WirelessRadioManagerd
1857 306 ?? S 2:44.69 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd
1858 307 ?? S 0:48.43 /Applications/App Store.app/Contents/MacOS/App Store -psn_0_77843
1859 309 ?? S 6:41.21 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
1860 311 ?? S 0:27.53 /System/Library/CoreServices/talagent
1861 312 ?? S 1:59.05 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
1862 313 ?? S 3:29.87 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd
1863 314 ?? S 49:24.30 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
1864 317 ?? Ss 0:10.24 /usr/sbin/systemsoundserverd
1865 318 ?? Ss 0:00.53 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system
1866 319 ?? S 0:08.24 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd
1867 320 ?? S 4:58.85 /usr/libexec/nsurlsessiond
1868 321 ?? S 0:07.45 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent
1869 322 ?? S 0:06.53 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird
1870 323 ?? S 0:16.69 /usr/libexec/pboard
1871 325 ?? S 0:19.35 /usr/libexec/pkd
1872 326 ?? S 0:04.17 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent
1873 327 ?? S 0:06.41 /System/Library/CoreServices/iconservicesagent
1874 333 ?? S 0:08.92 /System/Library/Frameworks/AddressBook.framework/Executables/ContactsAccountsService
1875 334 ?? S 0:07.55 /usr/libexec/secinitd
1876 335 ?? S 0:00.78 /System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd
1877 336 ?? Ss 0:00.37 /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/XPCServices/signpost_notificationd.xpc/Contents/MacOS/signpost_notificationd
1878 337 ?? S 0:49.58 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd
1879 338 ?? S 13:18.47 /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent
1880 339 ?? Ss 5:17.73 /usr/sbin/wirelessproxd
1881 341 ?? S 0:01.53 /usr/libexec/rapportd
1882 342 ?? S 0:34.50 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd
1883 343 ?? Ss 0:01.87 /usr/sbin/filecoordinationd
1884 344 ?? S 1:22.40 /usr/libexec/routined LAUNCHED_BY_LAUNCHD
1885 345 ?? S 0:23.19 /usr/sbin/usernoted
1886 346 ?? S 1:53.72 /System/Library/CoreServices/ControlStrip.app/Contents/MacOS/ControlStrip
1887 347 ?? Ss 0:00.39 /System/Library/CoreServices/CrashReporterSupportHelper server-init
1888 348 ?? Ss 2:50.06 /System/Library/PrivateFrameworks/CalendarNotification.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService
1889 349 ?? S 1:50.00 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter
1890 351 ?? S 0:28.50 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod
1891 352 ?? S 0:06.93 /usr/sbin/distnoted agent
1892 353 ?? Ss 0:22.49 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent
1893 354 ?? S 4:45.22 /usr/libexec/sharingd
1894 355 ?? S 11:06.50 /usr/libexec/nsurlstoraged
1895 356 ?? S 0:01.50 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd
1896 357 ?? S 0:20.77 /System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent
1897 358 ?? S 0:32.00 /System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd
1898 359 ?? S 2:25.34 /System/Library/PrivateFrameworks/SafariShared.framework/Versions/A/XPCServices/com.apple.Safari.History.xpc/Contents/MacOS/com.apple.Safari.History
1899 363 ?? S 1:30.72 /System/Library/PrivateFrameworks/CoreParsec.framework/parsecd
1900 364 ?? S 0:01.10 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar
1901 365 ?? S 0:49.27 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce
1902 366 ?? S 0:03.12 /usr/libexec/fmfd
1903 367 ?? Ss 0:09.64 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent
1904 368 ?? S 0:02.53 /usr/libexec/networkserviceproxy
1905 369 ?? S 0:17.31 /System/Library/PrivateFrameworks/ContactsAgent.framework/Executables/ContactsAgent
1906 370 ?? S 0:22.81 /System/Library/PrivateFrameworks/PassKitCore.framework/passd
1907 371 ?? S 0:00.44 /System/Library/CoreServices/APFSUserAgent
1908 372 ?? S 0:35.37 /System/Library/CoreServices/ReportCrash agent
1909 373 ?? S 0:19.02 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent
1910 374 ?? Ss 0:01.38 /usr/libexec/nfcd
1911 376 ?? S 0:00.36 /System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent
1912 377 ?? Ss 0:27.27 /usr/libexec/gamecontrollerd
1913 378 ?? Ss 0:00.39 /System/Library/CoreServices/NotificationCenter.app/Contents/XPCServices/com.apple.notificationcenterui.WeatherSummary.xpc/Contents/MacOS/com.apple.notificationcenterui.WeatherSummary
1914 379 ?? S 1:04.13 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper
1915 380 ?? S 0:00.86 /usr/libexec/videosubscriptionsd
1916 383 ?? S 0:50.72 /System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd
1917 384 ?? Ss 0:00.05 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent
1918 386 ?? S 1:58.10 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
1919 388 ?? S 0:04.22 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd
1920 393 ?? Ss 0:08.27 /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy
1921 395 ?? Ss 1:13.97 /usr/sbin/spindump
1922 396 ?? S 0:00.47 /usr/libexec/spindump_agent
1923 397 ?? Ss 0:10.96 /System/Library/CoreServices/SubmitDiagInfo server-init
1924 399 ?? S 0:00.54 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd
1925 400 ?? S 0:23.41 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd
1926 401 ?? Ss 4:27.26 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated
1927 406 ?? S 1:43.11 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary
1928 407 ?? Ss 0:04.13 /System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd
1929 408 ?? S 7:37.36 /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent
1930 409 ?? S 0:04.12 /System/Library/CoreServices/backgroundtaskmanagementagent
1931 432 ?? S 0:00.01 /System/Library/PrivateFrameworks/StoreXPCServices.framework/Versions/A/XPCServices/com.apple.appstore.PluginXPCService.xpc/Contents/MacOS/com.apple.appstore.PluginXPCService
1932 433 ?? Ss 0:38.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
1933 434 ?? Ss 0:51.73 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
1934 436 ?? S 0:00.39 /Applications/WhatsApp.app/Contents/Frameworks/Electron Framework.framework/Resources/crashpad_handler --database=/var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/WhatsApp Crashes --metrics-dir=/var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/WhatsApp Crashes --url=https://crashlogs.whatsapp.net/wa_clb_data?access_token=1063127757113399%7C745146ffa34413f9dbb5469f5370b7af --handshake-fd=19
1935 437 ?? S 0:16.42 /System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent
1936 438 ?? S 2:53.88 /Applications/WhatsApp.app/Contents/Frameworks/WhatsApp Helper.app/Contents/MacOS/WhatsApp Helper --type=gpu-process --no-sandbox --supports-dual-gpus=true --gpu-driver-bug-workarounds=0,1,10,23,25,35,38,45,51,59,61,62,63,64,66,70,71,73,81,82,83,86,88,89 --gpu-vendor-id=0x1002 --gpu-device-id=0x67ef --gpu-driver-vendor --gpu-driver-version --gpu-driver-date --gpu-secondary-vendor-ids=0x8086 --gpu-secondary-device-ids=0x591b --gpu-active-vendor-id=0x8086 --gpu-active-device-id=0x591b --service-request-channel-token=D98BC68CD3D5215141A52439CA8C095E
1937 439 ?? S 0:25.78 /System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent
1938 440 ?? Ss 0:01.33 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor
1939 441 ?? S 0:08.52 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite
1940 445 ?? Ss 0:33.09 /System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension
1941 446 ?? Ss 2:18.22 /System/Library/Input Methods/EmojiFunctionRowIM.app/Contents/PlugIns/EmojiFunctionRowIM_Extension.appex/Contents/MacOS/EmojiFunctionRowIM_Extension
1942 456 ?? Ss 0:59.66 /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent
1943 465 ?? S 8:18.70 /Applications/WhatsApp.app/Contents/Frameworks/WhatsApp Helper.app/Contents/MacOS/WhatsApp Helper --type=renderer --no-sandbox --primordial-pipe-token=DA9EAC37A184CFFA4A8E3AF755B758B5 --lang=en-GB --standard-schemes=whatsapp --app-path=/Applications/WhatsApp.app/Contents/Resources/app.asar --node-integration=false --preload=/Applications/WhatsApp.app/Contents/Resources/app.asar/preload.js --enable-pinch --num-raster-threads=4 --enable-gpu-rasterization --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,34037;0,11,34037;0,12,34037;0,13,3553;0,14,3553;0,15,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,34037;1,11,34037;1,12,34037;1,13,3553;1,14,3553;1,15,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,34037;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,34037;2,13,3553;2,14,34037;2,15,34037;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,34037;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,34037;3,13,3553;3,14,34037;3,15,34037 --service-request-channel-token=DA9EAC37A184CFFA4A8E3AF755B758B5 --renderer-client-id=4
1944 468 ?? S 1:02.37 /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd
1945 472 ?? S 1:10.42 /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/com.apple.Safari.SafeBrowsing.Service
1946 481 ?? S 1:52.27 /usr/libexec/SafariCloudHistoryPushAgent
1947 487 ?? S 0:00.57 /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService
1948 489 ?? Ss 0:01.23 /usr/libexec/seld
1949 492 ?? Ss 0:00.78 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService
1950 494 ?? S 0:21.34 /System/Library/PreferencePanes/Displays.prefPane/Contents/Resources/MirrorDisplays.app/Contents/MacOS/MirrorDisplays
1951 495 ?? S 0:02.11 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted
1952 496 ?? Ss 0:02.37 /usr/libexec/dprivacyd
1953 498 ?? S 0:22.33 /System/Library/CoreServices/AppleIDAuthAgent
1954 499 ?? S 0:01.34 /System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd
1955 500 ?? Ss 0:01.01 /System/Library/PrivateFrameworks/CloudDocs.framework/PlugIns/com.apple.CloudDocs.MobileDocumentsFileProvider.appex/Contents/MacOS/com.apple.CloudDocs.MobileDocumentsFileProvider
1956 503 ?? Ss 0:16.17 /usr/libexec/rtcreportingd
1957 504 ?? Ss 0:00.54 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
1958 506 ?? S 0:01.14 /System/Library/CoreServices/pbs
1959 510 ?? Ss 0:01.96 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
1960 511 ?? S 0:03.15 /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd
1961 512 ?? S 18:27.90 /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
1962 513 ?? S 0:19.04 /usr/libexec/keyboardservicesd
1963 514 ?? S 0:00.63 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/XPCServices/com.apple.DictionaryServiceHelper.xpc/Contents/MacOS/com.apple.DictionaryServiceHelper
1964 516 ?? Ss 1:02.87 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
1965 517 ?? Ss 2:54.30 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
1966 518 ?? Ss 15:52.89 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
1967 519 ?? S 0:30.06 /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService
1968 520 ?? S 1:41.98 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd
1969 522 ?? S 1:13.34 /usr/libexec/knowledge-agent
1970 523 ?? S 0:14.86 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated
1971 524 ?? S 0:59.58 /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd
1972 525 ?? S 0:00.40 /System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd
1973 527 ?? S 0:17.85 /usr/sbin/ckkeyrolld
1974 529 ?? S 0:01.24 /System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent
1975 532 ?? S 1:44.71 /System/Library/CoreServices/Siri.app/Contents/MacOS/Siri launchd
1976 533 ?? S 0:17.80 /System/Library/Image Capture/Support/icdd
1977 535 ?? S 0:28.16 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd
1978 536 ?? S 0:02.35 /System/Library/CoreServices/cloudpaird
1979 538 ?? S 0:42.31 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent
1980 539 ?? S 0:14.06 /System/Library/CoreServices/diagnostics_agent
1981 541 ?? S 0:00.22 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp
1982 543 ?? S 0:01.78 /usr/libexec/swcd
1983 544 ?? S 0:00.47 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw
1984 549 ?? S 0:28.08 /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintUITool
1985 553 ?? Ss 0:00.80 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
1986 554 ?? Ss 0:00.71 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/XPCServices/media-indexer.xpc/Contents/MacOS/media-indexer
1987 555 ?? Ss 0:03.95 /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iTunesLibraryService.xpc/Contents/MacOS/com.apple.iTunesLibraryService
1988 556 ?? Ss 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
1989 558 ?? Ss 0:00.03 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/XPCServices/com.apple.cmio.registerassistantservice.xpc/Contents/MacOS/com.apple.cmio.registerassistantservice
1990 560 ?? S 0:16.19 /System/Library/PrivateFrameworks/AssistantServices.framework/assistant_service
1991 563 ?? S 0:03.32 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration
1992 608 ?? S 30:20.96 /Applications/Dropbox.app/Contents/MacOS/Dropbox /firstrunupdate 545
1993 610 ?? S 0:00.12 /Applications/Dropbox.app/Contents/MacOS/Dropbox -type:crashpad-handler --capture-python --no-upload-gzip --no-rate-limit --database=/Users/dom/.dropbox/Crashpad --metrics-dir=0 --url=https://d.dropbox.com/report_crashpad_minidump --https-pin=0x23,0xf2,0xed,0xff,0x3e,0xde,0x90,0x25,0x9a,0x9e,0x30,0xf4,0xa,0xf8,0xf9,0x12,0xa5,0xe5,0xb3,0x69,0x4e,0x69,0x38,0x44,0x3,0x41,0xf6,0x6,0xe,0x1,0x4f,0xfa --https-pin=0xaf,0xf9,0x88,0x90,0x6d,0xde,0x12,0x95,0x5d,0x9b,0xeb,0xbf,0x92,0x8f,0xdc,0xc3,0x1c,0xce,0x32,0x8d,0x5b,0x93,0x84,0xf2,0x1c,0x89,0x41,0xca,0x26,0xe2,0x3,0x91 --https-pin=0x5a,0x88,0x96,0x47,0x22,0xe,0x54,0xd6,0xbd,0x8a,0x16,0x81,0x72,0x24,0x52,0xb,0xb5,0xc7,0x8e,0x58,0x98,0x4b,0xd5,0x70,0x50,0x63,0x88,0xb9,0xde,0xf,0x7,0x5f --https-pin=0xfe,0xa2,0xb7,0xd6,0x45,0xfb,0xa7,0x3d,0x75,0x3c,0x1e,0xc9,0xa7,0x87,0xc,0x40,0xe1,0xf7,0xb0,0xc5,0x61,0xe9,0x27,0xb9,0x85,0xbf,0x71,0x18,0x66,0xe3,0x6f,0x22 --https-pin=0x76,0xee,0x85,0x90,0x37,0x4c,0x71,0x54,0x37,0xbb,0xca,0x6b,0xba,0x60,0x28,0xea,0xdd,0xe2,0xdc,0x6d,0xbb,0xb8,0xc3,0xf6,0x10,0xe8,0x51,0xf1,0x1d,0x1a,0xb7,0xf5 --https-pin=0x6d,0xbf,0xae,0x0,0xd3,0x7b,0x9c,0xd7,0x3f,0x8f,0xb4,0x7d,0xe6,0x59,0x17,0xaf,0x0,0xe0,0xdd,0xdf,0x42,0xdb,0xce,0xac,0x20,0xc1,0x7c,0x2,0x75,0xee,0x20,0x95 --https-pin=0x1e,0xa3,0xc5,0xe4,0x3e,0xd6,0x6c,0x2d,0xa2,0x98,0x3a,0x42,0xa4,0xa7,0x9b,0x1e,0x90,0x67,0x86,0xce,0x9f,0x1b,0x58,0x62,0x14,0x19,0xa0,0x4,0x63,0xa8,0x7d,0x38 --https-pin=0x87,0xaf,0x34,0xd6,0x6f,0xb3,0xf2,0xfd,0xf3,0x6e,0x9,0x11,0x1e,0x9a,0xba,0x2f,0x6f,0x44,0xb2,0x7,0xf3,0x86,0x3f,0x3d,0xb,0x54,0xb2,0x50,0x23,0x90,0x9a,0xa5 --https-pin=0xbc,0xfb,0x44,0xaa,0xb9,0xad,0x2,0x10,0x15,0x70,0x6b,0x41,0x21,0xea,0x76,0x1c,0x81,0xc9,0xe8,0x89,0x67,0x59,0xf,0x6f,0x94,0xae,0x74,0x4d,0xc8,0x8b,0x78,0xfb --https-pin=0xab,0x98,0x49,0x52,0x76,0xad,0xf1,0xec,0xaf,0xf2,0x8f,0x35,0xc5,0x30,0x48,0x78,0x1e,0x5c,0x17,0x18,0xda,0xb9,0xc8,0xe6,0x7a,0x50,0x4f,0x4f,0x6a,0x51,0x32,0x8f --https-pin=0x49,0x5,0x46,0x66,0x23,0xab,0x41,0x78,0xbe,0x92,0xac,0x5c,0xbd,0x65,0x84,0xf7,0xa1,0xe1,0x7f,0x27,0x65,0x2d,0x5a,0x85,0xaf,0x89,0x50,0x4e,0xa2,0x39,0xaa,0xaa --https-pin=0x56,0x32,0xd9,0x7b,0xfa,0x77,0x5b,0xf3,0xc9,0x9d,0xde,0xa5,0x2f,0xc2,0x55,0x34,0x10,0x86,0x40,0x16,0x72,0x9c,0x52,0xdd,0x65,0x24,0xc8,0xa9,0xc3,0xb4,0x48,0x9f --https-pin=0x2a,0x8f,0x2d,0x8a,0xf0,0xeb,0x12,0x38,0x98,0xf7,0x4c,0x86,0x6a,0xc3,0xfa,0x66,0x90,0x54,0xe2,0x3c,0x17,0xbc,0x7a,0x95,0xbd,0x2,0x34,0x19,0x2d,0xc6,0x35,0xd0 --https-pin=0x32,0xb6,0x4b,0x66,0x72,0x7a,0x20,0x63,0xe4,0x6,0x6f,0x3b,0x95,0x8c,0xb0,0xaa,0xee,0x57,0x6a,0x5e,0xce,0xfd,0x95,0x33,0x99,0xbb,0x88,0x74,0x73,0x1d,0x95,0x87 --https-pin=0xf5,0x3c,0x22,0x5,0x98,0x17,0xdd,0x96,0xf4,0x0,0x65,0x16,0x39,0xd2,0xf8,0x57,0xe2,0x10,0x70,0xa5,0x9a,0xbe,0xd9,0x7,0x94,0x0,0xd9,0xf6,0x95,0x50,0x69,0x0 --https-pin=0x67,0xdc,0x4f,0x32,0xfa,0x10,0xe7,0xd0,0x1a,0x79,0xa0,0x73,0xaa,0xc,0x9e,0x2,0x12,0xec,0x2f,0xfc,0x3d,0x77,0x9e,0xa,0xa7,0xf9,0xc0,0xf0,0xe1,0xc2,0xc8,0x93 --https-pin=0x19,0x6,0xc6,0x12,0x4d,0xbb,0x43,0x85,0x78,0xd0,0xe,0x6,0x6d,0x50,0x54,0xc6,0xc3,0x7f,0xf,0xa6,0x2,0x8c,0x5,0x54,0x5e,0x9,0x94,0xed,0xda,0xec,0x86,0x29 --https-pin=0x1d,0x75,0xd0,0x83,0x1b,0x9e,0x8,0x85,0x39,0x4d,0x32,0xc7,0xa1,0xbf,0xdb,0x3d,0xbc,0x1c,0x28,0xe2,0xb0,0xe8,0x39,0x1f,0xb1,0x35,0x98,0x1d,0xbc,0x5b,0xa9,0x36 --annotation=buildno=Dropbox-mac-44.4.58 --annotation=client_session_id=318312e9-f9bf-4b00-a193-6ac428325cc1 --annotation=host_int_account1_boot=30416322944 --annotation=machine_id=e6d98279-9e70-5c38-87ff-a27d9c0e00ff --annotation=platform=mac --annotation=platform_version=10.13.2 --handshake-fd=4
1994 611 ?? S 0:00.03 /Applications/Dropbox.app/Contents/MacOS/Dropbox -type:exit-monitor -method:collectupload -session-token:318312e9-f9bf-4b00-a193-6ac428325cc1 -target-handle:608 -target-shutdown-event:4 -target-command-line:/Applications/Dropbox.app/Contents/MacOS/Dropbox /firstrunupdate 545
1995 621 ?? S 0:00.55 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent
1996 623 ?? S 0:00.50 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy
1997 627 ?? S 0:22.93 /System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent
1998 631 ?? S 0:08.72 /usr/libexec/trustd --agent
1999 637 ?? Ss 0:11.49 /Applications/Dropbox.app/Contents/XPCServices/DropboxActivityProvider.xpc/Contents/MacOS/DropboxActivityProvider
2000 641 ?? S 0:03.18 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice
2001 643 ?? S 0:16.22 /Library/DropboxHelperTools/Dropbox_u501/dbfseventsd
2002 644 ?? S 1:48.54 /Library/DropboxHelperTools/Dropbox_u501/dbfseventsd
2003 645 ?? S 0:09.10 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd
2004 646 ?? S 0:04.35 /System/Library/CoreServices/ScopedBookmarkAgent
2005 647 ?? Ss 0:00.95 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
2006 648 ?? S 1:18.37 /Library/DropboxHelperTools/Dropbox_u501/dbfseventsd
2007 649 ?? Ss 0:00.32 /Applications/Dropbox.app/Contents/XPCServices/DropboxFolderTagger.xpc/Contents/MacOS/DropboxFolderTagger
2008 651 ?? S 12:23.85 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd
2009 652 ?? Ss 0:10.06 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Frameworks/PhotoLibraryServices.framework/Versions/A/XPCServices/com.apple.photomoments.xpc/Contents/MacOS/com.apple.photomoments
2010 653 ?? S 0:23.37 /System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd
2011 654 ?? Ss 0:10.55 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex/Contents/MacOS/garcon
2012 655 ?? S 0:00.42 /usr/libexec/loginitemregisterd
2013 656 ?? Ss 0:14.71 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex/Contents/MacOS/garcon
2014 657 ?? Ss 0:00.01 /usr/libexec/smd
2015 671 ?? S 0:27.58 /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/universalAccessAuthWarn.app/Contents/MacOS/universalAccessAuthWarn launchd -s
2016 672 ?? Ss 1:20.39 /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/XPCServices/DataDetectorsViewService.xpc/Contents/MacOS/DataDetectorsViewService
2017 673 ?? Ss 3:20.41 /System/Library/CoreServices/Siri.app/Contents/XPCServices/SiriNCService.xpc/Contents/MacOS/SiriNCService
2018 686 ?? S 0:20.77 /System/Library/CoreServices/mapspushd
2019 687 ?? S 0:01.22 /usr/libexec/siriknowledged
2020 688 ?? S 0:08.07 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper
2021 689 ?? S 1:12.31 /System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed
2022 690 ?? S 0:00.95 /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond
2023 692 ?? Ss 0:01.62 /System/Library/CoreServices/ReportCrash daemon
2024 720 ?? S 0:09.50 /usr/sbin/distnoted agent
2025 1487 ?? SNs 0:00.01 /usr/libexec/periodic-wrapper weekly
2026 1488 ?? SNs 0:00.06 /usr/libexec/periodic-wrapper daily
2027 1489 ?? Ss 0:00.77 /usr/libexec/tzd
2028 1494 ?? S 0:04.59 /usr/libexec/silhouette
2029 1497 ?? S 0:00.62 /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent
2030 1498 ?? S 0:01.39 /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd
2031 1501 ?? Ss 0:02.17 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Frameworks/PhotoLibraryServices.framework/Versions/A/XPCServices/com.apple.photomodel.xpc/Contents/MacOS/com.apple.photomodel
2032 1507 ?? Ss 0:01.84 /usr/libexec/diskmanagementd
2033 1541 ?? Ss 0:00.57 /usr/bin/sysdiagnose
2034 1543 ?? Ss 0:01.01 /usr/libexec/AssetCache/AssetCache
2035 1547 ?? Ss 0:29.31 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -d
2036 1582 ?? S 0:00.53 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing
2037 1583 ?? S 0:03.37 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing
2038 1619 ?? Ss 0:06.74 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd
2039 1621 ?? Ss 0:00.98 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_download_service
2040 1623 ?? Ss 0:05.97 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd
2041 1651 ?? Ss 0:00.05 /usr/libexec/DataDetectorsSourceAccess
2042 1700 ?? Ss 0:00.47 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinstalld
2043 1943 ?? Ss 0:08.11 /System/Library/Frameworks/Foundation.framework/Versions/C/XPCServices/LookupViewService.xpc/Contents/MacOS/LookupViewService
2044 1984 ?? Ss 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
2045 2002 ?? Ss 0:00.02 /usr/libexec/applessdstatistics
2046 2127 ?? Ss 0:00.02 /System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig
2047 2130 ?? S 0:01.51 /System/Library/Frameworks/Security.framework/Versions/A/Resources/KeychainSyncingOverIDSProxy.bundle/Contents/MacOS/KeychainSyncingOverIDSProxy
2048 2140 ?? S 0:20.51 /System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent
2049 2190 ?? S 0:00.60 /System/Library/PrivateFrameworks/StorageManagement.framework/Resources/diskspaced
2050 2192 ?? Ss 0:10.31 /System/Library/Frameworks/Foundation.framework/Versions/C/XPCServices/LookupViewService.xpc/Contents/MacOS/LookupViewService
2051 2504 ?? S 0:01.78 /System/Library/PrivateFrameworks/IMDPersistence.framework/IMAutomaticHistoryDeletionAgent.app/Contents/MacOS/IMAutomaticHistoryDeletionAgent
2052 2506 ?? Ss 0:04.04 /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iTunesLibraryService.xpc/Contents/MacOS/com.apple.iTunesLibraryService
2053 2507 ?? Ss 0:04.71 /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService
2054 2508 ?? Ss 0:00.12 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
2055 2659 ?? S 0:05.64 /usr/sbin/distnoted agent
2056 4347 ?? S 60:14.04 /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
2057 4349 ?? S 0:00.30 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Framework.framework/Helpers/crashpad_handler --monitor-self-annotation=ptype=crashpad-handler --database=/Users/dom/Library/Application Support/Google/Chrome/Crashpad --metrics-dir=/Users/dom/Library/Application Support/Google/Chrome --url=https://clients2.google.com/cr/report --annotation=channel= --annotation=plat=OS X --annotation=prod=Chrome_Mac --annotation=ver=64.0.3282.167 --handshake-fd=9
2058 4351 ?? S 31:59.71 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=gpu-process --field-trial-handle=8340498826626353830,16724950751342166745,131072 --gpu-preferences=GAAAAAAAAAAAAQAAAQAAAAAAAAAAAGAA --gpu-vendor-id=0x1002 --gpu-device-id=0x67ef --gpu-driver-vendor --gpu-driver-version --gpu-driver-date --gpu-secondary-vendor-ids=0x8086 --gpu-secondary-device-ids=0x591b --gpu-active-vendor-id=0x1002 --gpu-active-device-id=0x67ef --amd-switchable --service-request-channel-token=81134C8E00095A0007F42E7B68FDE66F
2059 4352 ?? Ss 0:00.02 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Framework.framework/Versions/A/XPCServices/AlertNotificationService.xpc/Contents/MacOS/AlertNotificationService
2060 4354 ?? Ss 0:00.38 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
2061 4360 ?? S 0:16.06 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=24BEF81EAFD5DDAAC13E7D2A383B38A1 --lang=en-GB --extension-process --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=24BEF81EAFD5DDAAC13E7D2A383B38A1 --renderer-client-id=4
2062 4361 ?? S 0:12.21 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=BB7CC546CE84B23390C9954EA79CB01A --lang=en-GB --extension-process --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=BB7CC546CE84B23390C9954EA79CB01A --renderer-client-id=5
2063 4363 ?? S 0:24.95 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=24413BB554A665A628AFB9F0428A7DD2 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=24413BB554A665A628AFB9F0428A7DD2 --renderer-client-id=9
2064 4527 ?? S 25:43.89 /Applications/Rocket.Chat+.app/Contents/MacOS/Rocket.Chat+
2065 4528 ?? S 8:49.51 /Applications/Rocket.Chat+.app/Contents/Frameworks/Rocket.Chat+ Helper.app/Contents/MacOS/Rocket.Chat+ Helper --type=gpu-process --no-sandbox --supports-dual-gpus=true --gpu-driver-bug-workarounds=1,10,24,27,49,65,67,68,76,78,86,87,91,94 --disable-gl-extensions=GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent --gpu-vendor-id=0x1002 --gpu-device-id=0x67ef --gpu-driver-vendor --gpu-driver-version --gpu-driver-date --gpu-secondary-vendor-ids=0x8086 --gpu-secondary-device-ids=0x591b --gpu-active-vendor-id=0x1002 --gpu-active-device-id=0x67ef --service-request-channel-token=935395B3E4D2FC398AFFE7F6EB8328CF
2066 4529 ?? S 2:31.73 /Applications/Rocket.Chat+.app/Contents/Frameworks/Rocket.Chat+ Helper.app/Contents/MacOS/Rocket.Chat+ Helper --type=renderer --no-sandbox --primordial-pipe-token=3C455D67F70BD133E79CB41D1A6C17EB --lang=en-GB --app-path=/Applications/Rocket.Chat+.app/Contents/Resources/app.asar --node-integration=true --webview-tag=true --no-sandbox --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,34037;0,11,34037;0,12,34037;0,13,3553;0,14,3553;0,15,3553;0,16,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,34037;1,11,34037;1,12,34037;1,13,3553;1,14,3553;1,15,3553;1,16,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,34037;2,11,34037;2,12,34037;2,13,3553;2,14,3553;2,15,3553;2,16,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,34037;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,34037;3,13,34037;3,14,3553;3,15,34037;3,16,34037;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,34037;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,34037;4,13,34037;4,14,3553;4,15,34037;4,16,34037 --service-request-channel-token=3C455D67F70BD133E79CB41D1A6C17EB --renderer-client-id=4
2067 4530 ?? S 52:05.84 /Applications/Rocket.Chat+.app/Contents/Frameworks/Rocket.Chat+ Helper.app/Contents/MacOS/Rocket.Chat+ Helper --type=renderer --no-sandbox --primordial-pipe-token=3C0AB8C00BA38D7977A225A21BD6EA81 --lang=en-GB --app-path=/Applications/Rocket.Chat+.app/Contents/Resources/app.asar --node-integration=false --webview-tag=false --no-sandbox --preload=/Applications/Rocket.Chat+.app/Contents/Resources/app.asar/app/public/preload.js --guest-instance-id=1 --enable-blink-features --disable-blink-features --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,3553;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,34037;0,11,34037;0,12,34037;0,13,3553;0,14,3553;0,15,3553;0,16,3553;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,3553;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,34037;1,11,34037;1,12,34037;1,13,3553;1,14,3553;1,15,3553;1,16,3553;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,34037;2,11,34037;2,12,34037;2,13,3553;2,14,3553;2,15,3553;2,16,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,34037;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,3553;3,12,34037;3,13,34037;3,14,3553;3,15,34037;3,16,34037;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,34037;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,34037;4,13,34037;4,14,3553;4,15,34037;4,16,34037 --service-request-channel-token=3C0AB8C00BA38D7977A225A21BD6EA81 --renderer-client-id=6
2068 9193 ?? Ss 0:00.32 /usr/libexec/tailspind
206921255 ?? Ss 0:10.34 cupsd -C /private/etc/cups/cupsd.conf -s /private/etc/cups/cups-files.conf
207021268 ?? S 0:00.02 bash /usr/bin/stkLaunchAgent.sh
207121317 ?? S 3:08.92 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
207221333 ?? Ss 0:22.34 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra
207322733 ?? Ss 0:18.71 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService
207422736 ?? Ss 0:27.19 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
207523668 ?? S 0:00.18 /usr/bin/ssh-agent -l
207623841 ?? S 0:00.48 /System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert
207723882 ?? Ss 0:08.36 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
207823883 ?? S 0:27.48 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd
207923885 ?? Ss 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
208023887 ?? Ss 0:00.65 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/XPCServices/com.apple.siri.ClientFlow.ClientScripter.xpc/Contents/MacOS/com.apple.siri.ClientFlow.ClientScripter
208123890 ?? S 15:19.41 /usr/libexec/avconferenced
208223891 ?? Ss 0:07.95 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent
208323895 ?? S 0:00.90 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent.app/Contents/MacOS/CMFSyncAgent
208423899 ?? Ss 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
208523902 ?? Ss 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
208623905 ?? Ss 0:02.23 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
208723914 ?? Ss 0:01.10 /usr/libexec/powerlogd
208823974 ?? S 0:27.45 /System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper
208924164 ?? Ss 0:00.61 /System/Library/CoreServices/ControlStrip.app/Contents/XPCServices/com.apple.DFRSystemExtra.Siri.xpc/Contents/MacOS/com.apple.DFRSystemExtra.Siri
209024293 ?? Ss 0:00.64 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
209124412 ?? S 0:01.47 /System/Library/PrivateFrameworks/NotesShared.framework/Versions/A/XPCServices/com.apple.Notes.datastore.xpc/Contents/MacOS/com.apple.Notes.datastore
209224489 ?? Ss 0:00.01 /usr/sbin/aslmanager -s /var/log/eventmonitor
209324765 ?? S 0:00.45 /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd
209427541 ?? Ss 0:00.18 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
209530504 ?? S 0:00.23 /System/Library/PrivateFrameworks/KerberosHelper/Helpers/DiskUnmountWatcher
209630506 ?? Ss 0:00.06 /System/Library/Frameworks/GSS.framework/Helpers/GSSCred
209730922 ?? Ss 0:23.22 /usr/libexec/syspolicyd
209835540 ?? S 0:05.03 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --field-trial-handle=8340498826626353830,16724950751342166745,131072 --lang=en-GB --service-sandbox-type=utility --service-request-channel-token=4A4BABDAC52C23343C6161D8267A5B8C
209935561 ?? Ss 0:00.05 /usr/libexec/keybagd -t 15
210036835 ?? S 1:11.51 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=38712E46010ECCCB911E25DB22B31D29 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=38712E46010ECCCB911E25DB22B31D29 --renderer-client-id=274
210136924 ?? S 0:41.89 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=19A6E0DE4565FB19231F8A1418AEEF7E --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=19A6E0DE4565FB19231F8A1418AEEF7E --renderer-client-id=289
210236946 ?? Ss 0:02.98 /System/Library/Frameworks/Foundation.framework/Versions/C/XPCServices/LookupViewService.xpc/Contents/MacOS/LookupViewService
210336979 ?? S 0:52.48 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=055506199A67686322C126C7A29092E5 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=055506199A67686322C126C7A29092E5 --renderer-client-id=297
210436993 ?? S 0:44.55 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=AFE9582BA875F4DDFBDC9C337C7F5C1A --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=AFE9582BA875F4DDFBDC9C337C7F5C1A --renderer-client-id=301
210538213 ?? S 0:23.57 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid
210638388 ?? S 0:18.34 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=F93CF2D32DD6DF6B49D5A95E259E92B0 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=F93CF2D32DD6DF6B49D5A95E259E92B0 --renderer-client-id=308
210738422 ?? S 0:41.39 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=14436A33464CD9B56FE8B0CA70B36C5E --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=14436A33464CD9B56FE8B0CA70B36C5E --renderer-client-id=314
210838514 ?? S 0:43.47 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=68057964FDD7AD130A5779A5189A0F45 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=68057964FDD7AD130A5779A5189A0F45 --renderer-client-id=324
210938637 ?? S 0:32.07 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=45271F424B2F2FFC1DD051E80B7BB5DD --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=45271F424B2F2FFC1DD051E80B7BB5DD --renderer-client-id=337
211038931 ?? S 0:03.96 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
211138957 ?? S 0:02.97 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
211238959 ?? S 0:04.04 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
211338971 ?? S 0:03.36 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
211439800 ?? S 0:13.10 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a
211540858 ?? S 0:00.34 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent
211640873 ?? Ss 0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
211740875 ?? Ss 0:19.07 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/WorkflowServiceRunner.xpc/Contents/MacOS/WorkflowServiceRunner
211840932 ?? S< 0:00.33 /Applications/WhatsApp.app/Contents/Frameworks/Squirrel.framework/Resources/ShipIt WhatsApp.ShipIt
211942250 ?? Ss 0:27.50 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
212043322 ?? S 0:02.98 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=C936F057AE1D1AD13C0AC7F3D923E908 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=C936F057AE1D1AD13C0AC7F3D923E908 --renderer-client-id=355
212143457 ?? S 2:38.73 /Applications/Safari.app/Contents/MacOS/Safari
212243459 ?? Ss 0:37.15 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking
212343460 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
212443461 ?? Ss 0:00.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
212543462 ?? Ss 0:00.79 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
212643463 ?? Ss 0:00.83 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
212743464 ?? Ss 0:00.79 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
212843465 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
212943466 ?? Ss 0:00.78 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213043467 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213143468 ?? Ss 0:00.83 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213243469 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213343470 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213443471 ?? Ss 0:00.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213543472 ?? Ss 0:00.78 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213643473 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213743474 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213843475 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
213943476 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214043477 ?? Ss 0:00.84 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214143478 ?? Ss 0:00.84 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214243479 ?? Ss 0:00.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214343480 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214443481 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214543482 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214643483 ?? Ss 0:00.83 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214743484 ?? Ss 0:00.84 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214843485 ?? Ss 0:00.83 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
214943486 ?? Ss 0:00.82 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215043487 ?? Ss 0:00.82 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215143488 ?? Ss 0:00.79 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215243489 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215343490 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215443491 ?? Ss 0:00.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215543492 ?? Ss 0:00.82 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215643493 ?? Ss 0:00.88 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215743494 ?? Ss 0:00.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215843495 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
215943496 ?? Ss 0:00.85 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216043497 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216143498 ?? Ss 0:00.81 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216243499 ?? Ss 0:00.83 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216343500 ?? Ss 0:00.80 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216443501 ?? Ss 0:00.84 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216543502 ?? Ss 0:00.82 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216643503 ?? Ss 0:00.84 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216743504 ?? Ss 0:03.47 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216843505 ?? Ss 0:00.82 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
216943506 ?? Ss 0:01.05 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217043507 ?? Ss 0:00.79 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217143508 ?? Ss 0:01.10 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217243509 ?? Ss 0:01.27 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217343510 ?? Ss 0:01.23 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217443511 ?? Ss 0:02.57 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217543512 ?? Ss 0:13.03 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
217643513 ?? Ss 0:01.07 /System/Library/PrivateFrameworks/SafariShared.framework/Versions/A/XPCServices/com.apple.Safari.SearchHelper.xpc/Contents/MacOS/com.apple.Safari.SearchHelper
217743514 ?? Ss 0:00.63 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Databases.xpc/Contents/MacOS/com.apple.WebKit.Databases
217843522 ?? Ss 0:00.20 /System/Library/PrivateFrameworks/SafariShared.framework/Versions/A/XPCServices/com.apple.Safari.ImageDecoder.xpc/Contents/MacOS/com.apple.Safari.ImageDecoder
217943525 ?? Ss 0:08.00 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
218043526 ?? Ss 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
218143527 ?? Ss 0:00.07 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
218243914 ?? S 0:04.20 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared
218344391 ?? S 0:54.19 /Applications/Reminders.app/Contents/MacOS/Reminders
218444556 ?? SNs 0:00.01 /usr/libexec/periodic-wrapper monthly
218544887 ?? S 6:48.34 /Applications/Mendeley Desktop.app/Contents/MacOS/Mendeley Desktop
218644888 ?? S 0:21.77 /Applications/Mendeley Desktop.app/Contents/Frameworks/QtWebEngineCore.framework/Helpers/QtWebEngineProcess.app/Contents/MacOS/QtWebEngineProcess --type=renderer --disable-accelerated-video-decode --enable-threaded-compositing --no-sandbox --use-gl=desktop --enable-deferred-image-decoding --lang=en-GB --enable-delegated-renderer --enable-impl-side-painting --num-raster-threads=1 --channel=44887.2.312568236
218748760 ?? S 0:00.06 /usr/sbin/distnoted agent
218848982 ?? S 0:02.84 /Applications/Google Chrome.app/Contents/Versions/64.0.3282.167/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --field-trial-handle=8340498826626353830,16724950751342166745,131072 --service-pipe-token=2EE8FDC0B7A19A2540DD822641DB83A0 --lang=en-GB --enable-offline-auto-reload --enable-offline-auto-reload-visible-only --enable-pinch --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-gpu-async-worker-context --content-image-texture-target=0,0,3553;0,1,3553;0,2,3553;0,3,3553;0,4,3553;0,5,34037;0,6,3553;0,7,3553;0,8,3553;0,9,3553;0,10,3553;0,11,34037;0,12,34037;0,13,3553;0,14,34037;0,15,34037;0,16,3553;0,17,34037;0,18,34037;1,0,3553;1,1,3553;1,2,3553;1,3,3553;1,4,3553;1,5,34037;1,6,3553;1,7,3553;1,8,3553;1,9,3553;1,10,3553;1,11,34037;1,12,34037;1,13,3553;1,14,34037;1,15,34037;1,16,3553;1,17,34037;1,18,34037;2,0,3553;2,1,3553;2,2,3553;2,3,3553;2,4,3553;2,5,3553;2,6,3553;2,7,3553;2,8,3553;2,9,3553;2,10,3553;2,11,3553;2,12,3553;2,13,3553;2,14,3553;2,15,3553;2,16,3553;2,17,3553;2,18,3553;3,0,3553;3,1,3553;3,2,3553;3,3,3553;3,4,3553;3,5,3553;3,6,3553;3,7,3553;3,8,3553;3,9,3553;3,10,3553;3,11,34037;3,12,34037;3,13,3553;3,14,34037;3,15,3553;3,16,3553;3,17,3553;3,18,3553;4,0,3553;4,1,3553;4,2,3553;4,3,3553;4,4,3553;4,5,3553;4,6,3553;4,7,3553;4,8,3553;4,9,3553;4,10,3553;4,11,3553;4,12,3553;4,13,3553;4,14,3553;4,15,3553;4,16,3553;4,17,3553;4,18,3553;5,0,3553;5,1,3553;5,2,3553;5,3,3553;5,4,3553;5,5,34037;5,6,3553;5,7,3553;5,8,3553;5,9,3553;5,10,3553;5,11,3553;5,12,3553;5,13,3553;5,14,34037;5,15,34037;5,16,3553;5,17,34037;5,18,34037;6,0,3553;6,1,3553;6,2,3553;6,3,3553;6,4,3553;6,5,34037;6,6,3553;6,7,3553;6,8,3553;6,9,3553;6,10,3553;6,11,3553;6,12,3553;6,13,3553;6,14,34037;6,15,34037;6,16,3553;6,17,34037;6,18,34037 --service-request-channel-token=2EE8FDC0B7A19A2540DD822641DB83A0 --renderer-client-id=375
218949126 ?? Ss 1:23.17 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
219049127 ?? Ss 0:00.21 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
219149131 ?? Ss 4:39.83 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
219249151 ?? S 0:00.56 /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper
219349165 ?? Ss 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
219449166 ?? Ss 0:01.16 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
219549169 ?? S 0:00.05 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single
219649177 ?? Ss 0:00.10 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
219749199 ?? SNs 0:00.05 /usr/sbin/netbiosd
219849203 ?? Ss 0:10.61 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
219949204 ?? Ss 0:00.06 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
220049209 ?? Ss 0:06.00 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
220149213 ?? Ss 0:00.03 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
220249214 ?? Ss 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
220349220 ?? Ss 0:13.54 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
220449223 ?? Ss 0:00.04 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService
220549232 ?? S 0:00.05 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single
220649247 ?? S 0:01.72 /Applications/FaceTime.app/Contents/MacOS/FaceTime
220749248 ?? Ss 0:00.82 /Applications/FaceTime.app/Contents/XPCServices/FaceTimeNotificationCenterService.xpc/Contents/MacOS/FaceTimeNotificationCenterService
220849249 ?? Ss 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
220949251 ?? Ss 0:00.06 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent
221049258 ?? Ss 0:00.02 /usr/sbin/ocspd
221149269 ?? S 0:00.13 /usr/libexec/lsd
221249270 ?? S 0:00.22 /usr/libexec/trustd --agent
221349273 ?? S 0:00.06 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single
221449274 ?? S 0:00.06 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single
221549287 ?? Ss 0:14.82 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
221649288 ?? S 0:00.09 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent
221749292 ?? S 0:00.10 /System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/quicklookd
221849293 ?? Ss 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper
221949314 ?? Ss 0:00.04 /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework/Support/fud 30
222059354 ?? S 0:00.20 /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/Resources/iCloudUserNotificationsd.app/Contents/MacOS/iCloudUserNotificationsd
222167774 ?? Ss 0:06.18 /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService
222272246 ?? S 1:20.46 /Applications/Preview.app/Contents/MacOS/Preview -psn_0_8071090
222374996 ?? S 0:00.11 /usr/libexec/lsd
222474997 ?? S 0:00.11 /usr/libexec/lsd
222574998 ?? S 0:00.11 /usr/libexec/lsd
222674999 ?? S 0:00.11 /usr/libexec/lsd
222775000 ?? S 0:00.11 /usr/libexec/lsd
222875001 ?? S 0:00.10 /usr/libexec/lsd
222975003 ?? S 0:00.10 /usr/libexec/lsd
223075004 ?? S 0:00.47 /usr/libexec/trustd --agent
223175006 ?? S 0:00.46 /usr/libexec/trustd --agent
223275007 ?? S 0:00.47 /usr/libexec/trustd --agent
223375008 ?? S 0:00.48 /usr/libexec/trustd --agent
223475009 ?? S 0:00.49 /usr/libexec/trustd --agent
223575010 ?? S 0:00.48 /usr/libexec/trustd --agent
223675011 ?? S 0:00.48 /usr/libexec/trustd --agent
223776080 ?? Ss 0:00.38 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
223876279 ?? S 0:00.78 /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled
223976773 ?? Ss 0:04.95 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex/Contents/MacOS/garcon
224076776 ?? Ss 0:04.90 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex/Contents/MacOS/garcon
224176819 ?? Ss 0:03.14 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/XPCServices/QuickLookUIService.xpc/Contents/MacOS/QuickLookUIService
224281677 ?? S 0:42.40 /Applications/Docker.app/Contents/MacOS/Docker
224381709 ?? S 0:00.90 /Applications/Docker.app/Contents/MacOS/com.docker.supervisor -watchdog fd:0 -max-restarts 0 -restart-seconds 300
224481710 ?? S 42:32.21 com.docker.osxfs serve --address fd:3 --connect /Users/dom/Library/Containers/com.docker.docker/Data/connect --control fd:4
224581711 ?? S 2:43.53 com.docker.vpnkit --ethernet fd:3 --port fd:4 --introspection fd:5 --diagnostics fd:6 --vsock-path /Users/dom/Library/Containers/com.docker.docker/Data/connect --host-names docker.for.mac.localhost,docker.for.mac.host.internal --gateway-names docker.for.mac.gateway.internal,docker.for.mac.http.internal --listen-backlog 32 --mtu 1500 --allowed-bind-addresses 0.0.0.0 --http /Users/dom/Library/Group Containers/group.com.docker/http_proxy.json --dhcp /Users/dom/Library/Group Containers/group.com.docker/dhcp.json --port-max-idle-time 300 --max-connections 2000 --gateway-ip 192.168.65.1 --host-ip 192.168.65.2 --lowest-ip 192.168.65.3 --highest-ip 192.168.65.254 --log-destination asl
224681712 ?? S 0:23.15 com.docker.driver.amd64-linux -addr fd:3 -debug
224781716 ?? S 307:47.71 com.docker.hyperkit -A -u -F /Users/dom/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/hyperkit.pid -c 6 -m 8192M -s 0:0,hostbridge -s 31,lpc -s 1:0,virtio-vpnkit,path=/Users/dom/Library/Containers/com.docker.docker/Data/s50,uuid=b174f6ac-4f1a-41fe-a922-890e5617589d -s 2:0,ahci-hd,file:///Users/dom/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/Docker.qcow2?sync=os&buffered=1,format=qcow,qcow-config=discard=true;compact_after_unmaps=262144;keep_erased=262144;runtime_asserts=false -s 3,virtio-sock,guest_cid=3,path=/Users/dom/Library/Containers/com.docker.docker/Data,guest_forwards=2376;1525 -s 4,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker-for-mac.iso -s 5,ahci-cd,/Users/dom/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/database.iso -s 6,virtio-rnd -s 7,virtio-9p,path=/Users/dom/Library/Containers/com.docker.docker/Data/s51,tag=port -l com1,autopty=/Users/dom/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/tty,log=/Users/dom/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/console-ring -f bootrom,/Applications/Docker.app/Contents/Resources/uefi/UEFI.fd,,
224886821 ?? Ss 1:49.84 /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/MacOS/com.apple.appkit.xpc.openAndSavePanelService
224994321 ?? Ss 0:06.48 /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.apple.MediaLibraryService
225094361 ?? S 0:00.42 /usr/libexec/USBAgent
225194402 ?? S 0:29.41 /System/Library/CoreServices/PowerChime.app/Contents/MacOS/PowerChime
2252 418 s000 Ss 0:00.02 login -pfl dom /bin/bash -c exec -la bash /bin/bash
2253 423 s000 S+ 0:00.02 -bash
2254 442 s001 Ss 0:00.02 login -pfl dom /bin/bash -c exec -la bash /bin/bash
2255 457 s001 S+ 0:00.02 -bash
2256 466 s002 Ss 0:00.02 login -pfl dom /bin/bash -c exec -la bash /bin/bash
2257 467 s002 S+ 0:00.02 -bash
2258 477 s003 Ss 0:00.02 login -pf dom
2259 478 s003 S+ 0:00.05 -bash
2260 1956 s005 Ss+ 0:00.01 /bin/bash --noediting -i
2261 2154 s006 Ss+ 0:00.12 /bin/bash --noediting -i
2262 2209 s007 Ss+ 0:00.12 /bin/bash --noediting -i
226359880 s008 S 0:03.08 bash --rcfile /var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/nix-shell.XLl0cT/rc
226470495 s008 S+ 0:01.76 /nix/store/jdp21v134b58vxip5dwhy4nvlijix8k4-stack-1.6.3/bin/stack --no-nix --no-docker --system-ghc --extra-lib-dirs=/nix/store/yxq5xw3mjba33iffyd9imdf22y3v75d1-blas-3.7.1/lib --extra-include-dirs=/nix/store/yxq5xw3mjba33iffyd9imdf22y3v75d1-blas-3.7.1/include --extra-lib-dirs=/nix/store/1wmr81zlj076w8hcxqd6f0z0anbf5r78-liblapack-3.4.1/lib --extra-include-dirs=/nix/store/1wmr81zlj076w8hcxqd6f0z0anbf5r78-liblapack-3.4.1/include --extra-lib-dirs=/nix/store/342qfcl7fyz6j265xw6kx1ww13r3kfgh-pkg-config-0.29.2/lib --extra-include-dirs=/nix/store/342qfcl7fyz6j265xw6kx1ww13r3kfgh-pkg-config-0.29.2/include --extra-lib-dirs=/nix/store/fbdlw77x1sx07k4wm3gp3mam31xa5dzs-gsl-2.4/lib --extra-include-dirs=/nix/store/fbdlw77x1sx07k4wm3gp3mam31xa5dzs-gsl-2.4/include --extra-lib-dirs=/nix/store/j9y3nr2s79sydvzwsm2vdqv7zdqzlgq6-gfortran-6.4.0-lib/lib --extra-include-dirs=/nix/store/1jpy3x2iwrn41zcb2bqapkrdapa9afdi-gfortran-6.4.0/include --extra-lib-dirs=/nix/store/hvx7krkvff3062bhq0wbiwmi7i9yqph1-cairo-1.14.10/lib --extra-include-dirs=/nix/store/hnprb82j8k2db5piyjq81pdxpsb4ri2f-cairo-1.14.10-dev/include --extra-lib-dirs=/nix/store/n0z919r62hmd4ng154rq81lv252ip2qq-glib-2.54.2/lib --extra-include-dirs=/nix/store/m6bkchla4wrn4vwz9dzhak6rr7x00z6f-glib-2.54.2-dev/include --extra-lib-dirs=/nix/store/r930cqdzwqmib5rx741hrh2y9d1sxvg0-pango-1.40.14/lib --extra-include-dirs=/nix/store/3bv97mjvkpqfhjnfgs9nsvljd2ay6505-pango-1.40.14-dev/include --extra-lib-dirs=/nix/store/j40m43v5xyjpx9zajhawbzf95y376ar4-zlib-1.2.11/lib --extra-include-dirs=/nix/store/zf4zyavkmv7vjpm95xmx3fbsg2vs1nm5-zlib-1.2.11-dev/include --extra-lib-dirs=/nix/store/lc925njk16dcy30f9kgk8v99izijgghm-git-2.16.1/lib --extra-include-dirs=/nix/store/lc925njk16dcy30f9kgk8v99izijgghm-git-2.16.1/include --extra-lib-dirs=/nix/store/zca3p7xczpb8qmfbadqrnfcmcnkj8vk0-ghostscript-9.22/lib --extra-include-dirs=/nix/store/zca3p7xczpb8qmfbadqrnfcmcnkj8vk0-ghostscript-9.22/include --extra-lib-dirs=/nix/store/fi9nyzxcmvhmf23r0aigznll1fi97jqp-zulu1.8.0_121-8.20.0.5/lib --extra-include-dirs=/nix/store/fi9nyzxcmvhmf23r0aigznll1fi97jqp-zulu1.8.0_121-8.20.0.5/include --extra-lib-dirs=/nix/store/fas5i8issz8ypcbsi0jp5wm4bmr06pxa-gradle-4.5/lib --extra-include-dirs=/nix/store/fas5i8issz8ypcbsi0jp5wm4bmr06pxa-gradle-4.5/include --extra-lib-dirs=/nix/store/7j6mbxbaipqai8zmzxqg75m976gm9rir-spark-2.2.1/lib --extra-include-dirs=/nix/store/7j6mbxbaipqai8zmzxqg75m976gm9rir-spark-2.2.1/include --extra-lib-dirs=/nix/store/j40m43v5xyjpx9zajhawbzf95y376ar4-zlib-1.2.11/lib --extra-include-dirs=/nix/store/zf4zyavkmv7vjpm95xmx3fbsg2vs1nm5-zlib-1.2.11-dev/include --extra-lib-dirs=/nix/store/6wswnvd63wjv7znb5k65fmg82d6drvya-zip-3.0/lib --extra-include-dirs=/nix/store/6wswnvd63wjv7znb5k65fmg82d6drvya-zip-3.0/include --extra-lib-dirs=/nix/store/yih6krar7kb1f9dxa2skjbw35igcrlrs-which-2.21/lib --extra-include-dirs=/nix/store/yih6krar7kb1f9dxa2skjbw35igcrlrs-which-2.21/include --extra-lib-dirs=/nix/store/vxni3jvvpz6xy0cd3w7gz0wjz61fymnx-R-3.4.3/lib --extra-include-dirs=/nix/store/vxni3jvvpz6xy0cd3w7gz0wjz61fymnx-R-3.4.3/include --extra-lib-dirs=/nix/store/7nbj4cxx0j4jzan4savcsqkcvifrn67k-stack/lib --extra-include-dirs=/nix/store/7nbj4cxx0j4jzan4savcsqkcvifrn67k-stack/include --extra-lib-dirs=/nix/store/9rh2h7vrgap9ms7aa6ryismpdcavgn3x-r-shiny-1.0.5/lib --extra-include-dirs=/nix/store/9rh2h7vrgap9ms7aa6ryismpdcavgn3x-r-shiny-1.0.5/include --extra-lib-dirs=/nix/store/shwzzya39qhi1zbil0wcz13yrq3dllwn-r-R.methodsS3-1.7.1/lib --extra-include-dirs=/nix/store/shwzzya39qhi1zbil0wcz13yrq3dllwn-r-R.methodsS3-1.7.1/include --extra-lib-dirs=/nix/store/kayyyzsbqfzm48gxaab51y0zfhjay14h-r-readr-1.1.1/lib --extra-include-dirs=/nix/store/kayyyzsbqfzm48gxaab51y0zfhjay14h-r-readr-1.1.1/include --extra-lib-dirs=/nix/store/cdrsy0rymvp19482461lzk7h45q4qw3j-r-colourpicker-1.0/lib --extra-include-dirs=/nix/store/cdrsy0rymvp19482461lzk7h45q4qw3j-r-colourpicker-1.0/include --extra-lib-dirs=/nix/store/2yxmshqklnda6r92bx0izz2xsiq57zhl-apple-framework-Accelerate/lib --extra-include-dirs=/nix/store/2yxmshqklnda6r92bx0izz2xsiq57zhl-apple-framework-Accelerate/include --extra-lib-dirs=/nix/store/fi9nyzxcmvhmf23r0aigznll1fi97jqp-zulu1.8.0_121-8.20.0.5/jre/lib/server repl simwork-core
226570509 s008 S+ 0:46.37 /nix/store/h0wrf0zxwcn9wjmwrz448w6sgxac20wr-ghc-8.2.2/lib/ghc-8.2.2/bin/ghc -B/nix/store/h0wrf0zxwcn9wjmwrz448w6sgxac20wr-ghc-8.2.2/lib/ghc-8.2.2 --interactive -i -odir=/Users/dom/simwork/.stack-work/odir -hidir=/Users/dom/simwork/.stack-work/odir -hide-all-packages -package base -i/Users/dom/simwork/core/src -i/Users/dom/simwork/core/.stack-work/dist/x86_64-osx-nix/Cabal-2.0.1.0/build/autogen -i/Users/dom/simwork/core/.stack-work/dist/x86_64-osx-nix/Cabal-2.0.1.0/build -stubdir=/Users/dom/simwork/core/.stack-work/dist/x86_64-osx-nix/Cabal-2.0.1.0/build -I/nix/store/1jpy3x2iwrn41zcb2bqapkrdapa9afdi-gfortran-6.4.0/include -I/nix/store/1wmr81zlj076w8hcxqd6f0z0anbf5r78-liblapack-3.4.1/include -I/nix/store/2yxmshqklnda6r92bx0izz2xsiq57zhl-apple-framework-Accelerate/include -I/nix/store/342qfcl7fyz6j265xw6kx1ww13r3kfgh-pkg-config-0.29.2/include -I/nix/store/3bv97mjvkpqfhjnfgs9nsvljd2ay6505-pango-1.40.14-dev/include -I/nix/store/6wswnvd63wjv7znb5k65fmg82d6drvya-zip-3.0/include -I/nix/store/7j6mbxbaipqai8zmzxqg75m976gm9rir-spark-2.2.1/include -I/nix/store/7nbj4cxx0j4jzan4savcsqkcvifrn67k-stack/include -I/nix/store/9rh2h7vrgap9ms7aa6ryismpdcavgn3x-r-shiny-1.0.5/include -I/nix/store/cdrsy0rymvp19482461lzk7h45q4qw3j-r-colourpicker-1.0/include -I/nix/store/fas5i8issz8ypcbsi0jp5wm4bmr06pxa-gradle-4.5/include -I/nix/store/fbdlw77x1sx07k4wm3gp3mam31xa5dzs-gsl-2.4/include -I/nix/store/fi9nyzxcmvhmf23r0aigznll1fi97jqp-zulu1.8.0_121-8.20.0.5/include -I/nix/store/hnprb82j8k2db5piyjq81pdxpsb4ri2f-cairo-1.14.10-dev/include -I/nix/store/kayyyzsbqfzm48gxaab51y0zfhjay14h-r-readr-1.1.1/include -I/nix/store/lc925njk16dcy30f9kgk8v99izijgghm-git-2.16.1/include -I/nix/store/m6bkchla4wrn4vwz9dzhak6rr7x00z6f-glib-2.54.2-dev/include -I/nix/store/shwzzya39qhi1zbil0wcz13yrq3dllwn-r-R.methodsS3-1.7.1/include -I/nix/store/vxni3jvvpz6xy0cd3w7gz0wjz61fymnx-R-3.4.3/include -I/nix/store/yih6krar7kb1f9dxa2skjbw35igcrlrs-which-2.21/include -I/nix/store/yxq5xw3mjba33iffyd9imdf22y3v75d1-blas-3.7.1/include -I/nix/store/zca3p7xczpb8qmfbadqrnfcmcnkj8vk0-ghostscript-9.22/include -I/nix/store/zf4zyavkmv7vjpm95xmx3fbsg2vs1nm5-zlib-1.2.11-dev/include -L/nix/store/1wmr81zlj076w8hcxqd6f0z0anbf5r78-liblapack-3.4.1/lib -L/nix/store/2yxmshqklnda6r92bx0izz2xsiq57zhl-apple-framework-Accelerate/lib -L/nix/store/342qfcl7fyz6j265xw6kx1ww13r3kfgh-pkg-config-0.29.2/lib -L/nix/store/6wswnvd63wjv7znb5k65fmg82d6drvya-zip-3.0/lib -L/nix/store/7j6mbxbaipqai8zmzxqg75m976gm9rir-spark-2.2.1/lib -L/nix/store/7nbj4cxx0j4jzan4savcsqkcvifrn67k-stack/lib -L/nix/store/9rh2h7vrgap9ms7aa6ryismpdcavgn3x-r-shiny-1.0.5/lib -L/nix/store/cdrsy0rymvp19482461lzk7h45q4qw3j-r-colourpicker-1.0/lib -L/nix/store/fas5i8issz8ypcbsi0jp5wm4bmr06pxa-gradle-4.5/lib -L/nix/store/fbdlw77x1sx07k4wm3gp3mam31xa5dzs-gsl-2.4/lib -L/nix/store/fi9nyzxcmvhmf23r0aigznll1fi97jqp-zulu1.8.0_121-8.20.0.5/jre/lib/server -L/nix/store/fi9nyzxcmvhmf23r0aigznll1fi97jqp-zulu1.8.0_121-8.20.0.5/lib -L/nix/store/hvx7krkvff3062bhq0wbiwmi7i9yqph1-cairo-1.14.10/lib -L/nix/store/j40m43v5xyjpx9zajhawbzf95y376ar4-zlib-1.2.11/lib -L/nix/store/j9y3nr2s79sydvzwsm2vdqv7zdqzlgq6-gfortran-6.4.0-lib/lib -L/nix/store/kayyyzsbqfzm48gxaab51y0zfhjay14h-r-readr-1.1.1/lib -L/nix/store/lc925njk16dcy30f9kgk8v99izijgghm-git-2.16.1/lib -L/nix/store/n0z919r62hmd4ng154rq81lv252ip2qq-glib-2.54.2/lib -L/nix/store/r930cqdzwqmib5rx741hrh2y9d1sxvg0-pango-1.40.14/lib -L/nix/store/shwzzya39qhi1zbil0wcz13yrq3dllwn-r-R.methodsS3-1.7.1/lib -L/nix/store/vxni3jvvpz6xy0cd3w7gz0wjz61fymnx-R-3.4.3/lib -L/nix/store/yih6krar7kb1f9dxa2skjbw35igcrlrs-which-2.21/lib -L/nix/store/yxq5xw3mjba33iffyd9imdf22y3v75d1-blas-3.7.1/lib -L/nix/store/zca3p7xczpb8qmfbadqrnfcmcnkj8vk0-ghostscript-9.22/lib -package-id=simwork-maths-0.1.0.3-ukMCXeMBhGBXVkDtkFTSL -package-id=uploader-0.1.0.3-DWhmEgtD6HfKCXxMuVkQSw -package-id=base-4.10.1.0 -package-id=basic-prelude-0.7.0-B8SKZiaFuQoFzYdXvbMcoV -package-id=ad-4.3.4-Cg0AkqjUoqhBFIjwZfOe8J -package-id=aeson-1.2.3.0-ugexjDh4BlCBSU1ypSCIP -package-id=aeson-diff-1.1.0.4-86uaToy7UCRLb1VfLuVv5k -package-id=binary-0.8.5.1 -package-id=bytestring-0.10.8.2 -package-id=cassava-0.5.1.0-8Vo4lCauT5jGxvRjtSAwXT -package-id=cmdargs-0.10.19-1DGjJwcPFlj37TlOylydIY -package-id=optparse-applicative-0.14.0.0-FNc2exOFxgHBsWauDR8LgY -package-id=clock-0.7.2-7eenmRf30tW97adCwu2PN3 -package-id=containers-0.5.10.2 -package-id=distributed-closure-0.3.4.0-KzHn9R2soJW5CaMRzkDamC -package-id=unordered-containers-0.2.8.0-6Q8cKU0tfULGVDjEZYkMDG -package-id=directory-1.3.0.2 -package-id=data-default-0.7.1.1-LLJD5aWfgkS1JjXQ4KEWbv -package-id=path-0.6.1-IKL8deZ7nDcDg1vUGEQOKD -package-id=process-1.6.1.0 -package-id=deepseq-1.4.3.0 -package-id=extra-1.6.2-5UpcCf56HjZ7Ya4738pbDF -package-id=formatting-6.2.5-5UIUoyESpxU894iPFsPVHu -package-id=hmatrix-0.18.1.0-AkvHNhF5r34CA2IslAxbHA -package-id=lens-4.15.4-GmKqEk0X9J2SBrs0I2AgZ -package-id=foldl-1.3.5-IgwUy8TVHWoG1s4DpI4Jf2 -package-id=mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH -package-id=regex-compat-0.95.1-vWU5STOtMi6yQryYjRhah -package-id=strict-0.3.2-8X7gei2OShnI8D6awEvqNq -package-id=text-1.2.2.2-9VTsh6V7U7hpagw2HDvpZ -package-id=uuid-1.3.13-HRZbiQPMaUdLvYuZvQOqMy -package-id=vector-0.12.0.1-IUGn3M9mkBh8CyXcBnfTR4 -package-id=checkers-0.4.9.5-4YL2WG4hWDpHtklCxf4jvO -package-id=quickcheck-text-0.1.2.1-DhLEnE9xoBE515lBNCgsgd -package-id=QuickCheck-2.10.1-Ewacc04OJICEFWthkI3IgS -package-id=hmatrix-gsl-0.18.0.1-jkYvAogVgFFExAXRNNXL -package-id=streaming-bytestring-0.1.5-7GMhsm8nAoGGFHq3YiYC58 -package-id=amazonka-1.5.0-9it3XyfYIIS5GGZDKivDST -package-id=amazonka-s3-1.5.0-1ro42QEZGoGEQ2CXuxAxc -package-id=filepath-1.4.1.2 -package-id=streaming-0.2.0.0-DSCVZfo30mAE1Q7ukrb5f0 -package-id=split-0.2.3.2-7cayvoeRj5XIrIBUB58mMy -package-id=url-2.1.3-B6Z4R7sjgqADEaceCK8Yyb -package-id=temporary-1.2.1.1-EaGJD8l9MwE6FMqsytxEjz -package-id=monad-control-1.0.2.2-JkRTKVbCEu5713tOJZv75D -package-id=exceptions-0.8.3-IMG8z9bQ0kKKt0LCvLfr9v -package-id=yaml-0.8.25.1-4DX1QyuoujLIqiOb8NXd00 -i/Users/dom/simwork/core/app -i/Users/dom/simwork/core/.stack-work/dist/x86_64-osx-nix/Cabal-2.0.1.0/build/simple-regression/simple-regression-tmp -fobject-code -optP-include -optP/private/var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/ghci70495/cabal_macros.h -ghci-script=/private/var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/ghci70495/ghci-script
226674656 s008 Ss 0:00.13 /bin/bash --noediting -i
226719934 s009 Ss+ 0:00.05 /bin/bash --noediting -i
226836233 s010 S 0:01.06 bash --rcfile /var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/nix-shell.6182yy/rc
226939769 s010 S+ 0:01.46 /nix/store/ya7ia6fscrnnchzhw2rcaigx5jr47bzf-ghc-8.2.2/lib/ghc-8.2.2/bin/ghc -B/nix/store/ya7ia6fscrnnchzhw2rcaigx5jr47bzf-ghc-8.2.2/lib/ghc-8.2.2 --interactive -B/nix/store/krjzjziv4ifxhhq84g9yzaj16iq9ql0y-ghc-8.2.2-with-packages/lib/ghc-8.2.2
227086831 s010 Ss 0:00.02 /bin/bash --noediting -i
227139054 s011 Ss+ 0:00.01 /bin/bash --noediting -i
227248862 s012 Ss+ 0:00.02 /bin/bash --noediting -i
227318778 s013 Ss 0:00.08 /bin/bash --noediting -i
227421586 s013 S+ 0:01.04 bash --rcfile /var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/nix-shell.AMwjGD/rc
227598818 s014 Ss+ 0:00.04 /bin/bash --noediting -i
227636816 s015 Ss 0:00.05 /bin/bash --noediting -i
227745714 s015 S 0:01.03 bash --rcfile /var/folders/h1/bkwn2ct12hvb6__dzrk5gwx80000gn/T/nix-shell.kYyGJI/rc
227849315 s015 R+ 0:00.01 ps ax
227949316 s015 S+ 0:00.01 grep coreaudio[a-z]\012
2280
2281[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ sudo kill -9 `ps ax|grep 'coreaudio[a-z]' | awk '{print $1}'`
2282Password:
2283
2284[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ ghci
2285GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
2286Prelude> 2.4 + 1.33227e-1
22872.533227
2288Prelude> 2.4 + 1.33227e-16
22892.4
2290Prelude> 2.4 + 2 * 1.33227e-16
22912.4000000000000004
2292Prelude> 2.4 + 1.33227e-16
22932.4
2294Prelude> :q
2295Leaving GHCi.
2296
2297[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ cmake
2298bash: cmake: command not found
2299
2300[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ cd
2301
2302[nix-shell:~]$ git clone https://github.com/LLNL/sundials.git
2303Cloning into 'sundials'...
2304remote: Counting objects: 2515, done.
2305remote: Total 2515 (delta 0), reused 0 (delta 0), pack-reused 2515
2306Receiving objects: 100% (2515/2515), 26.53 MiB | 1.43 MiB/s, done.
2307Resolving deltas: 100% (1739/1739), done.
2308
2309[nix-shell:~]$ exit
2310bash-3.2$ pwd
2311/Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators
2312bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2313these derivations will be built:
2314 /nix/store/ccnprpmd9yaclzv0ygaplwszpwgcr9cn-inline-r-0.9.1.drv
2315 /nix/store/381v8kl9s7zsjmyh0livjjjk28dvadzc-ghc-8.2.2-with-packages.drv
2316these paths will be fetched (37.55 MiB download, 155.45 MiB unpacked):
2317 /nix/store/5yrxhk1wiwvgyz4hvj3nvlwmajw433rk-gcc-7.3.0-lib
2318 /nix/store/6p30qzv3mjmac89ydh0jix8nfrqnpmi4-gcc-wrapper-7.3.0-man
2319 /nix/store/k4h6nvmbij9ikv30r6bdh10hqngc9hj1-gcc-7.3.0
2320 /nix/store/m81z2skf0g9pg8xv2lykq9l5sdxyi646-gcc-wrapper-7.3.0
2321 /nix/store/wi23h54l7zn6njxflys74sp5j3vw277m-gcc-7.3.0-man
2322fetching path ‘/nix/store/wi23h54l7zn6njxflys74sp5j3vw277m-gcc-7.3.0-man’...
2323fetching path ‘/nix/store/5yrxhk1wiwvgyz4hvj3nvlwmajw433rk-gcc-7.3.0-lib’...
2324building path(s) ‘/nix/store/73kyr3z5bxyfzmh5rfm7jc37p4aiayl1-inline-r-0.9.1-doc’, ‘/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1’
2325
2326*** Downloading ‘https://cache.nixos.org/nar/1r0dpbp36is1v1afbnjvjqzxswry5q0szfpcaq2sm07c7a8myb9f.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wi23h54l7zn6njxflys74sp5j3vw277m-gcc-7.3.0-man’...
2327
2328*** Downloading ‘https://cache.nixos.org/nar/1fphpq86z8i99w0lcx983z0gzhghq9yakb73fg2573cbqy56gyi4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5yrxhk1wiwvgyz4hvj3nvlwmajw433rk-gcc-7.3.0-lib’...
2329 % Total % Received % Xferd Average Speed Time Time Time Current
2330 Dload Upload Total Spent Left Speed
2331 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
2332 Dload Upload Total Spent Left Speed
2333100 355k 100 355k 0 0 355k 0 0:00:01 --:--:-- 0:00:01 370k
2334
2335fetching path ‘/nix/store/6p30qzv3mjmac89ydh0jix8nfrqnpmi4-gcc-wrapper-7.3.0-man’...
2336 17 771k 17 135k 0 0 135k 0 0:00:05 --:--:-- 0:00:05 140k
2337*** Downloading ‘https://cache.nixos.org/nar/0pvwff9w1yavfmfmpqnkfvyfnhrc3lpnijy0q0lxi457z4plb6gc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6p30qzv3mjmac89ydh0jix8nfrqnpmi4-gcc-wrapper-7.3.0-man’...
2338 % Total % Received % Xferd Average Speed Time Time Time Current
2339 Dload Upload Total Spent Left Speed
2340100 771k 100 771k 0 0 771k 0 0:00:01 0:00:01 --:--:-- 484k
2341
2342fetching path ‘/nix/store/k4h6nvmbij9ikv30r6bdh10hqngc9hj1-gcc-7.3.0’...
2343
2344*** Downloading ‘https://cache.nixos.org/nar/1w18mk920jr7pflq5csnb9gxy0aq0qi8dx2a7zszsilibvdi4lmy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k4h6nvmbij9ikv30r6bdh10hqngc9hj1-gcc-7.3.0’...
2345 % Total % Received % Xferd Average Speed Time Time Time Current
2346 Dload Upload Total Spent Left Speed
2347100 252 100 252 0 0 252 0 0:00:01 0:00:01 --:--:-- 194
2348
2349 0 36.4M 0 338k 0 0 338k 0 0:01:50 0:00:01 0:01:49 272ksetupCompilerEnvironmentPhase
2350Build with /nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2.
2351 20 36.4M 20 7547k 0 0 2515k 0 0:00:14 0:00:03 0:00:11 2328kunpacking sources
2352unpacking source archive /nix/store/wdmn6wmbx713sl38nsjf399bk7ha36dv-inline-r-0.9.1.tar.gz
2353source root is inline-r-0.9.1
2354setting SOURCE_DATE_EPOCH to timestamp 1516963599 of file inline-r-0.9.1/tests/tests.hs
2355patching sources
2356compileBuildDriverPhase
2357setupCompileFlags: -package-db=/private/tmp/nix-build-inline-r-0.9.1.drv-0/package.conf.d -j1 -threaded
2358[1 of 1] Compiling Main ( Setup.hs, /private/tmp/nix-build-inline-r-0.9.1.drv-0/Main.o )
2359 38 36.4M 38 14.0M 0 0 3607k 0 0:00:10 0:00:04 0:00:06 3400kLinking Setup ...
2360clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2361clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2362 78 36.4M 78 28.6M 0 0 4882k 0 0:00:07 0:00:06 0:00:01 5791kconfiguring
2363configureFlags: --verbose --prefix=/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --docdir=/nix/store/73kyr3z5bxyfzmh5rfm7jc37p4aiayl1-inline-r-0.9.1-doc/share/doc --with-gcc=clang --package-db=/private/tmp/nix-build-inline-r-0.9.1.drv-0/package.conf.d --ghc-option=-optl=-Wl,-headerpad_max_install_names --ghc-option=-j1 --disable-split-objs --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-library-vanilla --enable-executable-dynamic --enable-tests --extra-include-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/include --extra-lib-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/lib --extra-lib-dirs=/nix/store/a67rhbgwb41j11j6mgww3y0gq4pg0lmp-ncurses-6.0-20171125/lib --extra-lib-dirs=/nix/store/lasa9z5jcwhq3djd3mw8q9b0a75da5as-gmp-6.1.2/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-lib-dirs=/nix/store/ahrwr29rdmjzfvn6zxd2wnz14z4l3spx-R-3.4.3/lib
2364100 36.4M 100 36.4M 0 0 5330k 0 0:00:07 0:00:07 --:--:-- 7352k
2365
2366fetching path ‘/nix/store/m81z2skf0g9pg8xv2lykq9l5sdxyi646-gcc-wrapper-7.3.0’...
2367Configuring inline-r-0.9.1...
2368Dependency aeson >=0.6: using aeson-1.2.4.0
2369Dependency base >=4.7 && <5: using base-4.10.1.0
2370Dependency bytestring >=0.10: using bytestring-0.10.8.2
2371Dependency containers >=0.5: using containers-0.5.10.2
2372Dependency data-default-class -any: using data-default-class-0.1.2.0
2373Dependency deepseq >=1.3: using deepseq-1.4.3.0
2374Dependency directory >=1.2: using directory-1.3.0.2
2375Dependency exceptions >=0.6 && <1.1: using exceptions-0.8.3
2376Dependency filepath >=1.3: using filepath-1.4.1.2
2377Dependency ieee754 >=0.7: using ieee754-0.8.0
2378Dependency inline-c ==0.6.*: using inline-c-0.6.0.5
2379Dependency inline-r -any: using inline-r-0.9.1
2380Dependency mtl >=2.1: using mtl-2.2.1
2381Dependency pretty >=1.1: using pretty-1.1.3.3
2382Dependency primitive >=0.5: using primitive-0.6.3.0
2383Dependency process >=1.2: using process-1.6.1.0
2384Dependency quickcheck-assertions >=0.1.1: using quickcheck-assertions-0.3.0
2385Dependency reflection >=2: using reflection-2.1.3
2386Dependency setenv >=0.1.1: using setenv-0.1.1.3
2387Dependency silently >=1.2: using silently-1.2.5
2388Dependency singletons >=0.10: using singletons-2.3.1
2389Dependency strict >=0.3.2: using strict-0.3.2
2390Dependency tasty >=0.11: using tasty-0.11.3
2391Dependency tasty-expected-failure >=0.11: using
2392tasty-expected-failure-0.11.0.4
2393Dependency tasty-golden >=2.3: using tasty-golden-2.3.1.2
2394Dependency tasty-hunit >=0.4.1: using tasty-hunit-0.9.2
2395Dependency tasty-quickcheck >=0.4.1: using tasty-quickcheck-0.9.1
2396Dependency template-haskell >=2.8: using template-haskell-2.12.0.0
2397Dependency temporary >=1.2: using temporary-1.2.1.1
2398Dependency text >=0.11: using text-1.2.2.2
2399Dependency th-lift >=0.6: using th-lift-0.7.8
2400Dependency th-orphans >=0.8: using th-orphans-0.13.5
2401Dependency transformers >=0.3: using transformers-0.5.2.0
2402Dependency unix >=2.6: using unix-2.7.2.2
2403Dependency vector >=0.10 && <0.13: using vector-0.12.0.1
2404
2405*** Downloading ‘https://cache.nixos.org/nar/1c77fmgjl1wy8wkmsl4856rpa925i4m80jph3h7w5wrdf1fs9ir0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m81z2skf0g9pg8xv2lykq9l5sdxyi646-gcc-wrapper-7.3.0’...
2406 % Total % Received % Xferd Average Speed Time Time Time Current
2407 Dload Upload Total Spent Left Speed
2408 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2409Dependency libR >=3.0: using version 3.4.3
2410Source component graph:
2411 component lib
2412 component test:test-qq dependency lib
2413 component test:test-shootout dependency lib
2414 component test:tests dependency lib
2415Configured component graph:
2416 component inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2417 include base-4.10.1.0
2418 include aeson-1.2.4.0-4cLVQkQqqOiDavYWPkGtAL
2419 include bytestring-0.10.8.2
2420 include containers-0.5.10.2
2421 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
2422 include deepseq-1.4.3.0
2423 include exceptions-0.8.3-9THiM5E4YN6F7j5jpmZca3
2424 include mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2425 include pretty-1.1.3.3
2426 include primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
2427 include process-1.6.1.0
2428 include reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
2429 include setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
2430 include singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2431 include template-haskell-2.12.0.0
2432 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2433 include th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
2434 include th-orphans-0.13.5-HMWmRXPRYMcG9fplWsqi52
2435 include transformers-0.5.2.0
2436 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
2437 include inline-c-0.6.0.5-A3pWYE0vXav8wt4cBowHpq
2438 include unix-2.7.2.2
2439 component inline-r-0.9.1-GmMv9buYftzCaauvaQMlQx-test-qq
2440 include inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2441 include base-4.10.1.0
2442 include mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2443 include process-1.6.1.0
2444 include tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2445 include singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2446 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2447 component inline-r-0.9.1-2E65FJwvOa9AWLroYGtmhC-test-shootout
2448 include inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2449 include base-4.10.1.0
2450 include filepath-1.4.1.2
2451 include process-1.6.1.0
2452 include silently-1.2.5-C2jJ2lQssGk7Qz4p18GqjV
2453 include tasty-0.11.3-5c1b316NMlfAY58kPfwEZU
2454 include tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2455 include template-haskell-2.12.0.0
2456 component inline-r-0.9.1-92BGUsNQStwH0zXPsS9VeS-tests
2457 include inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2458 include base-4.10.1.0
2459 include bytestring-0.10.8.2
2460 include directory-1.3.0.2
2461 include filepath-1.4.1.2
2462 include ieee754-0.8.0-B9FdsnFZjDO5G55ttUSqU0
2463 include mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2464 include process-1.6.1.0
2465 include quickcheck-assertions-0.3.0-1lRAo45XA9KAcnLUm4iUAt
2466 include singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2467 include strict-0.3.2-8X7gei2OShnI8D6awEvqNq
2468 include tasty-0.11.3-5c1b316NMlfAY58kPfwEZU
2469 include tasty-expected-failure-0.11.0.4-FdG4WOfOJKq5QFrDVpmcGn
2470 include tasty-golden-2.3.1.2-2aG3aBLzM049zAwPDTA7tQ
2471 include tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2472 include tasty-quickcheck-0.9.1-F7wj5YDbW2yCILDmxLnRKE
2473 include temporary-1.2.1.1-Ipir8907lxpAgZX4k1wdMi
2474 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2475 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
2476 include unix-2.7.2.2
2477Linked component graph:
2478 unit inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2479 include base-4.10.1.0
2480 include aeson-1.2.4.0-4cLVQkQqqOiDavYWPkGtAL
2481 include bytestring-0.10.8.2
2482 include containers-0.5.10.2
2483 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
2484 include deepseq-1.4.3.0
2485 include exceptions-0.8.3-9THiM5E4YN6F7j5jpmZca3
2486 include mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2487 include pretty-1.1.3.3
2488 include primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
2489 include process-1.6.1.0
2490 include reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
2491 include setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
2492 include singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2493 include template-haskell-2.12.0.0
2494 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2495 include th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
2496 include th-orphans-0.13.5-HMWmRXPRYMcG9fplWsqi52
2497 include transformers-0.5.2.0
2498 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
2499 include inline-c-0.6.0.5-A3pWYE0vXav8wt4cBowHpq
2500 include unix-2.7.2.2
2501 Control.Memory.Region=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Control.Memory.Region,Data.Vector.SEXP=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Data.Vector.SEXP,Data.Vector.SEXP.Base=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Data.Vector.SEXP.Base,Data.Vector.SEXP.Mutable=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Data.Vector.SEXP.Mutable,Foreign.R=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R,Foreign.R.Constraints=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Constraints,Foreign.R.Context=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Context,Foreign.R.Embedded=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Embedded,Foreign.R.Error=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Error,Foreign.R.EventLoop=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.EventLoop,Foreign.R.Internal=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Internal,Foreign.R.Parse=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Parse,Foreign.R.Type=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Foreign.R.Type,H.Prelude=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:H.Prelude,H.Prelude.Interactive=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:H.Prelude.Interactive,Language.R=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R,Language.R.Debug=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Debug,Language.R.Event=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Event,Language.R.GC=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.GC,Language.R.Globals=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Globals,Language.R.HExp=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.HExp,Language.R.Instance=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Instance,Language.R.Internal=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Internal,Language.R.Internal.FunWrappers=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Internal.FunWrappers,Language.R.Internal.FunWrappers.TH=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Internal.FunWrappers.TH,Language.R.Literal=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Literal,Language.R.Matcher=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.Matcher,Language.R.QQ=inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw:Language.R.QQ
2502 unit inline-r-0.9.1-GmMv9buYftzCaauvaQMlQx-test-qq
2503 include inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2504 include base-4.10.1.0
2505 include mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2506 include process-1.6.1.0
2507 include tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2508 include singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2509 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2510 unit inline-r-0.9.1-2E65FJwvOa9AWLroYGtmhC-test-shootout
2511 include inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2512 include base-4.10.1.0
2513 include filepath-1.4.1.2
2514 include process-1.6.1.0
2515 include silently-1.2.5-C2jJ2lQssGk7Qz4p18GqjV
2516 include tasty-0.11.3-5c1b316NMlfAY58kPfwEZU
2517 include tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2518 include template-haskell-2.12.0.0
2519 unit inline-r-0.9.1-92BGUsNQStwH0zXPsS9VeS-tests
2520 include inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2521 include base-4.10.1.0
2522 include bytestring-0.10.8.2
2523 include directory-1.3.0.2
2524 include filepath-1.4.1.2
2525 include ieee754-0.8.0-B9FdsnFZjDO5G55ttUSqU0
2526 include mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2527 include process-1.6.1.0
2528 include quickcheck-assertions-0.3.0-1lRAo45XA9KAcnLUm4iUAt
2529 include singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2530 include strict-0.3.2-8X7gei2OShnI8D6awEvqNq
2531 include tasty-0.11.3-5c1b316NMlfAY58kPfwEZU
2532 include tasty-expected-failure-0.11.0.4-FdG4WOfOJKq5QFrDVpmcGn
2533 include tasty-golden-2.3.1.2-2aG3aBLzM049zAwPDTA7tQ
2534 include tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2535 include tasty-quickcheck-0.9.1-F7wj5YDbW2yCILDmxLnRKE
2536 include temporary-1.2.1.1-Ipir8907lxpAgZX4k1wdMi
2537 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2538 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0lawpRjIcMJIYPJVsWriIA
2539 include unix-2.7.2.2
2540Ready component graph:
2541 definite inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2542 depends base-4.10.1.0
2543 depends aeson-1.2.4.0-4cLVQkQqqOiDavYWPkGtAL
2544 depends bytestring-0.10.8.2
2545 depends containers-0.5.10.2
2546 depends data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
2547 depends deepseq-1.4.3.0
2548 depends exceptions-0.8.3-9THiM5E4YN6F7j5jpmZca3
2549 depends mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2550 depends pretty-1.1.3.3
2551 depends primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
2552 depends process-1.6.1.0
2553 depends reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
2554 depends setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
2555 depends singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2556 depends template-haskell-2.12.0.0
2557 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2558 depends th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
2559 depends th-orphans-0.13.5-HMWmRXPRYMcG9fplWsqi52
2560 depends transformers-0.5.2.0
2561 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
2562 depends inline-c-0.6.0.5-A3pWYE0vXav8wt4cBowHpq
2563 depends unix-2.7.2.2
2564 definite inline-r-0.9.1-GmMv9buYftzCaauvaQMlQx-test-qq
2565 depends inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2566 depends base-4.10.1.0
2567 depends mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2568 depends process-1.6.1.0
2569 depends tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2570 depends singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2571 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2572 definite inline-r-0.9.1-92BGUsNQStwH0zXPsS9VeS-tests
2573 depends inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2574 depends base-4.10.1.0
2575 depends bytestring-0.10.8.2
2576 depends directory-1.3.0.2
2577 depends filepath-1.4.1.2
2578 depends ieee754-0.8.0-B9FdsnFZjDO5G55ttUSqU0
2579 depends mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUH
2580 depends process-1.6.1.0
2581 depends quickcheck-assertions-0.3.0-1lRAo45XA9KAcnLUm4iUAt
2582 depends singletons-2.3.1-J0tb2rQltB02BAMlEBxumO
2583 depends strict-0.3.2-8X7gei2OShnI8D6awEvqNq
2584 depends tasty-0.11.3-5c1b316NMlfAY58kPfwEZU
2585 depends tasty-expected-failure-0.11.0.4-FdG4WOfOJKq5QFrDVpmcGn
2586 depends tasty-golden-2.3.1.2-2aG3aBLzM049zAwPDTA7tQ
2587 depends tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2588 depends tasty-quickcheck-0.9.1-F7wj5YDbW2yCILDmxLnRKE
2589 depends temporary-1.2.1.1-Ipir8907lxpAgZX4k1wdMi
2590 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
2591 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
2592 depends unix-2.7.2.2
2593 definite inline-r-0.9.1-2E65FJwvOa9AWLroYGtmhC-test-shootout
2594 depends inline-r-0.9.1-JJ04oGOhI5JEl3sLliZmEw
2595 depends base-4.10.1.0
2596 depends filepath-1.4.1.2
2597 depends process-1.6.1.0
2598 depends silently-1.2.5-C2jJ2lQssGk7Qz4p18GqjV
2599 depends tasty-0.11.3-5c1b316NMlfAY58kPfwEZU
2600 depends tasty-hunit-0.9.2-EAC2yQ6wfEO2K93z8Yd6jk
2601 depends template-haskell-2.12.0.0
2602Using Cabal-2.0.1.0 compiled by ghc-8.2
2603Using compiler: ghc-8.2.2
2604Using install prefix:
2605/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1
2606Executables installed in:
2607/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1/bin
2608Libraries installed in:
2609/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1/lib/ghc-8.2.2/inline-r-0.9.1
2610Dynamic Libraries installed in:
2611/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2
2612Private executables installed in:
2613/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1/libexec/x86_64-osx-ghc-8.2.2/inline-r-0.9.1
2614Data files installed in:
2615/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1/share/x86_64-osx-ghc-8.2.2/inline-r-0.9.1
2616Documentation installed in:
2617/nix/store/73kyr3z5bxyfzmh5rfm7jc37p4aiayl1-inline-r-0.9.1-doc/share/doc
2618Configuration files installed in:
2619/nix/store/rby4np11q92140hd1hqvyw3cyscs8fs2-inline-r-0.9.1/etc
2620No alex found
2621Using ar found on system at:
2622/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/ar
2623No c2hs found
2624No cpphs found
2625No doctest found
2626Using gcc version 4.2.1 given by user at:
2627/nix/store/53h1zds6q5k4ab4l7430fbddn0l0iq1c-clang-wrapper-5.0.1/bin/clang
2628Using ghc version 8.2.2 found on system at:
2629/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/bin/ghc
2630Using ghc-pkg version 8.2.2 found on system at:
2631/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/bin/ghc-pkg
2632No ghcjs found
2633No ghcjs-pkg found
2634No greencard found
2635Using haddock version 2.18.1 found on system at:
2636/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/bin/haddock
2637No happy found
2638Using haskell-suite found on system at: haskell-suite-dummy-location
2639Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
2640No hmake found
2641Using hpc version 0.67 found on system at:
2642/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/bin/hpc
2643Using hsc2hs version 0.68.2 found on system at:
2644/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/bin/hsc2hs
2645Using hscolour version 1.24 found on system at:
2646/nix/store/x6rjg1hqqcg1agmaqf40vx79ywni5wv8-hscolour-1.24.2/bin/HsColour
2647No jhc found
2648Using ld found on system at:
2649/nix/store/cjhrjh6brgy1wahgbh5wqrflnb447bf8-cctools-binutils-darwin-wrapper/bin/ld
2650No lhc found
2651No lhc-pkg found
2652Using pkg-config version 0.29.2 found on system at:
2653/nix/store/j2zsla2jd1kmh67n95di6v8769jynwp8-pkg-config-0.29.2/bin/pkg-config
2654Using runghc version 8.2.2 found on system at:
2655/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/bin/runghc
2656Using strip found on system at:
2657/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
2658Using tar found on system at:
2659/nix/store/nwj6x1d0bz45nzsch3rhnfa5wi4kf4nk-gnutar-1.30/bin/tar
2660No uhc found
2661100 6720 100 6720 0 0 6720 0 0:00:01 --:--:-- 0:00:01 12398
2662building
2663
2664Preprocessing library for inline-r-0.9.1..
2665HExp.hsc:80:9: warning: 'hsc_alignment' macro redefined [-Wmacro-redefined]
2666#define hsc_alignment(t ) hsc_printf ( "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__));
2667 ^
2668/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/lib/ghc-8.2.2/template-hsc.h:91:9: note: previous definition is here
2669#define hsc_alignment(x...) \
2670 ^
26711 warning generated.
2672In file included from EventLoop.hsc:29:
2673/nix/store/ahrwr29rdmjzfvn6zxd2wnz14z4l3spx-R-3.4.3/lib/R/include/R_ext/eventloop.h:87:35: warning: declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
2674 fd_set *exceptfds, struct timeval *timeout,
2675 ^
2676EventLoop.hsc:30:9: warning: 'hsc_alignment' macro redefined [-Wmacro-redefined]
2677#define hsc_alignment(t ) hsc_printf ( "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__));
2678 ^
2679/nix/store/plm7fql53l3kzijzafzqri398jd9s59f-ghc-8.2.2/lib/ghc-8.2.2/template-hsc.h:91:9: note: previous definition is here
2680#define hsc_alignment(x...) \
2681 ^
26822 warnings generated.
2683Building library for inline-r-0.9.1..
2684[ 1 of 35] Compiling Control.Memory.Region ( src/Control/Memory/Region.hs, dist/build/Control/Memory/Region.o )
2685[ 2 of 35] Compiling Foreign.R.Embedded ( dist/build/Foreign/R/Embedded.hs, dist/build/Foreign/R/Embedded.o )
2686[ 3 of 35] Compiling Foreign.R.Error ( dist/build/Foreign/R/Error.hs, dist/build/Foreign/R/Error.o )
2687[ 4 of 35] Compiling Foreign.R.EventLoop ( dist/build/Foreign/R/EventLoop.hs, dist/build/Foreign/R/EventLoop.o )
2688[ 5 of 35] Compiling Foreign.R.Type[boot] ( dist/build/Foreign/R/Type.hs-boot, dist/build/Foreign/R/Type.o-boot )
2689[ 6 of 35] Compiling Foreign.R.Constraints ( src/Foreign/R/Constraints.hs, dist/build/Foreign/R/Constraints.o )
2690[ 7 of 35] Compiling Internal.Error ( src/Internal/Error.hs, dist/build/Internal/Error.o )
2691[ 8 of 35] Compiling Foreign.R.Context ( dist/build/Foreign/R/Context.hs, dist/build/Foreign/R/Context.o )
2692[ 9 of 35] Compiling Foreign.R.Type ( dist/build/Foreign/R/Type.hs, dist/build/Foreign/R/Type.o )
2693[10 of 35] Compiling Language.R.HExp[boot] ( dist/build/Language/R/HExp.hs-boot, dist/build/Language/R/HExp.o-boot )
2694[11 of 35] Compiling Foreign.R.Internal ( dist/build/Foreign/R/Internal.hs, dist/build/Foreign/R/Internal.o )
2695clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2696clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2697clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2698clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2699[12 of 35] Compiling Foreign.R ( dist/build/Foreign/R.hs, dist/build/Foreign/R.o )
2700clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2701
2702/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc82180_0/ghc_99.c:89:8: error:
2703 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
2704 |
270589 | return ( RAW(s_inline_c_0) );
2706 | ^
2707return ( RAW(s_inline_c_0) );
2708 ^~~~~~~~~~~~~~~~~~~~~
27091 warning generated.
2710clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2711clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2712
2713/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc82180_0/ghc_108.c:89:8: error:
2714 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
2715 |
271689 | return ( RAW(s_inline_c_0) );
2717 | ^
2718return ( RAW(s_inline_c_0) );
2719 ^~~~~~~~~~~~~~~~~~~~~
27201 warning generated.
2721clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2722[13 of 35] Compiling Language.R.Globals ( src/Language/R/Globals.hs, dist/build/Language/R/Globals.o )
2723[14 of 35] Compiling Foreign.R.Parse ( dist/build/Foreign/R/Parse.hs, dist/build/Foreign/R/Parse.o )
2724[15 of 35] Compiling Data.Vector.SEXP.Base ( src/Data/Vector/SEXP/Base.hs, dist/build/Data/Vector/SEXP/Base.o )
2725[16 of 35] Compiling Control.Monad.R.Class ( src/Control/Monad/R/Class.hs, dist/build/Control/Monad/R/Class.o )
2726[17 of 35] Compiling Language.R.GC ( src/Language/R/GC.hs, dist/build/Language/R/GC.o )
2727[18 of 35] Compiling Language.R.Event ( src/Language/R/Event.hs, dist/build/Language/R/Event.o )
2728[19 of 35] Compiling Control.Monad.R.Internal ( src/Control/Monad/R/Internal.hs, dist/build/Control/Monad/R/Internal.o )
2729[20 of 35] Compiling Data.Vector.SEXP.Mutable.Internal ( src/Data/Vector/SEXP/Mutable/Internal.hs, dist/build/Data/Vector/SEXP/Mutable/Internal.o )
2730[21 of 35] Compiling Data.Vector.SEXP.Mutable ( src/Data/Vector/SEXP/Mutable.hs, dist/build/Data/Vector/SEXP/Mutable.o )
2731[22 of 35] Compiling Data.Vector.SEXP ( src/Data/Vector/SEXP.hs, dist/build/Data/Vector/SEXP.o )
2732[23 of 35] Compiling Language.R.HExp ( dist/build/Language/R/HExp.hs, dist/build/Language/R/HExp.o )
2733[24 of 35] Compiling Language.R.Debug ( src/Language/R/Debug.hs, dist/build/Language/R/Debug.o )
2734[25 of 35] Compiling Language.R.Instance ( src/Language/R/Instance.hs, dist/build/Language/R/Instance.o )
2735[26 of 35] Compiling Language.R.Internal[boot] ( src/Language/R/Internal.hs-boot, dist/build/Language/R/Internal.o-boot )
2736[27 of 35] Compiling Language.R.Internal.FunWrappers.TH ( src/Language/R/Internal/FunWrappers/TH.hs, dist/build/Language/R/Internal/FunWrappers/TH.o )
2737[28 of 35] Compiling Language.R.Internal.FunWrappers ( src/Language/R/Internal/FunWrappers.hs, dist/build/Language/R/Internal/FunWrappers.o )
2738clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2739clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2740clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2741clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2742[29 of 35] Compiling Language.R.Literal ( src/Language/R/Literal.hs, dist/build/Language/R/Literal.o )
2743[30 of 35] Compiling Language.R ( src/Language/R.hs, dist/build/Language/R.o )
2744[31 of 35] Compiling Language.R.Internal ( src/Language/R/Internal.hs, dist/build/Language/R/Internal.o )
2745[32 of 35] Compiling Language.R.QQ ( src/Language/R/QQ.hs, dist/build/Language/R/QQ.o )
2746[33 of 35] Compiling H.Prelude ( src/H/Prelude.hs, dist/build/H/Prelude.o )
2747[34 of 35] Compiling Language.R.Matcher ( src/Language/R/Matcher.hs, dist/build/Language/R/Matcher.o )
2748[35 of 35] Compiling H.Prelude.Interactive ( src/H/Prelude/Interactive.hs, dist/build/H/Prelude/Interactive.o )
2749clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2750clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2751Preprocessing test suite 'test-qq' for inline-r-0.9.1..
2752Building test suite 'test-qq' for inline-r-0.9.1..
2753[1 of 1] Compiling Main ( tests/test-qq.hs, dist/build/test-qq/test-qq-tmp/Main.dyn_o )
2754Linking dist/build/test-qq/test-qq ...
2755clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2756clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2757Preprocessing test suite 'tests' for inline-r-0.9.1..
2758Building test suite 'tests' for inline-r-0.9.1..
2759[1 of 8] Compiling Test.Constraints ( tests/Test/Constraints.hs, dist/build/tests/tests-tmp/Test/Constraints.dyn_o )
2760[2 of 8] Compiling Test.Event ( tests/Test/Event.hs, dist/build/tests/tests-tmp/Test/Event.dyn_o )
2761clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2762clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2763[3 of 8] Compiling Test.FunPtr ( tests/Test/FunPtr.hs, dist/build/tests/tests-tmp/Test/FunPtr.dyn_o )
2764[4 of 8] Compiling Test.GC ( tests/Test/GC.hs, dist/build/tests/tests-tmp/Test/GC.dyn_o )
2765[5 of 8] Compiling Test.Matcher ( tests/Test/Matcher.hs, dist/build/tests/tests-tmp/Test/Matcher.dyn_o )
2766[6 of 8] Compiling Test.Regions ( tests/Test/Regions.hs, dist/build/tests/tests-tmp/Test/Regions.dyn_o )
2767[7 of 8] Compiling Test.Vector ( tests/Test/Vector.hs, dist/build/tests/tests-tmp/Test/Vector.dyn_o )
2768[8 of 8] Compiling Main ( tests/tests.hs, dist/build/tests/tests-tmp/Main.dyn_o )
2769Linking dist/build/tests/tests ...
2770clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2771clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2772Preprocessing test suite 'test-shootout' for inline-r-0.9.1..
2773Building test suite 'test-shootout' for inline-r-0.9.1..
2774[1 of 2] Compiling Test.Scripts ( tests/Test/Scripts.hs, dist/build/test-shootout/test-shootout-tmp/Test/Scripts.dyn_o )
2775[2 of 2] Compiling Main ( tests/test-shootout.hs, dist/build/test-shootout/test-shootout-tmp/Main.dyn_o )
2776Linking dist/build/test-shootout/test-shootout ...
2777clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2778clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
2779running tests
2780Running 3 test suites...
2781Test suite test-qq: RUNNING...
2782Test suite test-qq: PASS
2783Test suite logged to: dist/test/inline-r-0.9.1-test-qq.log
2784Test suite tests: RUNNING...
2785Unit tests
2786 fromSEXP . mkSEXP: OK
2787 HEq HExp: OK
2788 Haskell function from R: Error: C stack usage 17587362313056 is too close to the limit
2789Execution halted
2790Test suite tests: FAIL
2791Test suite logged to: dist/test/inline-r-0.9.1-tests.log
2792Test suite test-shootout: RUNNING...
2793Quoted shootout programs
2794 tests/shootout/binarytrees.R: Error: C stack usage 17587289256800 is too close to the limit
2795Execution halted
2796Test suite test-shootout: FAIL
2797Test suite logged to: dist/test/inline-r-0.9.1-test-shootout.log
27981 of 3 test suites (1 of 3 test cases) passed.
2799builder for ‘/nix/store/ccnprpmd9yaclzv0ygaplwszpwgcr9cn-inline-r-0.9.1.drv’ failed with exit code 1
2800cannot build derivation ‘/nix/store/381v8kl9s7zsjmyh0livjjjk28dvadzc-ghc-8.2.2-with-packages.drv’: 1 dependencies couldn't be built
2801error: build of ‘/nix/store/381v8kl9s7zsjmyh0livjjjk28dvadzc-ghc-8.2.2-with-packages.drv’ failed
2802/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
2803bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2804
2805[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2806error: undefined variable ‘stdenv’ at /Users/dom/nixpkgs/pkgs/development/libraries/sundials/default.nix:3:1
2807(use ‘--show-trace’ to show detailed location information)
2808
2809[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ exit
2810bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2811
2812[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ exit
2813bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2814error: undefined variable ‘stdenv’ at /Users/dom/nixpkgs/pkgs/development/libraries/sundials/default.nix:3:1
2815(use ‘--show-trace’ to show detailed location information)
2816bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2817
2818[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ exit
2819bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
2820
2821[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ exit
2822bash-3.2$ git status
2823On branch master
2824Your branch is up-to-date with 'origin/master'.
2825
2826Changes to be committed:
2827 (use "git reset HEAD <file>..." to unstage)
2828
2829 new file: ../variational/shell.nix
2830
2831Changes not staged for commit:
2832 (use "git add/rm <file>..." to update what will be committed)
2833 (use "git checkout -- <file>..." to discard changes in working directory)
2834
2835 deleted: ../Chart.hs
2836 deleted: ../Diagrams.hs
2837 deleted: ../ForTrevor.jl
2838 modified: ../HaskellX/HaskellX.cabal
2839 modified: ../HaskellX/default.nix
2840 modified: Notes.lhs
2841 modified: shell.nix
2842 modified: ../variational/shell.nix
2843 modified: ../variational/src/Naperian.hs
2844 modified: ../variational/src/Variational.lhs
2845
2846Untracked files:
2847 (use "git add <file>..." to include in what will be committed)
2848
2849 ../.DS_Store
2850 ../.ipynb_checkpoints/
2851 ../ForTidying/
2852 ../HMat/
2853 ../HaskellX/#Test.lhs#
2854 ../HaskellX/.stack-work/
2855 ../HaskellX/HaskellX.cabal~
2856 ../HaskellX/HaskellXchange.aux
2857 ../HaskellX/HaskellXchange.bcf
2858 ../HaskellX/HaskellXchange.log
2859 ../HaskellX/HaskellXchange.nav
2860 ../HaskellX/HaskellXchange.out
2861 ../HaskellX/HaskellXchange.pdf
2862 ../HaskellX/HaskellXchange.run.xml
2863 ../HaskellX/HaskellXchange.snm
2864 ../HaskellX/HaskellXchange.tex~
2865 ../HaskellX/HaskellXchange.toc
2866 ../HaskellX/Lorenz.hs
2867 ../HaskellX/Lorenz.hs~
2868 ../HaskellX/Plot.hs
2869 ../HaskellX/Plot.hs~
2870 ../HaskellX/PlotEvent.hs
2871 ../HaskellX/PlotEvent.hs~
2872 ../HaskellX/PlotEventNew.hs
2873 ../HaskellX/PlotEventNew.hs~
2874 ../HaskellX/Test.aux
2875 ../HaskellX/Test.bcf
2876 ../HaskellX/Test.lhs~
2877 ../HaskellX/Test.log
2878 ../HaskellX/Test.nav
2879 ../HaskellX/Test.out
2880 ../HaskellX/Test.pdf
2881 ../HaskellX/Test.ptb
2882 ../HaskellX/Test.run.xml
2883 ../HaskellX/Test.snm
2884 ../HaskellX/Test.tex
2885 ../HaskellX/Test.toc
2886 ../HaskellX/Xhaskell.lhs
2887 ../HaskellX/Xhaskell.lhs~
2888 ../HaskellX/diagrams/
2889 ../HaskellX/nixtodo/
2890 ../HaskellX/stack.yaml~
2891 ../HaskellX/texput.log
2892 ../Papers/
2893 ../__pycache__/
2894 ../_build/
2895 ../accelerate-examples/
2896 ../accelerate-llvm/
2897 ../accelerate/
2898 ../chart-unit/
2899 ../data/
2900 ../diagrams/
2901 ../el-shell.txt
2902 ../foo.bat
2903 ../foo.bat~
2904 ../libffi-0.1/
2905 ../llvm-general/
2906 ../numeric-ode/
2907 ../numhask-range/
2908 ../numhask/
2909 ../other/
2910 ../result/
2911 ../service-runner/
2912 ../shell.txt
2913 Notes.html
2914 Notes.htmls
2915 Notes.lhs~
2916 Stormer-Verlet-Sasha.hs
2917 Stormer-Verlet-Sasha.hs~
2918 Stormer-Verlet.hs
2919 Stormer-Verlet.hs~
2920 shell.nix~
2921 ../variational/#GaussianMixture.hs#
2922 ../variational/.DS_Store
2923 ../variational/.Rhistory
2924 ../variational/DynSys.bib~
2925 ../variational/GaussianMixture.hs
2926 ../variational/GaussianMixture.hs~
2927 ../variational/OldFaithful.html
2928 ../variational/OldFaithful.lhs
2929 ../variational/OldFaithful.lhs~
2930 ../variational/Test.hs
2931 ../variational/Test.lhs
2932 ../variational/Test.lhs~
2933 ../variational/Test.org
2934 ../variational/Test.org~
2935 ../variational/TestR.hs
2936 ../variational/TestR.hs~
2937 ../variational/VBEMGMM/#gmmVBEMdemo.m#
2938 ../variational/VBEMGMM/Test.m~
2939 ../variational/VBEMGMM/Test.py~
2940 ../variational/VBEMGMM/faithZ.txt
2941 ../variational/VBEMGMM/faithful.txt
2942 ../variational/VBEMGMM/gmmVBEMdemoOldFaithful.png
2943 ../variational/VBEMGMM/octave-workspace
2944 ../variational/Variational.html
2945 ../variational/Variational.lhs
2946 ../variational/Variational.lhs~
2947 ../variational/VariationalNew.html
2948 ../variational/bigR.csv
2949 ../variational/default.nix~
2950 ../variational/diagrams/
2951 ../variational/dist/
2952 ../variational/eek.csv
2953 ../variational/means.csv
2954 ../variational/myTensor.py
2955 ../variational/myTensor.py~
2956 ../variational/result
2957 ../variational/shell.nix~
2958 ../variational/shell.txt
2959 ../variational/shellAndOut.txt
2960 ../variational/src/#Naperian.hs#
2961 ../variational/src/#Variational.lhs#
2962 ../variational/src/Main.hs~
2963 ../variational/src/Naperian.Orig.hs~
2964 ../variational/src/Naperian.Virgin.hs
2965 ../variational/src/Naperian.hs~
2966 ../variational/src/Naperian1.hs~
2967 ../variational/src/OldFaithful.hs~
2968 ../variational/src/Variational.html
2969 ../variational/src/Variational.lhs~
2970 ../variational/src/faithZ.txt
2971 ../variational/vae-shell.txt
2972 ../variational/variational.cabal~
2973 ../vbmm/
2974 ../vboost/
2975
2976bash-3.2$ cd ~/nixpkgs/
2977bash-3.2$ git status
2978On branch master
2979Your branch and 'origin/master' have diverged,
2980and have 1 and 1094 different commits each, respectively.
2981 (use "git pull" to merge the remote branch into yours)
2982
2983All conflicts fixed but you are still merging.
2984 (use "git commit" to conclude merge)
2985
2986Changes to be committed:
2987
2988 modified: .version
2989 modified: doc/languages-frameworks/texlive.xml
2990 modified: lib/customisation.nix
2991 modified: lib/default.nix
2992 deleted: lib/maintainers.nix
2993 modified: lib/strings.nix
2994 modified: lib/tests/misc.nix
2995 modified: lib/tests/release.nix
2996 new file: lib/versions.nix
2997 new file: maintainers/maintainer-list.nix
2998 new file: maintainers/scripts/check-maintainer-github-handles.sh
2999 modified: maintainers/scripts/update-python-libraries
3000 modified: nixos/doc/manual/development/testing-installer.xml
3001 new file: nixos/doc/manual/installation/installing-from-other-distro.xml
3002 modified: nixos/doc/manual/installation/installing.xml
3003 new file: nixos/doc/manual/man-nixos-enter.xml
3004 modified: nixos/doc/manual/man-nixos-install.xml
3005 modified: nixos/doc/manual/man-pages.xml
3006 modified: nixos/doc/manual/release-notes/release-notes.xml
3007 modified: nixos/doc/manual/release-notes/rl-1803.xml
3008 new file: nixos/doc/manual/release-notes/rl-1809.xml
3009 modified: nixos/lib/make-disk-image.nix
3010 modified: nixos/lib/make-iso9660-image.nix
3011 modified: nixos/lib/make-iso9660-image.sh
3012 modified: nixos/lib/make-squashfs.nix
3013 modified: nixos/lib/testing.nix
3014 renamed: pkgs/development/libraries/javascript/jquery-ui/default.nix -> nixos/lib/testing/jquery-ui.nix
3015 renamed: pkgs/development/libraries/javascript/jquery/default.nix -> nixos/lib/testing/jquery.nix
3016 modified: nixos/modules/config/users-groups.nix
3017 modified: nixos/modules/hardware/opengl.nix
3018 modified: nixos/modules/installer/cd-dvd/iso-image.nix
3019 modified: nixos/modules/installer/netboot/netboot.nix
3020 modified: nixos/modules/installer/tools/nix-fallback-paths.nix
3021 new file: nixos/modules/installer/tools/nixos-enter.sh
3022 modified: nixos/modules/installer/tools/nixos-install.sh
3023 deleted: nixos/modules/installer/tools/nixos-prepare-root.sh
3024 modified: nixos/modules/installer/tools/tools.nix
3025 modified: nixos/modules/installer/virtualbox-demo.nix
3026 modified: nixos/modules/misc/ids.nix
3027 modified: nixos/modules/module-list.nix
3028 modified: nixos/modules/profiles/demo.nix
3029 modified: nixos/modules/profiles/installation-device.nix
3030 modified: nixos/modules/programs/bash/bash.nix
3031 modified: nixos/modules/programs/zsh/zsh.nix
3032 modified: nixos/modules/services/continuous-integration/jenkins/default.nix
3033 modified: nixos/modules/services/databases/openldap.nix
3034 modified: nixos/modules/services/misc/nix-daemon.nix
3035 modified: nixos/modules/services/monitoring/grafana.nix
3036 new file: nixos/modules/services/network-filesystems/ceph.nix
3037 modified: nixos/modules/services/networking/networkmanager.nix
3038 modified: nixos/modules/services/networking/nix-serve.nix
3039 modified: nixos/modules/services/networking/strongswan.nix
3040 deleted: nixos/modules/services/web-apps/pump.io-configure.js
3041 deleted: nixos/modules/services/web-apps/pump.io.nix
3042 modified: nixos/modules/services/web-apps/tt-rss.nix
3043 modified: nixos/modules/services/web-servers/tomcat.nix
3044 modified: nixos/modules/services/x11/desktop-managers/gnome3.nix
3045 modified: nixos/modules/services/x11/display-managers/lightdm.nix
3046 modified: nixos/modules/system/activation/activation-script.nix
3047 modified: nixos/modules/system/boot/initrd-network.nix
3048 modified: nixos/modules/system/boot/initrd-ssh.nix
3049 modified: nixos/modules/system/boot/luksroot.nix
3050 modified: nixos/modules/system/boot/modprobe.nix
3051 modified: nixos/modules/system/boot/stage-2-init.sh
3052 modified: nixos/modules/tasks/network-interfaces-scripted.nix
3053 modified: nixos/modules/tasks/network-interfaces.nix
3054 modified: nixos/modules/virtualisation/parallels-guest.nix
3055 modified: nixos/modules/virtualisation/xen-dom0.nix
3056 modified: nixos/release-combined.nix
3057 modified: nixos/release-small.nix
3058 modified: nixos/release.nix
3059 modified: nixos/tests/boot.nix
3060 new file: nixos/tests/ceph.nix
3061 new file: nixos/tests/hocker-fetchdocker/default.nix
3062 new file: nixos/tests/hocker-fetchdocker/hello-world-container.nix
3063 new file: nixos/tests/hocker-fetchdocker/machine.nix
3064 modified: nixos/tests/installer.nix
3065 modified: nixos/tests/keymap.nix
3066 modified: nixos/tests/misc.nix
3067 new file: nixos/tests/openldap.nix
3068 deleted: nixos/tests/pump.io.nix
3069 new file: nixos/tests/systemd.nix
3070 modified: pkgs/applications/altcoins/bitcoin-abc.nix
3071 modified: pkgs/applications/altcoins/bitcoin-classic.nix
3072 modified: pkgs/applications/altcoins/bitcoin-xt.nix
3073 modified: pkgs/applications/altcoins/bitcoin.nix
3074 modified: pkgs/applications/altcoins/btc1.nix
3075 modified: pkgs/applications/altcoins/dashpay.nix
3076 new file: pkgs/applications/altcoins/dcrd.nix
3077 new file: pkgs/applications/altcoins/dcrwallet.nix
3078 modified: pkgs/applications/altcoins/default.nix
3079 modified: pkgs/applications/altcoins/dero.nix
3080 modified: pkgs/applications/altcoins/ethabi.nix
3081 modified: pkgs/applications/altcoins/freicoin.nix
3082 modified: pkgs/applications/altcoins/go-ethereum.nix
3083 modified: pkgs/applications/altcoins/litecoin.nix
3084 modified: pkgs/applications/altcoins/memorycoin.nix
3085 modified: pkgs/applications/altcoins/namecoin.nix
3086 new file: pkgs/applications/altcoins/parity/beta.nix
3087 new file: pkgs/applications/altcoins/parity/default.nix
3088 new file: pkgs/applications/altcoins/parity/parity.nix
3089 new file: pkgs/applications/altcoins/parity/patches/vendored-sources-1.8.patch
3090 new file: pkgs/applications/altcoins/parity/patches/vendored-sources-1.9.patch
3091 deleted: pkgs/applications/altcoins/primecoin.nix
3092 modified: pkgs/applications/altcoins/seth.nix
3093 modified: pkgs/applications/audio/abcde/default.nix
3094 modified: pkgs/applications/audio/clementine/default.nix
3095 modified: pkgs/applications/audio/cmus/default.nix
3096 modified: pkgs/applications/audio/deadbeef/default.nix
3097 modified: pkgs/applications/audio/easytag/default.nix
3098 modified: pkgs/applications/audio/fmit/default.nix
3099 modified: pkgs/applications/audio/helm/default.nix
3100 modified: pkgs/applications/audio/jack-oscrolloscope/default.nix
3101 modified: pkgs/applications/audio/meters_lv2/default.nix
3102 modified: pkgs/applications/audio/mopidy/default.nix
3103 modified: pkgs/applications/audio/pamixer/default.nix
3104 modified: pkgs/applications/audio/pianobooster/default.nix
3105 modified: pkgs/applications/audio/praat/default.nix
3106 modified: pkgs/applications/audio/qmidiroute/default.nix
3107 modified: pkgs/applications/audio/rhythmbox/default.nix
3108 modified: pkgs/applications/audio/rosegarden/default.nix
3109 modified: pkgs/applications/audio/setbfree/default.nix
3110 modified: pkgs/applications/audio/sisco.lv2/default.nix
3111 modified: pkgs/applications/audio/soundscape-renderer/default.nix
3112 modified: pkgs/applications/audio/spotify/default.nix
3113 modified: pkgs/applications/audio/squishyball/default.nix
3114 modified: pkgs/applications/audio/x42-plugins/default.nix
3115 modified: pkgs/applications/audio/yoshimi/default.nix
3116 modified: pkgs/applications/audio/zam-plugins/default.nix
3117 modified: pkgs/applications/editors/atom/default.nix
3118 modified: pkgs/applications/editors/eclipse/plugins.nix
3119 modified: pkgs/applications/editors/hexcurse/default.nix
3120 modified: pkgs/applications/editors/ht/default.nix
3121 new file: pkgs/applications/editors/ht/gcc7.patch
3122 modified: pkgs/applications/editors/jetbrains/common.nix
3123 modified: pkgs/applications/editors/kodestudio/default.nix
3124 modified: pkgs/applications/graphics/antimony/default.nix
3125 modified: pkgs/applications/graphics/ao/default.nix
3126 modified: pkgs/applications/graphics/cinepaint/default.nix
3127 modified: pkgs/applications/graphics/digikam/default.nix
3128 modified: pkgs/applications/graphics/draftsight/default.nix
3129 modified: pkgs/applications/graphics/exrdisplay/default.nix
3130 modified: pkgs/applications/graphics/feh/default.nix
3131 modified: pkgs/applications/graphics/freepv/default.nix
3132 modified: pkgs/applications/graphics/gocr/default.nix
3133 modified: pkgs/applications/graphics/hugin/default.nix
3134 modified: pkgs/applications/graphics/k3d/default.nix
3135 modified: pkgs/applications/graphics/meshlab/default.nix
3136 modified: pkgs/applications/graphics/openimageio/default.nix
3137 modified: pkgs/applications/graphics/openscad/default.nix
3138 modified: pkgs/applications/graphics/paraview/default.nix
3139 modified: pkgs/applications/graphics/rapcad/default.nix
3140 new file: pkgs/applications/graphics/scantailor/advanced.nix
3141 modified: pkgs/applications/graphics/seg3d/default.nix
3142 modified: pkgs/applications/graphics/shotwell/default.nix
3143 modified: pkgs/applications/graphics/solvespace/default.nix
3144 modified: pkgs/applications/graphics/sxiv/default.nix
3145 modified: pkgs/applications/kde/okular.nix
3146 modified: pkgs/applications/misc/airtame/default.nix
3147 modified: pkgs/applications/misc/alacritty/default.nix
3148 modified: pkgs/applications/misc/apvlv/default.nix
3149 modified: pkgs/applications/misc/bb/default.nix
3150 modified: pkgs/applications/misc/blender/default.nix
3151 modified: pkgs/applications/misc/confclerk/default.nix
3152 modified: pkgs/applications/misc/cpp-ethereum/default.nix
3153 modified: pkgs/applications/misc/dbeaver/default.nix
3154 modified: pkgs/applications/misc/doomseeker/default.nix
3155 new file: pkgs/applications/misc/doomseeker/fix_paths.patch
3156 modified: pkgs/applications/misc/electrum/default.nix
3157 modified: pkgs/applications/misc/gmtp/default.nix
3158 modified: pkgs/applications/misc/googleearth/default.nix
3159 modified: pkgs/applications/misc/gphoto2/default.nix
3160 modified: pkgs/applications/misc/gramps/default.nix
3161 modified: pkgs/applications/misc/houdini/runtime.nix
3162 modified: pkgs/applications/misc/icesl/default.nix
3163 modified: pkgs/applications/misc/josm/default.nix
3164 modified: pkgs/applications/misc/kdbplus/default.nix
3165 deleted: pkgs/applications/misc/keepassx/cmake.patch
3166 modified: pkgs/applications/misc/keepassx/community.nix
3167 modified: pkgs/applications/misc/keepassx/darwin.patch
3168 modified: pkgs/applications/misc/kitty/default.nix
3169 modified: pkgs/applications/misc/llpp/default.nix
3170 modified: pkgs/applications/misc/mupdf/default.nix
3171 modified: pkgs/applications/misc/navit/default.nix
3172 modified: pkgs/applications/misc/nixnote2/default.nix
3173 modified: pkgs/applications/misc/nnn/default.nix
3174 modified: pkgs/applications/misc/openbrf/default.nix
3175 modified: pkgs/applications/misc/opencpn/default.nix
3176 new file: pkgs/applications/misc/opentx/default.nix
3177 modified: pkgs/applications/misc/orca/default.nix
3178 new file: pkgs/applications/misc/rtl_433/default.nix
3179 modified: pkgs/applications/misc/slade/default.nix
3180 modified: pkgs/applications/misc/slade/git.nix
3181 modified: pkgs/applications/misc/slic3r-prusa3d/default.nix
3182 new file: pkgs/applications/misc/valentina/default.nix
3183 new file: pkgs/applications/misc/xpdf/cmake_version.patch
3184 modified: pkgs/applications/misc/xpdf/default.nix
3185 modified: pkgs/applications/misc/yate/default.nix
3186 modified: pkgs/applications/networking/browsers/chromium/common.nix
3187 modified: pkgs/applications/networking/browsers/chromium/default.nix
3188 new file: pkgs/applications/networking/browsers/chromium/patches/PlaybackImageProvider-copy-constructor.patch
3189 deleted: pkgs/applications/networking/browsers/chromium/patches/chromium-gcc5-r4.patch
3190 deleted: pkgs/applications/networking/browsers/chromium/patches/constexpr-fix.patch
3191 deleted: pkgs/applications/networking/browsers/chromium/patches/fix_network_api_crash.patch
3192 deleted: pkgs/applications/networking/browsers/chromium/patches/include-math-for-round.patch
3193 modified: pkgs/applications/networking/browsers/chromium/upstream-info.nix
3194 modified: pkgs/applications/networking/browsers/conkeror/default.nix
3195 modified: pkgs/applications/networking/browsers/falkon/default.nix
3196 modified: pkgs/applications/networking/browsers/firefox-bin/default.nix
3197 modified: pkgs/applications/networking/browsers/firefox/common.nix
3198 new file: pkgs/applications/networking/browsers/firefox/fix-pa-context-connect-retval.patch
3199 modified: pkgs/applications/networking/browsers/firefox/packages.nix
3200 modified: pkgs/applications/networking/browsers/google-chrome/default.nix
3201 modified: pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
3202 modified: pkgs/applications/networking/browsers/palemoon/default.nix
3203 modified: pkgs/applications/networking/cluster/nomad/default.nix
3204 modified: pkgs/applications/networking/cluster/taktuk/default.nix
3205 modified: pkgs/applications/networking/cluster/terragrunt/default.nix
3206 modified: pkgs/applications/networking/cluster/terragrunt/deps.nix
3207 modified: pkgs/applications/networking/corebird/default.nix
3208 modified: pkgs/applications/networking/errbot/default.nix
3209 deleted: pkgs/applications/networking/feedreaders/newsbeuter/default.nix
3210 modified: pkgs/applications/networking/feedreaders/newsboat/default.nix
3211 modified: pkgs/applications/networking/feedreaders/rssguard/default.nix
3212 modified: pkgs/applications/networking/instant-messengers/baresip/default.nix
3213 modified: pkgs/applications/networking/instant-messengers/gajim/default.nix
3214 modified: pkgs/applications/networking/instant-messengers/hipchat/default.nix
3215 modified: pkgs/applications/networking/instant-messengers/jitsi/default.nix
3216 modified: pkgs/applications/networking/instant-messengers/qtox/default.nix
3217 modified: pkgs/applications/networking/instant-messengers/riot/riot-web.nix
3218 modified: pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
3219 modified: pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
3220 modified: pkgs/applications/networking/instant-messengers/torchat/default.nix
3221 modified: pkgs/applications/networking/instant-messengers/viber/default.nix
3222 modified: pkgs/applications/networking/instant-messengers/zoom-us/default.nix
3223 modified: pkgs/applications/networking/mailreaders/claws-mail/default.nix
3224 modified: pkgs/applications/networking/mailreaders/mblaze/default.nix
3225 modified: pkgs/applications/networking/mailreaders/mutt/default.nix
3226 modified: pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
3227 modified: pkgs/applications/networking/mailreaders/thunderbird/default.nix
3228 modified: pkgs/applications/networking/ostinato/default.nix
3229 new file: pkgs/applications/networking/p2p/soulseekqt/default.nix
3230 renamed: pkgs/development/python-modules/protocol/default.nix -> pkgs/applications/networking/protocol/default.nix
3231 modified: pkgs/applications/networking/remote/citrix-receiver/default.nix
3232 modified: pkgs/applications/networking/seafile-client/default.nix
3233 new file: pkgs/applications/networking/sniffers/wireshark/cmake.patch
3234 modified: pkgs/applications/networking/sniffers/wireshark/default.nix
3235 modified: pkgs/applications/networking/syncthing/default.nix
3236 modified: pkgs/applications/office/ib/tws/default.nix
3237 modified: pkgs/applications/office/impressive/default.nix
3238 modified: pkgs/applications/office/libreoffice/default-primary-src.nix
3239 modified: pkgs/applications/office/libreoffice/default.nix
3240 modified: pkgs/applications/office/libreoffice/libreoffice-srcs.nix
3241 modified: pkgs/applications/office/libreoffice/still.nix
3242 modified: pkgs/applications/office/skrooge/default.nix
3243 modified: pkgs/applications/science/astronomy/celestia/default.nix
3244 modified: pkgs/applications/science/astronomy/gpredict/default.nix
3245 modified: pkgs/applications/science/astronomy/gravit/default.nix
3246 modified: pkgs/applications/science/astronomy/stellarium/default.nix
3247 modified: pkgs/applications/science/chemistry/avogadro/default.nix
3248 modified: pkgs/applications/science/chemistry/molden/default.nix
3249 modified: pkgs/applications/science/electronics/kicad/default.nix
3250 modified: pkgs/applications/science/electronics/kicad/unstable.nix
3251 modified: pkgs/applications/science/electronics/librepcb/default.nix
3252 modified: pkgs/applications/science/electronics/pcb/default.nix
3253 modified: pkgs/applications/science/logic/mcrl2/default.nix
3254 modified: pkgs/applications/science/logic/symbiyosys/default.nix
3255 modified: pkgs/applications/science/logic/tamarin-prover/default.nix
3256 new file: pkgs/applications/science/logic/tlaplus/default.nix
3257 modified: pkgs/applications/science/machine-learning/shogun/default.nix
3258 modified: pkgs/applications/science/math/bcal/default.nix
3259 modified: pkgs/applications/science/math/gfan/default.nix
3260 modified: pkgs/applications/science/math/giac/default.nix
3261 modified: pkgs/applications/science/math/ginac/default.nix
3262 modified: pkgs/applications/science/math/glsurf/default.nix
3263 modified: pkgs/applications/science/math/gmsh/default.nix
3264 modified: pkgs/applications/science/math/sage/default.nix
3265 modified: pkgs/applications/science/medicine/aliza/default.nix
3266 modified: pkgs/applications/science/misc/boinc/default.nix
3267 modified: pkgs/applications/science/misc/golly/beta.nix
3268 modified: pkgs/applications/science/misc/golly/default.nix
3269 modified: pkgs/applications/science/misc/gplates/default.nix
3270 modified: pkgs/applications/science/misc/root/default.nix
3271 modified: pkgs/applications/science/misc/tulip/default.nix
3272 modified: pkgs/applications/science/misc/vite/default.nix
3273 modified: pkgs/applications/science/robotics/yarp/default.nix
3274 modified: pkgs/applications/version-management/git-and-tools/git-radar/default.nix
3275 modified: pkgs/applications/version-management/git-and-tools/git-secret/default.nix
3276 modified: pkgs/applications/version-management/git-review/default.nix
3277 new file: pkgs/applications/version-management/git-sizer/default.nix
3278 modified: pkgs/applications/version-management/gitkraken/default.nix
3279 modified: pkgs/applications/version-management/gitless/default.nix
3280 modified: pkgs/applications/version-management/gource/default.nix
3281 modified: pkgs/applications/version-management/meld/default.nix
3282 modified: pkgs/applications/version-management/rabbitvcs/default.nix
3283 modified: pkgs/applications/video/aegisub/default.nix
3284 modified: pkgs/applications/video/avidemux/default.nix
3285 modified: pkgs/applications/video/bomi/default.nix
3286 modified: pkgs/applications/video/kodi/default.nix
3287 modified: pkgs/applications/video/lightworks/default.nix
3288 modified: pkgs/applications/video/makemkv/default.nix
3289 modified: pkgs/applications/video/mkvtoolnix/default.nix
3290 new file: pkgs/applications/video/mpc-qt/default.nix
3291 modified: pkgs/applications/video/mplayer/default.nix
3292 modified: pkgs/applications/video/mpv/default.nix
3293 modified: pkgs/applications/video/mpv/scripts/convert.nix
3294 modified: pkgs/applications/video/mythtv/default.nix
3295 modified: pkgs/applications/video/natron/default.nix
3296 modified: pkgs/applications/video/simplescreenrecorder/default.nix
3297 modified: pkgs/applications/virtualization/bochs/default.nix
3298 modified: pkgs/applications/virtualization/cbfstool/default.nix
3299 modified: pkgs/applications/virtualization/remotebox/default.nix
3300 modified: pkgs/applications/virtualization/rkt/default.nix
3301 modified: pkgs/applications/virtualization/seabios/default.nix
3302 modified: pkgs/applications/virtualization/virt-manager/default.nix
3303 deleted: pkgs/applications/virtualization/virtualbox/HostServices-SharedClipboard-x11-stub.cpp-use-RT_NOR.patch
3304 modified: pkgs/applications/virtualization/virtualbox/default.nix
3305 new file: pkgs/applications/virtualization/xen/4.10.nix
3306 modified: pkgs/applications/virtualization/xen/4.5.nix
3307 modified: pkgs/applications/virtualization/xen/4.8.nix
3308 modified: pkgs/applications/virtualization/xen/generic.nix
3309 modified: pkgs/applications/virtualization/xen/packages.nix
3310 modified: pkgs/applications/virtualization/xen/xsa-patches.nix
3311 modified: pkgs/applications/window-managers/compton/default.nix
3312 modified: pkgs/applications/window-managers/compton/git.nix
3313 modified: pkgs/applications/window-managers/weston/default.nix
3314 modified: pkgs/build-support/build-fhs-userenv/env.nix
3315 modified: pkgs/build-support/closure-info.nix
3316 modified: pkgs/build-support/emacs/buffer.nix
3317 new file: pkgs/build-support/fetchdocker/credentials.nix
3318 new file: pkgs/build-support/fetchdocker/default.nix
3319 new file: pkgs/build-support/fetchdocker/fetchDockerConfig.nix
3320 new file: pkgs/build-support/fetchdocker/fetchDockerLayer.nix
3321 new file: pkgs/build-support/fetchdocker/fetchdocker-builder.sh
3322 new file: pkgs/build-support/fetchdocker/generic-fetcher.nix
3323 modified: pkgs/build-support/kernel/make-initrd.nix
3324 modified: pkgs/build-support/kernel/paths-from-graph.pl
3325 modified: pkgs/data/fonts/cantarell-fonts/default.nix
3326 modified: pkgs/data/fonts/iosevka/default.nix
3327 modified: pkgs/data/fonts/twemoji-color-font/default.nix
3328 modified: pkgs/data/icons/numix-icon-theme-circle/default.nix
3329 modified: pkgs/data/icons/numix-icon-theme-square/default.nix
3330 modified: pkgs/data/icons/papirus-icon-theme/default.nix
3331 modified: pkgs/data/misc/hackage/default.nix
3332 new file: pkgs/data/misc/libkkc-data/default.nix
3333 renamed: pkgs/misc/themes/deepin/default.nix -> pkgs/desktops/deepin/deepin-gtk-theme/default.nix
3334 new file: pkgs/desktops/deepin/deepin-icon-theme/default.nix
3335 renamed: pkgs/applications/misc/deepin-terminal/default.nix -> pkgs/desktops/deepin/deepin-terminal/default.nix
3336 new file: pkgs/desktops/deepin/default.nix
3337 modified: pkgs/desktops/enlightenment/efl.nix
3338 modified: pkgs/desktops/enlightenment/enlightenment.nix
3339 modified: pkgs/desktops/gnome-2/default.nix
3340 deleted: pkgs/desktops/gnome-2/desktop/gnome-session/default.nix
3341 modified: pkgs/desktops/gnome-2/platform/gtkglext/default.nix
3342 modified: pkgs/desktops/gnome-2/platform/gtkglextmm/default.nix
3343 modified: pkgs/desktops/gnome-3/apps/bijiben/default.nix
3344 deleted: pkgs/desktops/gnome-3/apps/bijiben/no-update-icon-cache.patch
3345 modified: pkgs/desktops/gnome-3/apps/evolution/default.nix
3346 modified: pkgs/desktops/gnome-3/apps/glade/default.nix
3347 modified: pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
3348 modified: pkgs/desktops/gnome-3/apps/gnome-documents/default.nix
3349 modified: pkgs/desktops/gnome-3/apps/gnome-logs/default.nix
3350 modified: pkgs/desktops/gnome-3/apps/gnome-music/default.nix
3351 modified: pkgs/desktops/gnome-3/core/caribou/default.nix
3352 modified: pkgs/desktops/gnome-3/core/dconf/default.nix
3353 modified: pkgs/desktops/gnome-3/core/epiphany/default.nix
3354 modified: pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
3355 modified: pkgs/desktops/gnome-3/core/gnome-contacts/default.nix
3356 deleted: pkgs/desktops/gnome-3/core/gnome-contacts/gio_unix.patch
3357 modified: pkgs/desktops/gnome-3/core/gnome-software/default.nix
3358 new file: pkgs/desktops/gnome-3/core/gnome-software/fix-paths.patch
3359 modified: pkgs/desktops/gnome-3/core/grilo-plugins/default.nix
3360 modified: pkgs/desktops/gnome-3/core/grilo/default.nix
3361 modified: pkgs/desktops/gnome-3/core/gsound/default.nix
3362 modified: pkgs/desktops/gnome-3/core/gtksourceview/default.nix
3363 modified: pkgs/desktops/gnome-3/core/libcroco/default.nix
3364 modified: pkgs/desktops/gnome-3/core/libgdata/default.nix
3365 modified: pkgs/desktops/gnome-3/core/libgee/default.nix
3366 modified: pkgs/desktops/gnome-3/core/libgepub/default.nix
3367 modified: pkgs/desktops/gnome-3/core/libgnome-keyring/default.nix
3368 modified: pkgs/desktops/gnome-3/core/libgxps/default.nix
3369 modified: pkgs/desktops/gnome-3/core/libzapojit/default.nix
3370 modified: pkgs/desktops/gnome-3/core/rest/default.nix
3371 modified: pkgs/desktops/gnome-3/core/simple-scan/default.nix
3372 modified: pkgs/desktops/gnome-3/core/tracker-miners/default.nix
3373 new file: pkgs/desktops/gnome-3/core/tracker-miners/fix-paths.patch
3374 modified: pkgs/desktops/gnome-3/core/tracker/default.nix
3375 modified: pkgs/desktops/gnome-3/default.nix
3376 modified: pkgs/desktops/gnome-3/desktop/rarian/default.nix
3377 modified: pkgs/desktops/gnome-3/extensions/chrome-gnome-shell/default.nix
3378 modified: pkgs/desktops/gnome-3/find-latest-version.py
3379 modified: pkgs/desktops/gnome-3/misc/gexiv2/default.nix
3380 modified: pkgs/desktops/gnome-3/misc/gfbgraph/default.nix
3381 modified: pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix
3382 modified: pkgs/desktops/gnome-3/misc/gnome-video-effects/default.nix
3383 modified: pkgs/desktops/gnome-3/misc/libgames-support/default.nix
3384 modified: pkgs/desktops/gnome-3/misc/libgit2-glib/default.nix
3385 modified: pkgs/desktops/gnome-3/misc/libmediaart/default.nix
3386 modified: pkgs/desktops/maxx/default.nix
3387 modified: pkgs/desktops/plasma-5/kinfocenter.nix
3388 modified: pkgs/desktops/xfce/applications/parole.nix
3389 modified: pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
3390 modified: pkgs/development/compilers/arachne-pnr/default.nix
3391 modified: pkgs/development/compilers/cudatoolkit/default.nix
3392 modified: pkgs/development/compilers/dmd/default.nix
3393 modified: pkgs/development/compilers/factor-lang/default.nix
3394 modified: pkgs/development/compilers/ghc/8.4.1.nix
3395 modified: pkgs/development/compilers/ghcjs/base.nix
3396 modified: pkgs/development/compilers/ghcjs/default.nix
3397 modified: pkgs/development/compilers/jetbrains-jdk/default.nix
3398 modified: pkgs/development/compilers/kotlin/default.nix
3399 modified: pkgs/development/compilers/llvm/4/lldb.nix
3400 new file: pkgs/development/compilers/llvm/6/clang/default.nix
3401 new file: pkgs/development/compilers/llvm/6/clang/purity.patch
3402 new file: pkgs/development/compilers/llvm/6/compiler-rt-codesign.patch
3403 new file: pkgs/development/compilers/llvm/6/default.nix
3404 new file: pkgs/development/compilers/llvm/6/libc++/default.nix
3405 new file: pkgs/development/compilers/llvm/6/libc++/setup-hook.sh
3406 new file: pkgs/development/compilers/llvm/6/libc++abi.nix
3407 new file: pkgs/development/compilers/llvm/6/lld.nix
3408 new file: pkgs/development/compilers/llvm/6/lldb.nix
3409 new file: pkgs/development/compilers/llvm/6/llvm-outputs.patch
3410 new file: pkgs/development/compilers/llvm/6/llvm.nix
3411 new file: pkgs/development/compilers/llvm/6/openmp.nix
3412 modified: pkgs/development/compilers/ocaml/4.06.nix
3413 modified: pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
3414 modified: pkgs/development/compilers/oraclejdk/jdk9-linux.nix
3415 modified: pkgs/development/compilers/vala/default.nix
3416 modified: pkgs/development/compilers/yosys/default.nix
3417 modified: pkgs/development/compilers/zulu/8.nix
3418 modified: pkgs/development/compilers/zulu/default.nix
3419 modified: pkgs/development/coq-modules/QuickChick/default.nix
3420 modified: pkgs/development/coq-modules/bignums/default.nix
3421 modified: pkgs/development/coq-modules/fiat/HEAD.nix
3422 modified: pkgs/development/haskell-modules/configuration-common.nix
3423 modified: pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
3424 modified: pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
3425 modified: pkgs/development/haskell-modules/configuration-hackage2nix.yaml
3426 modified: pkgs/development/haskell-modules/configuration-nix.nix
3427 modified: pkgs/development/haskell-modules/generic-builder.nix
3428 modified: pkgs/development/haskell-modules/hackage-packages.nix
3429 modified: pkgs/development/haskell-modules/make-package-set.nix
3430 modified: pkgs/development/idris-modules/default.nix
3431 modified: pkgs/development/idris-modules/wl-pprint.nix
3432 modified: pkgs/development/interpreters/elixir/1.6.nix
3433 modified: pkgs/development/interpreters/erlang/generic-builder.nix
3434 modified: pkgs/development/interpreters/groovy/default.nix
3435 modified: pkgs/development/interpreters/hy/default.nix
3436 modified: pkgs/development/interpreters/io/default.nix
3437 modified: pkgs/development/interpreters/jruby/default.nix
3438 modified: pkgs/development/interpreters/love/0.10.nix
3439 modified: pkgs/development/interpreters/love/0.7.nix
3440 modified: pkgs/development/interpreters/love/0.8.nix
3441 modified: pkgs/development/interpreters/love/0.9.nix
3442 modified: pkgs/development/interpreters/lush/default.nix
3443 modified: pkgs/development/interpreters/octave/default.nix
3444 modified: pkgs/development/interpreters/php/default.nix
3445 modified: pkgs/development/interpreters/renpy/default.nix
3446 modified: pkgs/development/libraries/AntTweakBar/default.nix
3447 modified: pkgs/development/libraries/SDL/default.nix
3448 modified: pkgs/development/libraries/SDL2/default.nix
3449 modified: pkgs/development/libraries/SDL2_gfx/default.nix
3450 modified: pkgs/development/libraries/SDL2_image/default.nix
3451 modified: pkgs/development/libraries/SDL2_ttf/default.nix
3452 modified: pkgs/development/libraries/allegro/5.nix
3453 modified: pkgs/development/libraries/allegro/default.nix
3454 modified: pkgs/development/libraries/atk/default.nix
3455 modified: pkgs/development/libraries/beignet/default.nix
3456 modified: pkgs/development/libraries/box2d/default.nix
3457 modified: pkgs/development/libraries/bullet/default.nix
3458 modified: pkgs/development/libraries/cairo/default.nix
3459 modified: pkgs/development/libraries/cfitsio/default.nix
3460 modified: pkgs/development/libraries/chipmunk/default.nix
3461 modified: pkgs/development/libraries/cl/default.nix
3462 modified: pkgs/development/libraries/clutter-gst/default.nix
3463 modified: pkgs/development/libraries/clutter-gtk/default.nix
3464 modified: pkgs/development/libraries/clutter/default.nix
3465 modified: pkgs/development/libraries/cmark/default.nix
3466 modified: pkgs/development/libraries/cogl/default.nix
3467 modified: pkgs/development/libraries/coin3d/default.nix
3468 modified: pkgs/development/libraries/double-conversion/default.nix
3469 modified: pkgs/development/libraries/epoxy/default.nix
3470 modified: pkgs/development/libraries/esdl/default.nix
3471 modified: pkgs/development/libraries/ffmpeg-full/default.nix
3472 modified: pkgs/development/libraries/ffmpeg/generic.nix
3473 modified: pkgs/development/libraries/fltk/default.nix
3474 modified: pkgs/development/libraries/folly/default.nix
3475 modified: pkgs/development/libraries/fox/fox-1.6.nix
3476 modified: pkgs/development/libraries/freeglut/default.nix
3477 modified: pkgs/development/libraries/freenect/default.nix
3478 modified: pkgs/development/libraries/ftgl/default.nix
3479 modified: pkgs/development/libraries/gdcm/default.nix
3480 modified: pkgs/development/libraries/gdk-pixbuf/default.nix
3481 modified: pkgs/development/libraries/gecode/3.nix
3482 modified: pkgs/development/libraries/gle/default.nix
3483 modified: pkgs/development/libraries/glew/1.10.nix
3484 modified: pkgs/development/libraries/glew/default.nix
3485 modified: pkgs/development/libraries/glfw/2.x.nix
3486 modified: pkgs/development/libraries/glfw/3.x.nix
3487 modified: pkgs/development/libraries/glib-networking/default.nix
3488 modified: pkgs/development/libraries/glib/default.nix
3489 modified: pkgs/development/libraries/glpk/default.nix
3490 modified: pkgs/development/libraries/glui/default.nix
3491 modified: pkgs/development/libraries/gobject-introspection/default.nix
3492 modified: pkgs/development/libraries/gsm/default.nix
3493 modified: pkgs/development/libraries/gstreamer/bad/default.nix
3494 modified: pkgs/development/libraries/gstreamer/ugly/default.nix
3495 modified: pkgs/development/libraries/gstreamer/vaapi/default.nix
3496 modified: pkgs/development/libraries/gtk+/3.x.nix
3497 modified: pkgs/development/libraries/gtkmm/2.x.nix
3498 modified: pkgs/development/libraries/gvfs/default.nix
3499 modified: pkgs/development/libraries/hunspell/dictionaries.nix
3500 modified: pkgs/development/libraries/irrlicht/default.nix
3501 modified: pkgs/development/libraries/java/dbus-java/default.nix
3502 modified: pkgs/development/libraries/java/libmatthew-java/default.nix
3503 modified: pkgs/development/libraries/java/swt/default.nix
3504 renamed: pkgs/development/libraries/json-c/0.11.nix -> pkgs/development/libraries/json-c/default.nix
3505 modified: pkgs/development/libraries/libagar/default.nix
3506 modified: pkgs/development/libraries/libargon2/default.nix
3507 modified: pkgs/development/libraries/libav/default.nix
3508 modified: pkgs/development/libraries/libbap/default.nix
3509 modified: pkgs/development/libraries/libbson/default.nix
3510 new file: pkgs/development/libraries/libcdio-paranoia/default.nix
3511 deleted: pkgs/development/libraries/libcdio/0.82.nix
3512 modified: pkgs/development/libraries/libchamplain/default.nix
3513 new file: pkgs/development/libraries/libcloudproviders/default.nix
3514 modified: pkgs/development/libraries/libcue/default.nix
3515 modified: pkgs/development/libraries/libdevil/default.nix
3516 modified: pkgs/development/libraries/libdvbpsi/default.nix
3517 modified: pkgs/development/libraries/libebur128/default.nix
3518 modified: pkgs/development/libraries/libexttextcat/default.nix
3519 modified: pkgs/development/libraries/libf2c/default.nix
3520 modified: pkgs/development/libraries/libftdi/default.nix
3521 modified: pkgs/development/libraries/libglvnd/default.nix
3522 modified: pkgs/development/libraries/libgphoto2/default.nix
3523 modified: pkgs/development/libraries/libgtop/default.nix
3524 modified: pkgs/development/libraries/libgudev/default.nix
3525 modified: pkgs/development/libraries/libhttpseverywhere/default.nix
3526 modified: pkgs/development/libraries/liblo/default.nix
3527 modified: pkgs/development/libraries/libpqxx/default.nix
3528 modified: pkgs/development/libraries/libqtav/default.nix
3529 modified: pkgs/development/libraries/librdmacm/default.nix
3530 modified: pkgs/development/libraries/librsvg/default.nix
3531 modified: pkgs/development/libraries/libsearpc/default.nix
3532 modified: pkgs/development/libraries/libsecret/default.nix
3533 modified: pkgs/development/libraries/libsoup/default.nix
3534 modified: pkgs/development/libraries/libtcod/default.nix
3535 modified: pkgs/development/libraries/libtxc_dxtn/default.nix
3536 modified: pkgs/development/libraries/libtxc_dxtn_s2tc/default.nix
3537 modified: pkgs/development/libraries/libva/default.nix
3538 modified: pkgs/development/libraries/libvdpau-va-gl/default.nix
3539 modified: pkgs/development/libraries/libvdpau/default.nix
3540 modified: pkgs/development/libraries/libwebp/default.nix
3541 modified: pkgs/development/libraries/libwhereami/default.nix
3542 modified: pkgs/development/libraries/libyubikey/default.nix
3543 modified: pkgs/development/libraries/libzdb/default.nix
3544 modified: pkgs/development/libraries/liquidfun/default.nix
3545 modified: pkgs/development/libraries/mbedtls/default.nix
3546 modified: pkgs/development/libraries/mediastreamer/default.nix
3547 modified: pkgs/development/libraries/mesa/default.nix
3548 modified: pkgs/development/libraries/mlt/default.nix
3549 modified: pkgs/development/libraries/mlt/qt-5.nix
3550 modified: pkgs/development/libraries/mps/default.nix
3551 modified: pkgs/development/libraries/msilbc/default.nix
3552 modified: pkgs/development/libraries/mygui/default.nix
3553 modified: pkgs/development/libraries/nanoflann/default.nix
3554 modified: pkgs/development/libraries/nlohmann_json/default.nix
3555 modified: pkgs/development/libraries/nss_wrapper/default.nix
3556 modified: pkgs/development/libraries/ntbtls/default.nix
3557 modified: pkgs/development/libraries/ocl-icd/default.nix
3558 modified: pkgs/development/libraries/ogre/1.9.x.nix
3559 modified: pkgs/development/libraries/ogre/default.nix
3560 modified: pkgs/development/libraries/opencascade/default.nix
3561 modified: pkgs/development/libraries/opencsg/default.nix
3562 modified: pkgs/development/libraries/opencv/3.x.nix
3563 modified: pkgs/development/libraries/opendht/default.nix
3564 modified: pkgs/development/libraries/openexrid-unstable/default.nix
3565 modified: pkgs/development/libraries/opensubdiv/default.nix
3566 modified: pkgs/development/libraries/openvdb/default.nix
3567 modified: pkgs/development/libraries/pangolin/default.nix
3568 modified: pkgs/development/libraries/partio/default.nix
3569 modified: pkgs/development/libraries/phonon/default.nix
3570 modified: pkgs/development/libraries/physics/geant4/default.nix
3571 modified: pkgs/development/libraries/plib/default.nix
3572 deleted: pkgs/development/libraries/postgis/2.3.nix
3573 modified: pkgs/development/libraries/postgis/default.nix
3574 deleted: pkgs/development/libraries/postgis/pg_db_postgis_enable.sh
3575 deleted: pkgs/development/libraries/postgis/pg_db_postgis_fix_or_load_sql_dump.sh
3576 modified: pkgs/development/libraries/qpdf/default.nix
3577 modified: pkgs/development/libraries/qt-3/default.nix
3578 modified: pkgs/development/libraries/qt-4.x/4.8/default.nix
3579 modified: pkgs/development/libraries/qt-5/5.10/default.nix
3580 modified: pkgs/development/libraries/qt-5/5.6/default.nix
3581 modified: pkgs/development/libraries/qt-5/5.9/default.nix
3582 modified: pkgs/development/libraries/qt-5/modules/qtbase.nix
3583 modified: pkgs/development/libraries/quesoglc/default.nix
3584 modified: pkgs/development/libraries/range-v3/default.nix
3585 modified: pkgs/development/libraries/rapidjson/default.nix
3586 modified: pkgs/development/libraries/rdkafka/default.nix
3587 modified: pkgs/development/libraries/readosm/default.nix
3588 modified: pkgs/development/libraries/science/math/blas/default.nix
3589 modified: pkgs/development/libraries/science/math/caffe2/default.nix
3590 new file: pkgs/development/libraries/science/math/caffe2/fix_compilation_on_gcc7.patch
3591 modified: pkgs/development/libraries/science/math/cudnn/generic.nix
3592 modified: pkgs/development/libraries/science/math/nccl/generic.nix
3593 modified: pkgs/development/libraries/science/math/petsc/default.nix
3594 modified: pkgs/development/libraries/simgear/default.nix
3595 modified: pkgs/development/libraries/smpeg/default.nix
3596 modified: pkgs/development/libraries/spice-gtk/default.nix
3597 modified: pkgs/development/libraries/stfl/default.nix
3598 modified: pkgs/development/libraries/umockdev/default.nix
3599 modified: pkgs/development/libraries/vaapi-intel/default.nix
3600 modified: pkgs/development/libraries/vaapi-vdpau/default.nix
3601 modified: pkgs/development/libraries/vapoursynth/default.nix
3602 new file: pkgs/development/libraries/virglrenderer/default.nix
3603 modified: pkgs/development/libraries/vrpn/default.nix
3604 modified: pkgs/development/libraries/vtk/default.nix
3605 modified: pkgs/development/libraries/vulkan-loader/default.nix
3606 modified: pkgs/development/libraries/webkitgtk/2.18.nix
3607 modified: pkgs/development/libraries/wlc/default.nix
3608 modified: pkgs/development/libraries/wlroots/default.nix
3609 modified: pkgs/development/libraries/wxwidgets/2.8/default.nix
3610 modified: pkgs/development/libraries/wxwidgets/2.9/default.nix
3611 modified: pkgs/development/libraries/wxwidgets/3.0/default.nix
3612 modified: pkgs/development/libraries/xgboost/default.nix
3613 modified: pkgs/development/libraries/xine-lib/default.nix
3614 modified: pkgs/development/misc/amdapp-sdk/default.nix
3615 modified: pkgs/development/misc/avr/binutils/default.nix
3616 modified: pkgs/development/misc/avr/gcc/default.nix
3617 modified: pkgs/development/mobile/androidenv/androidsdk.nix
3618 modified: pkgs/development/mobile/androidenv/default.nix
3619 modified: pkgs/development/mobile/genymotion/default.nix
3620 modified: pkgs/development/node-packages/node-packages-v8.json
3621 modified: pkgs/development/node-packages/node-packages-v8.nix
3622 modified: pkgs/development/ocaml-modules/bap/default.nix
3623 modified: pkgs/development/ocaml-modules/biniou/default.nix
3624 new file: pkgs/development/ocaml-modules/camlimages/default.nix
3625 modified: pkgs/development/ocaml-modules/janestreet/default.nix
3626 modified: pkgs/development/ocaml-modules/janestreet/janePackage.nix
3627 new file: pkgs/development/ocaml-modules/janestreet/old.nix
3628 modified: pkgs/development/ocaml-modules/lablgl/default.nix
3629 modified: pkgs/development/ocaml-modules/sawja/default.nix
3630 new file: pkgs/development/perl-modules/perl-POE-1.367-pod_linkcheck.patch
3631 new file: pkgs/development/perl-modules/perl-POE-1.367-pod_no404s.patch
3632 modified: pkgs/development/pharo/vm/build-vm-legacy.nix
3633 modified: pkgs/development/pharo/vm/build-vm.nix
3634 modified: pkgs/development/pharo/vm/vms.nix
3635 modified: pkgs/development/pure-modules/gl/default.nix
3636 modified: pkgs/development/python-modules/aiohttp/cors.nix
3637 modified: pkgs/development/python-modules/aiohttp/default.nix
3638 new file: pkgs/development/python-modules/alot/default.nix
3639 new file: pkgs/development/python-modules/antlr4-python3-runtime/default.nix
3640 new file: pkgs/development/python-modules/anyjson/default.nix
3641 deleted: pkgs/development/python-modules/asgi_ipc/default.nix
3642 deleted: pkgs/development/python-modules/asgi_redis/default.nix
3643 modified: pkgs/development/python-modules/asgiref/default.nix
3644 modified: pkgs/development/python-modules/bap/default.nix
3645 modified: pkgs/development/python-modules/daphne/default.nix
3646 modified: pkgs/development/python-modules/datashape/default.nix
3647 new file: pkgs/development/python-modules/flake8-import-order/default.nix
3648 new file: pkgs/development/python-modules/h11/default.nix
3649 new file: pkgs/development/python-modules/htmltreediff/default.nix
3650 new file: pkgs/development/python-modules/junos-eznc/default.nix
3651 new file: pkgs/development/python-modules/latexcodec/default.nix
3652 new file: pkgs/development/python-modules/marisa/default.nix
3653 modified: pkgs/development/python-modules/natsort/default.nix
3654 new file: pkgs/development/python-modules/ncclient/default.nix
3655 modified: pkgs/development/python-modules/odo/default.nix
3656 new file: pkgs/development/python-modules/oset/default.nix
3657 modified: pkgs/development/python-modules/pillow/default.nix
3658 new file: pkgs/development/python-modules/polib/default.nix
3659 new file: pkgs/development/python-modules/proboscis/default.nix
3660 new file: pkgs/development/python-modules/progressbar/default.nix
3661 new file: pkgs/development/python-modules/publicsuffix/default.nix
3662 new file: pkgs/development/python-modules/pybtex-docutils/default.nix
3663 new file: pkgs/development/python-modules/pybtex/default.nix
3664 new file: pkgs/development/python-modules/pychart/default.nix
3665 modified: pkgs/development/python-modules/pydocstyle/default.nix
3666 modified: pkgs/development/python-modules/pyftgl/default.nix
3667 modified: pkgs/development/python-modules/pyglet/default.nix
3668 new file: pkgs/development/python-modules/pyjade/default.nix
3669 new file: pkgs/development/python-modules/pylama/default.nix
3670 modified: pkgs/development/python-modules/pylint/default.nix
3671 new file: pkgs/development/python-modules/pymetar/default.nix
3672 modified: pkgs/development/python-modules/pytest-mock/default.nix
3673 new file: pkgs/development/python-modules/python-ptrace/default.nix
3674 new file: pkgs/development/python-modules/scp/default.nix
3675 new file: pkgs/development/python-modules/sphinx-navtree/default.nix
3676 new file: pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix
3677 new file: pkgs/development/python-modules/wsproto/default.nix
3678 modified: pkgs/development/r-modules/default.nix
3679 modified: pkgs/development/ruby-modules/gem-config/default.nix
3680 modified: pkgs/development/ruby-modules/gem/default.nix
3681 modified: pkgs/development/tools/ammonite/default.nix
3682 modified: pkgs/development/tools/analysis/checkstyle/default.nix
3683 modified: pkgs/development/tools/analysis/cppcheck/default.nix
3684 modified: pkgs/development/tools/analysis/include-what-you-use/default.nix
3685 modified: pkgs/development/tools/analysis/pmd/default.nix
3686 modified: pkgs/development/tools/analysis/radare2/default.nix
3687 modified: pkgs/development/tools/analysis/spin/default.nix
3688 new file: pkgs/development/tools/ansible-lint/default.nix
3689 modified: pkgs/development/tools/build-managers/bazel/0.4.nix
3690 new file: pkgs/development/tools/build-managers/bear/cmakepaths.patch
3691 modified: pkgs/development/tools/build-managers/bear/default.nix
3692 modified: pkgs/development/tools/build-managers/dub/default.nix
3693 modified: pkgs/development/tools/build-managers/icmake/default.nix
3694 modified: pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
3695 modified: pkgs/development/tools/documentation/gtk-doc/default.nix
3696 modified: pkgs/development/tools/documentation/mkdocs/default.nix
3697 modified: pkgs/development/tools/dtools/default.nix
3698 modified: pkgs/development/tools/flyway/default.nix
3699 modified: pkgs/development/tools/geckodriver/default.nix
3700 modified: pkgs/development/tools/glslviewer/default.nix
3701 modified: pkgs/development/tools/godot/default.nix
3702 modified: pkgs/development/tools/godot/pkg_config_additions.patch
3703 modified: pkgs/development/tools/haskell/multi-ghc-travis/default.nix
3704 modified: pkgs/development/tools/icestorm/default.nix
3705 modified: pkgs/development/tools/misc/ccache/default.nix
3706 new file: pkgs/development/tools/misc/ccache/fix-debug-prefix-map-suite.patch
3707 modified: pkgs/development/tools/misc/ccache/skip-fs-dependent-test.patch
3708 modified: pkgs/development/tools/misc/cl-launch/default.nix
3709 new file: pkgs/development/tools/misc/gdb/darwin-target-match.patch
3710 modified: pkgs/development/tools/misc/gdb/default.nix
3711 modified: pkgs/development/tools/misc/global/default.nix
3712 modified: pkgs/development/tools/misc/hydra/default.nix
3713 modified: pkgs/development/tools/misc/msitools/default.nix
3714 modified: pkgs/development/tools/misc/yodl/default.nix
3715 modified: pkgs/development/tools/mypy/default.nix
3716 modified: pkgs/development/tools/ocaml/jbuilder/default.nix
3717 modified: pkgs/development/tools/parsing/jshon/default.nix
3718 modified: pkgs/development/tools/profiling/systemtap/default.nix
3719 modified: pkgs/development/tools/simavr/default.nix
3720 modified: pkgs/development/tools/unity3d/default.nix
3721 modified: pkgs/development/tools/vagrant/Gemfile.lock
3722 modified: pkgs/development/tools/vagrant/default.nix
3723 modified: pkgs/development/tools/vagrant/gemset.nix
3724 modified: pkgs/development/tools/vogl/default.nix
3725 new file: pkgs/development/tools/yarn2nix/bin/yarn2nix.js
3726 new file: pkgs/development/tools/yarn2nix/default.nix
3727 new file: pkgs/development/tools/yarn2nix/fixup_bin.js
3728 new file: pkgs/development/tools/yarn2nix/package.json
3729 new file: pkgs/development/tools/yarn2nix/yarn.lock
3730 new file: pkgs/development/tools/yarn2nix/yarn.nix
3731 modified: pkgs/development/web/grails/default.nix
3732 new file: pkgs/development/web/insomnia/default.nix
3733 modified: pkgs/development/web/kore/default.nix
3734 new file: pkgs/development/web/nodejs/nodejs-release-keys.asc
3735 modified: pkgs/development/web/nodejs/nodejs.nix
3736 new file: pkgs/development/web/nodejs/update-keyring
3737 new file: pkgs/development/web/nodejs/update.nix
3738 modified: pkgs/development/web/nodejs/v9.nix
3739 modified: pkgs/games/0ad/game.nix
3740 modified: pkgs/games/adom/default.nix
3741 modified: pkgs/games/alienarena/default.nix
3742 modified: pkgs/games/amoeba/default.nix
3743 modified: pkgs/games/armagetronad/default.nix
3744 modified: pkgs/games/arx-libertatis/default.nix
3745 modified: pkgs/games/astromenace/default.nix
3746 modified: pkgs/games/bitsnbots/default.nix
3747 modified: pkgs/games/blackshades/default.nix
3748 modified: pkgs/games/blackshadeselite/default.nix
3749 modified: pkgs/games/blobby/default.nix
3750 modified: pkgs/games/btanks/default.nix
3751 modified: pkgs/games/bzflag/default.nix
3752 modified: pkgs/games/commandergenius/default.nix
3753 modified: pkgs/games/construo/default.nix
3754 modified: pkgs/games/crack-attack/default.nix
3755 modified: pkgs/games/crawl/default.nix
3756 modified: pkgs/games/crrcsim/default.nix
3757 modified: pkgs/games/dhewm3/default.nix
3758 modified: pkgs/games/dwarf-fortress/dfhack/default.nix
3759 modified: pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
3760 modified: pkgs/games/dwarf-fortress/unfuck.nix
3761 modified: pkgs/games/dxx-rebirth/default.nix
3762 modified: pkgs/games/eduke32/default.nix
3763 modified: pkgs/games/egoboo/default.nix
3764 modified: pkgs/games/eternity-engine/default.nix
3765 modified: pkgs/games/extremetuxracer/default.nix
3766 modified: pkgs/games/ezquake/default.nix
3767 modified: pkgs/games/factorio/default.nix
3768 modified: pkgs/games/flightgear/default.nix
3769 modified: pkgs/games/freecell-solver/default.nix
3770 new file: pkgs/games/freedroidrpg/default.nix
3771 modified: pkgs/games/freeorion/default.nix
3772 modified: pkgs/games/fsg/default.nix
3773 modified: pkgs/games/gl-117/default.nix
3774 modified: pkgs/games/globulation/default.nix
3775 modified: pkgs/games/gltron/default.nix
3776 modified: pkgs/games/gnubg/default.nix
3777 new file: pkgs/games/gnujump/default.nix
3778 modified: pkgs/games/gzdoom/default.nix
3779 modified: pkgs/games/hedgewars/default.nix
3780 modified: pkgs/games/kobodeluxe/default.nix
3781 modified: pkgs/games/lincity/ng.nix
3782 modified: pkgs/games/liquidwar/default.nix
3783 modified: pkgs/games/mar1d/default.nix
3784 modified: pkgs/games/mars/default.nix
3785 modified: pkgs/games/megaglest/default.nix
3786 modified: pkgs/games/minecraft/default.nix
3787 modified: pkgs/games/minetest/default.nix
3788 modified: pkgs/games/naev/default.nix
3789 modified: pkgs/games/neverball/default.nix
3790 modified: pkgs/games/newtonwars/default.nix
3791 modified: pkgs/games/nexuiz/default.nix
3792 modified: pkgs/games/openjk/default.nix
3793 modified: pkgs/games/openmw/tes3mp.nix
3794 modified: pkgs/games/openrct2/default.nix
3795 modified: pkgs/games/openrw/default.nix
3796 modified: pkgs/games/openspades/default.nix
3797 modified: pkgs/games/openxcom/default.nix
3798 modified: pkgs/games/pingus/default.nix
3799 modified: pkgs/games/pioneer/default.nix
3800 modified: pkgs/games/pioneers/default.nix
3801 modified: pkgs/games/prboom/default.nix
3802 modified: pkgs/games/privateer/default.nix
3803 modified: pkgs/games/quake3/ioquake/default.nix
3804 modified: pkgs/games/quake3/wrapper/default.nix
3805 modified: pkgs/games/residualvm/default.nix
3806 modified: pkgs/games/rigsofrods/default.nix
3807 modified: pkgs/games/rocksndiamonds/default.nix
3808 modified: pkgs/games/sauerbraten/default.nix
3809 modified: pkgs/games/scorched3d/default.nix
3810 modified: pkgs/games/scrolls/default.nix
3811 modified: pkgs/games/scummvm/default.nix
3812 modified: pkgs/games/soi/default.nix
3813 modified: pkgs/games/space-orbit/default.nix
3814 modified: pkgs/games/speed-dreams/default.nix
3815 modified: pkgs/games/spring/default.nix
3816 modified: pkgs/games/stardust/default.nix
3817 modified: pkgs/games/steam/chrootenv.nix
3818 modified: pkgs/games/steam/runtime-wrapped.nix
3819 modified: pkgs/games/super-tux-kart/default.nix
3820 modified: pkgs/games/supertux/default.nix
3821 modified: pkgs/games/teeworlds/default.nix
3822 modified: pkgs/games/the-powder-toy/default.nix
3823 modified: pkgs/games/tibia/default.nix
3824 modified: pkgs/games/tome4/default.nix
3825 modified: pkgs/games/torcs/default.nix
3826 modified: pkgs/games/trackballs/default.nix
3827 modified: pkgs/games/tremulous/default.nix
3828 modified: pkgs/games/trigger/default.nix
3829 modified: pkgs/games/ufoai/default.nix
3830 modified: pkgs/games/ultimatestunts/default.nix
3831 modified: pkgs/games/ultrastardx/default.nix
3832 modified: pkgs/games/unvanquished/default.nix
3833 modified: pkgs/games/uqm/3dovideo.nix
3834 modified: pkgs/games/uqm/default.nix
3835 modified: pkgs/games/urbanterror/default.nix
3836 modified: pkgs/games/vdrift/default.nix
3837 modified: pkgs/games/vessel/default.nix
3838 modified: pkgs/games/voxelands/default.nix
3839 modified: pkgs/games/warsow/default.nix
3840 modified: pkgs/games/worldofgoo/default.nix
3841 modified: pkgs/games/xmoto/default.nix
3842 modified: pkgs/games/xonotic/default.nix
3843 modified: pkgs/games/xpilot/bloodspilot-client.nix
3844 modified: pkgs/games/xpilot/default.nix
3845 modified: pkgs/games/zandronum/default.nix
3846 modified: pkgs/games/zandronum/fmod.nix
3847 modified: pkgs/misc/apulse/default.nix
3848 modified: pkgs/misc/apulse/pressureaudio.nix
3849 modified: pkgs/misc/emulators/atari800/default.nix
3850 modified: pkgs/misc/emulators/attract-mode/default.nix
3851 new file: pkgs/misc/emulators/caprice32/default.nix
3852 modified: pkgs/misc/emulators/citra/default.nix
3853 modified: pkgs/misc/emulators/desmume/default.nix
3854 modified: pkgs/misc/emulators/dolphin-emu/default.nix
3855 modified: pkgs/misc/emulators/dolphin-emu/master.nix
3856 modified: pkgs/misc/emulators/dosbox/default.nix
3857 modified: pkgs/misc/emulators/dosbox/unstable.nix
3858 modified: pkgs/misc/emulators/emulationstation/default.nix
3859 modified: pkgs/misc/emulators/fakenes/default.nix
3860 modified: pkgs/misc/emulators/fs-uae/default.nix
3861 modified: pkgs/misc/emulators/gens-gs/default.nix
3862 modified: pkgs/misc/emulators/higan/default.nix
3863 modified: pkgs/misc/emulators/mednafen/default.nix
3864 modified: pkgs/misc/emulators/mess/default.nix
3865 modified: pkgs/misc/emulators/nestopia/default.nix
3866 modified: pkgs/misc/emulators/openmsx/default.nix
3867 new file: pkgs/misc/emulators/qmc2/default.nix
3868 modified: pkgs/misc/emulators/retroarch/cores.nix
3869 modified: pkgs/misc/emulators/retroarch/default.nix
3870 modified: pkgs/misc/emulators/vbam/default.nix
3871 modified: pkgs/misc/emulators/vice/default.nix
3872 modified: pkgs/misc/emulators/wine/base.nix
3873 modified: pkgs/misc/emulators/wine/sources.nix
3874 modified: pkgs/misc/emulators/wxmupen64plus/default.nix
3875 modified: pkgs/misc/emulators/yabause/default.nix
3876 modified: pkgs/misc/emulators/zsnes/default.nix
3877 modified: pkgs/misc/gnash/default.nix
3878 deleted: pkgs/misc/jackaudio/clang.patch
3879 modified: pkgs/misc/jackaudio/default.nix
3880 new file: pkgs/misc/libcardiacarrest/default.nix
3881 modified: pkgs/misc/screensavers/electricsheep/default.nix
3882 modified: pkgs/misc/screensavers/rss-glx/default.nix
3883 modified: pkgs/misc/screensavers/xscreensaver/default.nix
3884 modified: pkgs/misc/seafile-shared/default.nix
3885 modified: pkgs/misc/vim-plugins/default.nix
3886 modified: pkgs/os-specific/darwin/apple-source-releases/network_cmds/default.nix
3887 modified: pkgs/os-specific/darwin/apple-source-releases/shell_cmds/default.nix
3888 modified: pkgs/os-specific/darwin/khd/default.nix
3889 modified: pkgs/os-specific/darwin/kwm/default.nix
3890 new file: pkgs/os-specific/darwin/qes/default.nix
3891 new file: pkgs/os-specific/darwin/skhd/default.nix
3892 new file: pkgs/os-specific/darwin/skhd/org.nixos.skhd.plist
3893 modified: pkgs/os-specific/linux/amdgpu-pro/default.nix
3894 modified: pkgs/os-specific/linux/ati-drivers/builder.sh
3895 modified: pkgs/os-specific/linux/ati-drivers/default.nix
3896 modified: pkgs/os-specific/linux/batman-adv/alfred.nix
3897 modified: pkgs/os-specific/linux/batman-adv/batctl.nix
3898 modified: pkgs/os-specific/linux/batman-adv/default.nix
3899 modified: pkgs/os-specific/linux/bbswitch/default.nix
3900 new file: pkgs/os-specific/linux/fwts/default.nix
3901 modified: pkgs/os-specific/linux/kernel/generic.nix
3902 modified: pkgs/os-specific/linux/kernel/linux-4.14.nix
3903 modified: pkgs/os-specific/linux/kernel/linux-4.15.nix
3904 modified: pkgs/os-specific/linux/kernel/linux-4.4.nix
3905 modified: pkgs/os-specific/linux/kernel/linux-4.9.nix
3906 modified: pkgs/os-specific/linux/kernel/linux-copperhead-hardened.nix
3907 modified: pkgs/os-specific/linux/kernel/linux-testing.nix
3908 modified: pkgs/os-specific/linux/kmscon/default.nix
3909 modified: pkgs/os-specific/linux/kmscube/default.nix
3910 modified: pkgs/os-specific/linux/prl-tools/default.nix
3911 modified: pkgs/os-specific/linux/systemd/default.nix
3912 modified: pkgs/os-specific/linux/trinity/default.nix
3913 modified: pkgs/os-specific/linux/v4l-utils/default.nix
3914 modified: pkgs/servers/amqp/qpid-cpp/default.nix
3915 modified: pkgs/servers/ftp/bftpd/default.nix
3916 modified: pkgs/servers/http/apache-modules/mod_wsgi/default.nix
3917 modified: pkgs/servers/http/nginx/mainline.nix
3918 modified: pkgs/servers/http/openresty/default.nix
3919 modified: pkgs/servers/mail/clamsmtp/default.nix
3920 new file: pkgs/servers/mail/clamsmtp/header-order.patch
3921 modified: pkgs/servers/mail/dovecot/default.nix
3922 modified: pkgs/servers/mail/mlmmj/default.nix
3923 modified: pkgs/servers/monitoring/grafana/default.nix
3924 modified: pkgs/servers/monitoring/prometheus/alertmanager.nix
3925 modified: pkgs/servers/monitoring/riemann/default.nix
3926 modified: pkgs/servers/mpd/default.nix
3927 modified: pkgs/servers/nosql/neo4j/default.nix
3928 modified: pkgs/servers/radarr/default.nix
3929 modified: pkgs/servers/sabnzbd/default.nix
3930 modified: pkgs/servers/samba/4.x.nix
3931 modified: pkgs/servers/sql/mysql/5.5.x.nix
3932 modified: pkgs/servers/sql/mysql/5.7.x.nix
3933 modified: pkgs/servers/sql/postgresql/pgroonga/default.nix
3934 modified: pkgs/servers/sslh/default.nix
3935 modified: pkgs/servers/uwsgi/default.nix
3936 deleted: pkgs/servers/web-apps/pump.io/composition.nix
3937 deleted: pkgs/servers/web-apps/pump.io/default.nix
3938 deleted: pkgs/servers/web-apps/pump.io/generate.sh
3939 deleted: pkgs/servers/web-apps/pump.io/node-packages.json
3940 deleted: pkgs/servers/web-apps/pump.io/node-packages.nix
3941 modified: pkgs/servers/web-apps/searx/default.nix
3942 modified: pkgs/stdenv/generic/check-meta.nix
3943 modified: pkgs/stdenv/linux/make-bootstrap-tools.nix
3944 modified: pkgs/tools/X11/primus/lib.nix
3945 modified: pkgs/tools/X11/virtualgl/lib.nix
3946 modified: pkgs/tools/admin/gixy/default.nix
3947 modified: pkgs/tools/admin/google-cloud-sdk/default.nix
3948 modified: pkgs/tools/admin/salt/pepper/default.nix
3949 modified: pkgs/tools/admin/tigervnc/default.nix
3950 modified: pkgs/tools/audio/abcmidi/default.nix
3951 modified: pkgs/tools/backup/bdsync/default.nix
3952 modified: pkgs/tools/backup/burp/default.nix
3953 modified: pkgs/tools/backup/restic/default.nix
3954 new file: pkgs/tools/backup/rsbep/default.nix
3955 modified: pkgs/tools/cd-dvd/bchunk/default.nix
3956 modified: pkgs/tools/compression/brotli/default.nix
3957 deleted: pkgs/tools/filesystems/grive/default.nix
3958 modified: pkgs/tools/filesystems/reiser4progs/default.nix
3959 modified: pkgs/tools/filesystems/s3fs/default.nix
3960 new file: pkgs/tools/filesystems/squashfuse/default.nix
3961 modified: pkgs/tools/filesystems/tmsu/default.nix
3962 modified: pkgs/tools/graphics/asymptote/default.nix
3963 modified: pkgs/tools/graphics/enblend-enfuse/default.nix
3964 modified: pkgs/tools/graphics/gifsicle/default.nix
3965 modified: pkgs/tools/graphics/glee/default.nix
3966 modified: pkgs/tools/graphics/glmark2/default.nix
3967 modified: pkgs/tools/graphics/glxinfo/default.nix
3968 modified: pkgs/tools/graphics/logstalgia/default.nix
3969 modified: pkgs/tools/graphics/maim/default.nix
3970 modified: pkgs/tools/graphics/pfstools/default.nix
3971 modified: pkgs/tools/graphics/scanbd/default.nix
3972 new file: pkgs/tools/inputmethods/ibus-engines/ibus-kkc/default.nix
3973 modified: pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix
3974 modified: pkgs/tools/inputmethods/libinput-gestures/default.nix
3975 new file: pkgs/tools/inputmethods/libkkc/default.nix
3976 modified: pkgs/tools/inputmethods/touchegg/default.nix
3977 modified: pkgs/tools/misc/bonfire/default.nix
3978 modified: pkgs/tools/misc/cutecom/default.nix
3979 modified: pkgs/tools/misc/diffoscope/default.nix
3980 new file: pkgs/tools/misc/diffoscope/list-tools.sh
3981 modified: pkgs/tools/misc/esptool/default.nix
3982 modified: pkgs/tools/misc/exa/default.nix
3983 modified: pkgs/tools/misc/flameshot/default.nix
3984 modified: pkgs/tools/misc/gibo/default.nix
3985 modified: pkgs/tools/misc/goaccess/default.nix
3986 modified: pkgs/tools/misc/graylog/default.nix
3987 modified: pkgs/tools/misc/kisslicer/default.nix
3988 modified: pkgs/tools/misc/ocz-ssd-guru/default.nix
3989 modified: pkgs/tools/misc/parallel/default.nix
3990 modified: pkgs/tools/misc/pastebinit/default.nix
3991 modified: pkgs/tools/misc/patdiff/default.nix
3992 modified: pkgs/tools/misc/phraseapp-client/default.nix
3993 modified: pkgs/tools/misc/pipelight/default.nix
3994 new file: pkgs/tools/misc/powerline-go/default.nix
3995 new file: pkgs/tools/misc/powerline-go/deps.nix
3996 modified: pkgs/tools/misc/rename/default.nix
3997 new file: pkgs/tools/misc/skim/default.nix
3998 modified: pkgs/tools/misc/slop/default.nix
3999 modified: pkgs/tools/misc/svtplay-dl/default.nix
4000 modified: pkgs/tools/misc/uutils-coreutils/default.nix
4001 modified: pkgs/tools/misc/wyrd/default.nix
4002 modified: pkgs/tools/misc/youtube-dl/default.nix
4003 modified: pkgs/tools/misc/yubikey-personalization/default.nix
4004 modified: pkgs/tools/networking/ccnet/default.nix
4005 modified: pkgs/tools/networking/dhcpcd/default.nix
4006 modified: pkgs/tools/networking/haproxy/default.nix
4007 modified: pkgs/tools/networking/inadyn/default.nix
4008 new file: pkgs/tools/networking/infiniband-diags/default.nix
4009 modified: pkgs/tools/networking/iperf/3.nix
4010 modified: pkgs/tools/networking/libreswan/default.nix
4011 modified: pkgs/tools/networking/linkchecker/default.nix
4012 deleted: pkgs/tools/networking/linkchecker/no-version-check.patch
4013 modified: pkgs/tools/networking/megatools/default.nix
4014 modified: pkgs/tools/networking/network-manager/l2tp.nix
4015 modified: pkgs/tools/networking/openfortivpn/default.nix
4016 modified: pkgs/tools/networking/par2cmdline/default.nix
4017 modified: pkgs/tools/networking/pptp/default.nix
4018 modified: pkgs/tools/networking/s3cmd/default.nix
4019 modified: pkgs/tools/networking/strongswan/default.nix
4020 new file: pkgs/tools/networking/stubby/default.nix
4021 modified: pkgs/tools/networking/vpnc/default.nix
4022 modified: pkgs/tools/networking/zssh/default.nix
4023 modified: pkgs/tools/package-management/nix-serve/default.nix
4024 modified: pkgs/tools/package-management/nix/default.nix
4025 modified: pkgs/tools/security/enpass/default.nix
4026 modified: pkgs/tools/security/fprintd/default.nix
4027 modified: pkgs/tools/security/hashcat/default.nix
4028 modified: pkgs/tools/security/kbfs/default.nix
4029 modified: pkgs/tools/security/keybase-gui/default.nix
4030 modified: pkgs/tools/security/keybase/default.nix
4031 modified: pkgs/tools/security/pass-otp/default.nix
4032 modified: pkgs/tools/security/pass/default.nix
4033 modified: pkgs/tools/security/tor/default.nix
4034 new file: pkgs/tools/security/tor/update.nix
4035 modified: pkgs/tools/system/collectd/default.nix
4036 modified: pkgs/tools/system/facter/default.nix
4037 modified: pkgs/tools/system/memtester/default.nix
4038 modified: pkgs/tools/system/nq/default.nix
4039 modified: pkgs/tools/system/syslog-ng/default.nix
4040 modified: pkgs/tools/system/vboot_reference/default.nix
4041 modified: pkgs/tools/text/html-tidy/default.nix
4042 new file: pkgs/tools/text/ispell/default.nix
4043 new file: pkgs/tools/text/ispell/patches/0005-Do-not-reorder-words.patch
4044 new file: pkgs/tools/text/ispell/patches/0007-Use-termios.patch
4045 new file: pkgs/tools/text/ispell/patches/0008-Tex-backslash.patch
4046 new file: pkgs/tools/text/ispell/patches/0009-Fix-FTBFS-on-glibc.patch
4047 new file: pkgs/tools/text/ispell/patches/0011-Missing-prototypes.patch
4048 new file: pkgs/tools/text/ispell/patches/0012-Fix-getline.patch
4049 new file: pkgs/tools/text/ispell/patches/0013-Fix-man-pages.patch
4050 new file: pkgs/tools/text/ispell/patches/0021-Fix-gcc-warnings.patch
4051 new file: pkgs/tools/text/ispell/patches/0023-Exclusive-options.patch
4052 new file: pkgs/tools/text/ispell/patches/0024-Check-tempdir-creation.patch
4053 new file: pkgs/tools/text/ispell/patches/0025-Languages.patch
4054 new file: pkgs/tools/text/ispell/patches/0030-Display-whole-multibyte-character.patch
4055 modified: pkgs/tools/text/mpage/default.nix
4056 deleted: pkgs/tools/typesetting/tex/tex4ht/default.nix
4057 new file: pkgs/tools/video/untrunc/default.nix
4058 modified: pkgs/top-level/aliases.nix
4059 modified: pkgs/top-level/all-packages.nix
4060 modified: pkgs/top-level/dotnet-packages.nix
4061 modified: pkgs/top-level/lua-packages.nix
4062 modified: pkgs/top-level/ocaml-packages.nix
4063 modified: pkgs/top-level/perl-packages.nix
4064 modified: pkgs/top-level/php-packages.nix
4065 modified: pkgs/top-level/python-packages.nix
4066 modified: pkgs/top-level/release.nix
4067
4068Untracked files:
4069 (use "git add <file>..." to include in what will be committed)
4070
4071 pkgs/applications/science/stats/
4072
4073bash-3.2$ git merge --abort
4074bash-3.2$ git status
4075On branch master
4076Your branch and 'origin/master' have diverged,
4077and have 1 and 1094 different commits each, respectively.
4078 (use "git pull" to merge the remote branch into yours)
4079
4080Untracked files:
4081 (use "git add <file>..." to include in what will be committed)
4082
4083 pkgs/applications/science/stats/
4084
4085nothing added to commit but untracked files present (use "git add" to track)
4086bash-3.2$ git pull
4087Auto-merging pkgs/top-level/all-packages.nix
4088Removing pkgs/tools/typesetting/tex/tex4ht/default.nix
4089Removing pkgs/tools/networking/linkchecker/no-version-check.patch
4090Removing pkgs/tools/filesystems/grive/default.nix
4091Removing pkgs/servers/web-apps/pump.io/node-packages.nix
4092Removing pkgs/servers/web-apps/pump.io/node-packages.json
4093Removing pkgs/servers/web-apps/pump.io/generate.sh
4094Removing pkgs/servers/web-apps/pump.io/default.nix
4095Removing pkgs/servers/web-apps/pump.io/composition.nix
4096Removing pkgs/misc/jackaudio/clang.patch
4097Removing pkgs/development/python-modules/asgi_redis/default.nix
4098Removing pkgs/development/python-modules/asgi_ipc/default.nix
4099Removing pkgs/development/libraries/postgis/pg_db_postgis_fix_or_load_sql_dump.sh
4100Removing pkgs/development/libraries/postgis/pg_db_postgis_enable.sh
4101Removing pkgs/development/libraries/postgis/2.3.nix
4102Removing pkgs/development/libraries/libcdio/0.82.nix
4103Removing pkgs/development/libraries/json-c/0.11.nix
4104Removing pkgs/desktops/gnome-3/core/gnome-contacts/gio_unix.patch
4105Removing pkgs/desktops/gnome-3/apps/bijiben/no-update-icon-cache.patch
4106Removing pkgs/desktops/gnome-2/desktop/gnome-session/default.nix
4107Removing pkgs/applications/virtualization/virtualbox/HostServices-SharedClipboard-x11-stub.cpp-use-RT_NOR.patch
4108Auto-merging pkgs/applications/networking/protocol/default.nix
4109Removing pkgs/applications/networking/feedreaders/newsbeuter/default.nix
4110Removing pkgs/applications/networking/browsers/chromium/patches/include-math-for-round.patch
4111Removing pkgs/applications/networking/browsers/chromium/patches/fix_network_api_crash.patch
4112Removing pkgs/applications/networking/browsers/chromium/patches/constexpr-fix.patch
4113Removing pkgs/applications/networking/browsers/chromium/patches/chromium-gcc5-r4.patch
4114Removing pkgs/applications/misc/keepassx/cmake.patch
4115Removing pkgs/applications/altcoins/primecoin.nix
4116Removing nixos/tests/pump.io.nix
4117Removing nixos/modules/services/web-apps/pump.io.nix
4118Removing nixos/modules/services/web-apps/pump.io-configure.js
4119Removing nixos/modules/installer/tools/nixos-prepare-root.sh
4120Removing lib/maintainers.nix
4121error: Terminal is dumb, but EDITOR unset
4122Not committing merge; use 'git commit' to complete the merge.
4123bash-3.2$ git merge --abort
4124bash-3.2$ git branch
4125* master
4126 newMaster
4127 realMaster
4128 upstream/masterNg
4129 upstream/tidy
4130bash-3.2$ pwd
4131/Users/dom/nixpkgs
4132bash-3.2$ cd ~/Dropbox/Tidy/NumMethHaskell/variational/
4133bash-3.2$ cd ../symplectic-integrators/
4134bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
4135error: syntax error, unexpected ID, expecting '}', at /Users/dom/Dropbox/Tidy/NumMethHaskell/symplectic-integrators/shell.nix:11:38
4136bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
4137these derivations will be built:
4138 /nix/store/2yh6s5i17mlhkg3ng1ss2ys4r5ciwn8q-hmatrix-0.18.2.0.drv
4139 /nix/store/b4a5jmpbc1rzf1vyfw6ilhdc8ym2xlxh-inline-r-0.9.1.drv
4140 /nix/store/hb60siq8cqmnpw4alxv4kcs69c3c39vb-diagrams-rasterific-1.4.drv
4141 /nix/store/hk8yphhiyraqng0r5fpr2zkkpf2y8kdw-hmatrix-gsl-0.18.2.0.drv
4142 /nix/store/x3q2i9vr8s56w9wl1h0g0z8rn36fhr8q-ghc-8.2.2-with-packages.drv
4143these paths will be fetched (251.14 MiB download, 2705.09 MiB unpacked):
4144 /nix/store/002wnccy4qhbmslppfr4hbq2dx3cg1q2-haskell-lexer-1.0.1-doc
4145 /nix/store/00vjraxm2aak27m1bfsfv50mpgmcnybb-zlib-0.6.1.2
4146 /nix/store/03iis1sa9h5l0lc0w3qp9qq59b9lmfpr-fingertree-0.1.3.1
4147 /nix/store/05vjlnz4nksf55v9h88766zjqsrqndp0-quickcheck-io-0.2.0-doc
4148 /nix/store/083iq19klnzyijh6yfazfy3zn5mrhyk1-doctest-0.13.0-doc
4149 /nix/store/08iyxhj8m1bb8npk3x0snmk7iw4bg8ks-testing-feat-0.4.0.3
4150 /nix/store/08sammgs8283a96bp9iqkpk0r1afwykk-monad-par-extras-0.3.3-doc
4151 /nix/store/0fmh02khm96ppk5ffladybs4w7g5f4br-mockery-0.3.5
4152 /nix/store/0ma47gi9iavzdaw2x01z3696mfjr72kv-test-framework-th-0.2.4-doc
4153 /nix/store/0p0vwk1grj5gbwdxw7nm6ykyhaj51nig-QuickCheck-2.10.1
4154 /nix/store/11p3zfcnbdykbliy7jsg1vg5wrgwiblb-cpphs-1.20.8-doc
4155 /nix/store/12q9bzizlip223g1gxij8802ciyb2j4p-exceptions-0.8.3
4156 /nix/store/13kgwzgv3rsdfcyj4x0xz4fiw4pi047w-haskell-src-exts-1.19.1-doc
4157 /nix/store/1693fpv36yp7gd07sbnl1vx820zanic1-lens-4.15.4
4158 /nix/store/16gkq7zm93imfw8dy5qhx3xrrn6pr4xf-polyparse-1.12-doc
4159 /nix/store/178z05w62gz57x6c17gciyj8dc6lipn1-nats-1.1.2
4160 /nix/store/182d9dzkpm62ji9a2hyqnfhcg9ghpbqs-ieee754-0.8.0-doc
4161 /nix/store/196n7v09rs5m9kl51wvzxmpnvr5d3vnk-setenv-0.1.1.3
4162 /nix/store/1as6ird2m1wcyjrlfn1jzj2m0yds6szr-comonad-5.0.3
4163 /nix/store/1lr1j44faw7bzw3abji25vccqg53sb1v-polyparse-1.12
4164 /nix/store/1mgfv23zk9asgdby6xbkncdlqhqgnkb0-transformers-compat-0.5.1.4
4165 /nix/store/1mx9637d8iykb5rvivmzzzb057shn0vl-quickcheck-instances-0.3.16.1-doc
4166 /nix/store/1p61qsaj03k24zfy1148r3134d6fj7zg-base16-bytestring-0.1.1.6-doc
4167 /nix/store/1ywa11qxv38pm0g1rhna49bi504pqqhf-regex-base-0.93.2-doc
4168 /nix/store/23ic3ndnash0kyyv4jvm4q6ycn83yghg-hmatrix-0.18.2.0-doc
4169 /nix/store/23j0mb5zgpi3dgb0lrk0pal8xgfpc76h-logict-0.6.0.2-doc
4170 /nix/store/26nlip2wm06ly3xcdhhy1c4qmw2wz96f-StateVar-1.1.0.4
4171 /nix/store/2hq8m8kjn6g5a4wa4fp5xrc0qky3qdfb-pretty-show-1.6.16-doc
4172 /nix/store/2lmn1r6mwb794w7pamcgzp72dqlzmd38-kan-extensions-5.0.2-doc
4173 /nix/store/2q31nynlgqsnzlmq57hsrb2i1d4iqwqp-parallel-3.2.1.1-doc
4174 /nix/store/2rllwa6pjfnb118glmnfh5wb565d8gc0-HUnit-1.6.0.0-doc
4175 /nix/store/2v803wycjcw29k39vn4d3m073kngmjlm-mockery-0.3.5-doc
4176 /nix/store/2vvv5qcbw4rzd3hmxbbvimfcdfy7inbg-ansi-terminal-0.7.1.1
4177 /nix/store/2xm9v8vrcyvv9hvqixm9rs05k0wlpgy6-regex-tdfa-1.2.2-doc
4178 /nix/store/2zzjn4c4fn92vli2q88di671g0bz709m-integer-logarithms-1.0.2-doc
4179 /nix/store/307ldc7zj3djrppinlayxwvm0dhy5wwk-colour-2.3.4-data
4180 /nix/store/325ynkql2a7bn066ykhj2fjzh28bv7j7-exceptions-0.8.3-doc
4181 /nix/store/34xhyg6vf5yxjxyr26fl33yc7w2ll0nq-safe-0.3.15
4182 /nix/store/3755b5kf119rcvwfa6svwcgxjg68fjiv-pretty-show-1.6.16-data
4183 /nix/store/3a8mhjzkv7lxjwkq9gy2iab6638m0i8n-hspec-discover-2.4.4
4184 /nix/store/3aa9f11mf4j4d3cm26x4qs1irdd202id-attoparsec-0.13.2.2-doc
4185 /nix/store/3ad3hps5zwpgsj8mpkjlwsvg8kqqyhyn-monad-par-0.3.4.8-doc
4186 /nix/store/3i4r6m8vwkzjj32f95zcl5f8v3f2l0qn-newtype-generics-0.5.2.1
4187 /nix/store/3jj2k2w0c2k5p95b5mn0xfw1nv71plsg-silently-1.2.5
4188 /nix/store/3m5r0586m3ds2x0r7gw8dk6lbkrcfixv-numeric-extras-0.1
4189 /nix/store/3q8wvqbvr4ra2wrynwqydzm544dxjank-stringbuilder-0.5.1-doc
4190 /nix/store/3ramz5i22lk30m0q4y1an3khamg3866z-diagrams-lib-1.4.2
4191 /nix/store/3ym2da7f2hlxb5szhnla4q7248s92d5a-plots-0.1.0.2
4192 /nix/store/400sz3l0anvwjmcsy6i9scnafxyp3936-tasty-golden-2.3.1.2-doc
4193 /nix/store/406ias819m5r0nk37a3v0hri7y8r8amd-th-orphans-0.13.5
4194 /nix/store/45g5xr9gbfpxpd5falrr1g0cp51rn9p1-bytes-0.15.3-doc
4195 /nix/store/46k9l8xpfm53l048iwhmgz67v3cp2qd5-integer-logarithms-1.0.2
4196 /nix/store/46xzncxnjxmxlfc0q11irjqi6g4ki3cf-diagrams-lib-1.4.2-doc
4197 /nix/store/4aa59vqflnbnjw8gfb7hxlz7im6qf4zw-code-page-0.1.3-doc
4198 /nix/store/4ab2yjgljsyh0pzv29xd4adzgd299qxz-tasty-0.11.3-doc
4199 /nix/store/4f75ic0pvavmmyd6mz0ifvg8l90yg9xg-th-desugar-1.7-doc
4200 /nix/store/4g29hjxvhlnrk53dlp4lwfm1791n0in0-th-lift-instances-0.1.11-doc
4201 /nix/store/4m8n7xgyiqj60g782s12ygg8vxk5il7b-async-2.1.1.1
4202 /nix/store/4n3aj2s0688laavs5zcflcf64wff92xa-th-orphans-0.13.5-doc
4203 /nix/store/4q04iyqk9sici7kdv3lzfnkd7hhr3p16-colour-2.3.4
4204 /nix/store/4x4my0ax3jfygz5bfkwi26wd1snlwaw7-uuid-types-1.0.3
4205 /nix/store/4yf1z3xzj0z9vv2mmbhmydnzhf3rbhnb-smallcheck-1.1.3.1
4206 /nix/store/52g6dj1pjv64zqqkkr2mykfkcc52hn0x-th-abstraction-0.2.6.0
4207 /nix/store/53nrnfkl4vq679dk4m91wy0fwy8rivsd-ghc-paths-0.1.0.9
4208 /nix/store/54b968i8g48wzy9q60bf4qw0yyrfaqqj-syb-0.7
4209 /nix/store/54lkhcwjn0aj223xk09021v6qrnxz78p-tasty-smallcheck-0.8.1-doc
4210 /nix/store/54qrah0hrx7amg7vgsg6g0ba4f4crx4p-old-time-1.1.0.3
4211 /nix/store/56f5701vqzrgs4qy6q1c7fn5flsm5vqz-old-locale-1.0.0.7
4212 /nix/store/59j4hybd120fy6fyhml57665g6zvcskz-smallcheck-1.1.3.1-doc
4213 /nix/store/5fbcj81hj5z6awx6pc1w9majbwi2v3pk-extensible-exceptions-0.1.1.4
4214 /nix/store/5fq60i0vpmr1sh4h5gmd6jp3vgsppzwg-temporary-1.2.1.1-doc
4215 /nix/store/5glr4dq393jpl7wh8ygn7gyidgvdssvp-stringbuilder-0.5.1
4216 /nix/store/5h15xk97r1vrmqjg60fwvsvcaph08c3b-split-0.2.3.3-doc
4217 /nix/store/5lkgxraw06ca7lbkg1dwhxjgb1hpdckb-logging-facade-0.3.0
4218 /nix/store/5nqfwms9n2rrxf0ccbrn2ihfadv9k48f-scientific-0.3.5.2
4219 /nix/store/5p3rcx1knymrhhc3s6qcfll3bl92qalq-cereal-0.5.5.0
4220 /nix/store/5r7q4zzhgb9lxliw3sg734q7bpvhfmrv-kan-extensions-5.0.2
4221 /nix/store/5zw1kn5dggykkv4yi99b3mzqg2hymrdz-profunctors-5.2.2-doc
4222 /nix/store/600y7175kqyfazrwl99vkh2m2afwy073-tasty-hunit-0.9.2-doc
4223 /nix/store/6gac7yh0cx5ix1sy7jmqnk2c6wfw3k33-tasty-ant-xml-1.1.3
4224 /nix/store/6i6k2b5jcqsz1lhrjjgsfzwnhf02cbmn-regex-posix-0.95.2-doc
4225 /nix/store/6jppbbdfxjbv5ys0vwgl9kw0j5pdq5bs-math-functions-0.2.1.0-doc
4226 /nix/store/6w049ja5hrfvkhbn1nckj911qig2wka4-data-default-instances-old-locale-0.0.1
4227 /nix/store/7b9p3y4wlpbpza20b4whi1803hms70w1-test-framework-quickcheck2-0.3.0.4-doc
4228 /nix/store/7c2zb017gs6sad4hzy5m3skpa6d83had-singletons-2.3.1
4229 /nix/store/7c5qc6zazsaaw0chcqmpnpq43kj8j37j-storable-complex-0.2.2
4230 /nix/store/7gzy1wc78xgdladx8s8nnv25skhyg2li-linear-1.20.7
4231 /nix/store/7j8slk7q2aws5a1z33x1s5amcp6rl5s0-th-lift-instances-0.1.11
4232 /nix/store/7p97jn35bcw64fxc7lhv53hapl65nv34-temporary-rc-1.2.0.3
4233 /nix/store/7vdxmdhhsyyydcyqlp7ki95ys8akhvvi-base-orphans-0.6-doc
4234 /nix/store/7yf80xy577ppyr7j6rg7r0dr6d62lckc-cabal-doctest-1.0.6
4235 /nix/store/7yja3l817cam5gi1zxpbi27yjidbv0jx-abstract-par-0.3.3-doc
4236 /nix/store/81s5yhwla9a1kcy10iv888b09q38lgaj-data-default-instances-containers-0.0.1-doc
4237 /nix/store/84arfnbg91z2a6zypckf8mi878y6npgl-storable-complex-0.2.2-doc
4238 /nix/store/8hcjf7ahc6wjkfm46c25fy2dz8qacdsv-test-framework-quickcheck2-0.3.0.4
4239 /nix/store/8hqva7a8nd7sgwdmbmqhwzqynw8yqnpa-stm-2.4.5.0-doc
4240 /nix/store/8kyhlvrp0s59n2j6rf904ypm3vvsd6iw-mtl-2.2.2-doc
4241 /nix/store/8lm6cqqkqgd9b6pvnld92kabhph1ljf7-th-expand-syns-0.4.4.0
4242 /nix/store/8lrqj5i0sn8dmvj1isajvm4hcdw7vkny-Rasterific-0.7.2.1
4243 /nix/store/8rm2zl1anz0jv7h88wwgnrhv0mqxjjfi-nanospec-0.2.2-doc
4244 /nix/store/8w6rgwapdyjknzd1l40r057p4c6g1kax-statistics-0.14.0.2-doc
4245 /nix/store/8y22p2mvlbc4y7d8zizfqw5gwah005rx-parsec-3.1.13.0-doc
4246 /nix/store/90pphnzk9ylyx3cia0pbyw2cf6hy2jqj-dlist-0.8.0.4
4247 /nix/store/91qasfr5c7w38hcqdidajwij01myj4vj-strict-0.3.2-doc
4248 /nix/store/923mjp765cndd123zvwg1c22kk9d6wnh-FontyFruity-0.5.3.3-doc
4249 /nix/store/982k5n5ci5dymf8a11apfxs8p6n7j57c-ChasingBottoms-1.3.1.3
4250 /nix/store/98fbj4kc8npgy9149ihrryqn398nzxz9-singletons-2.3.1-doc
4251 /nix/store/99n1lpa3nk8bdll1krkjm0y39ipz67cw-primitive-0.6.3.0
4252 /nix/store/9b3ixrhf8r4dm26mpz2jgagfrzpgn0qd-quickcheck-assertions-0.3.0
4253 /nix/store/9bcs4l5yl63gmx68rj6yr0p5s9np83gp-linear-1.20.7-doc
4254 /nix/store/9ckpxx3q4yfrzmhawqk4mbw2mc8lqsig-hspec-2.4.4-doc
4255 /nix/store/9cwgffaxmks5l60axzx2c3bhk9ah8lp1-generic-deriving-1.12.1-doc
4256 /nix/store/9g30da7z3r2i5p3fpawsxsj2wxwn4awb-file-embed-0.0.10.1
4257 /nix/store/9h0d73fhbk3cb7qx3wzlr92yzb4j1xmb-hashable-time-0.2.0.1
4258 /nix/store/9j89r4gfz0rgpga6ywz0agb3x5s5dl2w-data-default-instances-old-locale-0.0.1-doc
4259 /nix/store/9jlxg24j8i02qgzkjv4rwmffvv5kn961-with-location-0.1.0
4260 /nix/store/9lcxi38i6fry60y3zn1sph5vybw7csih-parsers-0.12.8-doc
4261 /nix/store/9wigxzwpp2vnc1dvwwnrb846xiv7x3h9-quickcheck-instances-0.3.16.1
4262 /nix/store/a1lb1fj4h06yspyqxwn1jkwn73dvymqp-tasty-golden-2.3.1.2
4263 /nix/store/a3s8p62kngaw74myxggzazjy55v3ap9p-data-default-instances-dlist-0.0.1
4264 /nix/store/a4y2b85581kjva5prxqpsxvncx68pjzp-tasty-expected-failure-0.11.0.4-doc
4265 /nix/store/a5rj0ggmmx4xr0ppdb487n0y3q6skdnp-comonad-5.0.3-doc
4266 /nix/store/a9xfkrqh3zqjxshi3kxrdv6mn74wy12s-abstract-deque-0.3
4267 /nix/store/adzi5c38q4s4j8k8mxfhm5hbnd3ivl5m-lens-4.15.4-doc
4268 /nix/store/agrq46z11l6bzisgsg3a2ihyhydvjbkn-void-0.7.2
4269 /nix/store/akiryfvszsxnd3zg1avyyv9frlcln1h6-optparse-applicative-0.14.2.0-doc
4270 /nix/store/aldn972ad5dnx8n8y1fnwx65pp766962-JuicyPixels-3.2.9.4
4271 /nix/store/algnyvwiav4capp2w80xsfg5fscdmf09-mwc-random-0.13.6.0-doc
4272 /nix/store/aqglza6ihq2rybpmi1fmwnfzp2cjbyi5-vector-algorithms-0.7.0.1
4273 /nix/store/av5yg2fsar7sabafmvp6dhsnx7dz84xv-hspec-meta-2.4.6-doc
4274 /nix/store/ay5jrs1zz68sfpihx999964xxm09j3zw-fsnotify-0.2.1.1
4275 /nix/store/ay7wlzxfrq487jcsyk8va8fd4d37q6bm-th-desugar-1.7
4276 /nix/store/b0mwiqjncwksbqyiv7wm9j3w99yj8jnj-hfsevents-0.1.6-doc
4277 /nix/store/b1hs799i16vy01lpjbx1r993dmprd2kc-th-expand-syns-0.4.4.0-doc
4278 /nix/store/b2d4fg7xzljhmf29bpysfdla9kf3jnv9-bifunctors-5.5.2
4279 /nix/store/b7fkdx0p7jryq17hy8q731scsyiwhhkw-statistics-0.14.0.2
4280 /nix/store/bbmz0sk0c964m4awvpwv6yb26m5kagxk-old-time-1.1.0.3-doc
4281 /nix/store/bf15gpfl2jy438pdbywswxf8c3vpkly0-quickcheck-io-0.2.0
4282 /nix/store/bhp30fgzip7cgp40ciqb41lk5f2wpaca-th-reify-many-0.1.8-doc
4283 /nix/store/bll17nw6p6j39q21xqg89s1qqdrzvxag-syb-0.7-doc
4284 /nix/store/bm7h7sfg3hsadxdc4qkbgfb0l5p2lg70-random-1.1-doc
4285 /nix/store/bqcmjq58zisw5rq3flxx2w5jqkrjkajy-split-0.2.3.3
4286 /nix/store/bxfxjp010wcgi6v3js96kvnf4szcqzbv-ansi-wl-pprint-0.6.8.2-doc
4287 /nix/store/c3a75166736nzvc4hr5djgi4yg9k9rg2-data-default-0.7.1.1-doc
4288 /nix/store/c9ysjnfm24hrmjcnjf7xhzgsmkq1ibp2-doctest-0.13.0
4289 /nix/store/cdhzmhp0rbkjjirxlsqxqvd2b3gg9jbk-hostname-1.0-doc
4290 /nix/store/cwfprgyaj1qrivl1lwdcbzxpp4jp2745-bifunctors-5.5.2-doc
4291 /nix/store/cwrsk309vnxf8d6kdv9vj3ik73zcrssb-silently-1.2.5
4292 /nix/store/cx804c6xk5lcgidaf33hw4g314lqslvi-parallel-3.2.1.1
4293 /nix/store/czkfh6vpd652ya9n3cylzr4i8py33r76-test-framework-0.8.1.1-doc
4294 /nix/store/czs52ym4daqgq19qs1ds5vv514wcvsvc-newtype-generics-0.5.2.1-doc
4295 /nix/store/d91w9x24znzw3z69vjr27ajs397is66c-monoid-extras-0.4.2
4296 /nix/store/dazxclk27g4a3fqvwd6hln22g8mfgsd0-hspec-core-2.4.4
4297 /nix/store/dbaq1pk33sig9i9v7871nq4yww99jln2-monad-par-0.3.4.8
4298 /nix/store/ddm7dc18dgd1gsxqvmcrahmss4ykjrgm-time-locale-compat-0.1.1.3
4299 /nix/store/dff0wsv9zp23m2aglwpss0bkk3ac4fh1-charset-0.3.7.1
4300 /nix/store/dm5fpvdgj7j5981lbkchai44xi2qmppq-random-1.1
4301 /nix/store/dni09d8p6a1zn2xih1ci958igvyxk1yp-stringbuilder-0.5.1
4302 /nix/store/dq4q55a87myqbmz9xdb5w3vy71iq4vql-test-framework-th-0.2.4
4303 /nix/store/f05xnx2hmigkx037r8wkgh7iswn1i7g6-call-stack-0.1.0-doc
4304 /nix/store/f09rk4clzchpfffgm1ywccjxify62ll1-language-haskell-extract-0.2.4
4305 /nix/store/f2qiqmfdcvk1dkbvf3jn7ayhx4i06z9h-reflection-2.1.3-doc
4306 /nix/store/f6540v8l9k17lw9691glhyj2f0mz6110-xml-1.3.14
4307 /nix/store/f7rm6l8hkda7nafvl6whf502kgqfsjya-hspec-core-2.4.4-doc
4308 /nix/store/f7wmila6z2g309fp69cccw8g7yvv831f-stm-2.4.5.0
4309 /nix/store/f8hxq8k24jk8gzcqwirhvr33hmisi9yb-extensible-exceptions-0.1.1.4-doc
4310 /nix/store/f99mi34pgfzbcmy3pg4s64dkc17yds1j-hspec-2.4.4
4311 /nix/store/fkgx6w5x7i1pmmp73w5bnzznvw5nk87d-erf-2.0.0.0-doc
4312 /nix/store/fkk1f61dvsvvnnl77rbbximzqa27drjc-active-0.2.0.13-doc
4313 /nix/store/flc4d72m4cyqwikf7w4jy7zhnvfrmwyg-test-framework-0.8.1.1
4314 /nix/store/fmdc7vpjl3kbb09gihqy66qfi2nam3xq-contravariant-1.4.1
4315 /nix/store/fpjlzar8kg12rmky31mqq1s8pqm58vyq-scientific-0.3.5.2-doc
4316 /nix/store/fwlhxxj883ffcnfllx9b98zkl6r4z8cc-cabal-doctest-1.0.6-doc
4317 /nix/store/fzglij8p2sbl3j40g9i4v6975rxmnc6c-tasty-ant-xml-1.1.3-doc
4318 /nix/store/g0wx1xc7pn3m9af0px9rxplmhb6lvc1f-text-1.2.2.2
4319 /nix/store/g38w08knz0zccczxq9prxij7nwp3d1c7-abstract-par-0.3.3
4320 /nix/store/gamvp1pn3ydq8w5nwx7nnma675awdpl3-diagrams-solve-0.1.1-doc
4321 /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0
4322 /nix/store/gfpp2syvsmd6bawb4h8nxrmf62vkmfsy-pretty-show-1.6.16
4323 /nix/store/gm3s57val8j8isw7c53mfqxmb1b3mg91-groups-0.4.1.0-doc
4324 /nix/store/gmpdgfa29kwqq9xkgvnvjshy1xd88gh2-distributive-0.5.3
4325 /nix/store/grjdh1mvxfs4xbkgbyvppnh3hdg2d6dh-math-functions-0.2.1.0
4326 /nix/store/gw50gw12b9rmqyfa6y1kmqkgmkcfjw6c-Rasterific-0.7.2.1-doc
4327 /nix/store/gxzlyaf4rr19zz7xqfwv3q705fsr83wa-testing-feat-0.4.0.3-doc
4328 /nix/store/h0s5z0y6gwd83xdiqvr556mqliybzxjm-prelude-extras-0.4.0.3-doc
4329 /nix/store/h72g6g4i5l2biygf5iiw54q25m85mq3k-th-reify-many-0.1.8
4330 /nix/store/h8zh74c1wsp0x2q26hw7babbcpcq26jq-vector-th-unbox-0.2.1.6
4331 /nix/store/ha142fq3fx937552lq04zgmxlns59hw0-regex-tdfa-1.2.2
4332 /nix/store/hai4v1pj0xd9f4avwlvjaf3v01zc7icg-hspec-meta-2.4.6
4333 /nix/store/hj88mf8p47fgvv8316m68pf8sgpvcna7-regex-base-0.93.2
4334 /nix/store/hj9wkhkhdsiic991pqz21mcyz770r3lk-inline-c-0.6.0.5-doc
4335 /nix/store/hnhyvj54850179mzrkgycc5y22wqdl19-data-default-instances-containers-0.0.1
4336 /nix/store/hq63sncr37r07xrc50zg2h63smjgfs7y-tagged-0.8.5-doc
4337 /nix/store/hrn2rz0a6359k91m80mnv6n37appb82x-attoparsec-0.13.2.2
4338 /nix/store/i4mzslx07aa3y81z546ih8cscm8yi0p5-bytes-0.15.3
4339 /nix/store/i7sr4a3j4rb3hjfrjiz9bf2fc02fjzmj-simple-reflect-0.3.2
4340 /nix/store/ibiyyz6q8p01h5s13ghyz9savrxyxxpy-semigroupoids-5.2.1
4341 /nix/store/ii17xr2fhg93s0lz3kzv1pgmz6wgdspl-optparse-applicative-0.14.2.0
4342 /nix/store/is075znwr755d4c2y5s47y4gpy2xvdwc-fail-4.9.0.0
4343 /nix/store/iz694glpxy3da1xz5nlq9w3nyqirprdb-uuid-types-1.0.3-doc
4344 /nix/store/j2s3x74ln11265k12wjnigg99b5rzhg4-strict-0.3.2
4345 /nix/store/j5bms78jr9x2k7h72sz9wc7352v1g4n6-free-4.12.4-doc
4346 /nix/store/j83l9dq4244zwz0iqxa6cqh0zjwk38sk-colour-2.3.4-doc
4347 /nix/store/jby7kfqdc1xzba3wis6v0pdrag11npfq-QuickCheck-2.10.1-doc
4348 /nix/store/jh5fhairlb4zvy2ldvgp8glpvf6p9cnd-nanospec-0.2.2
4349 /nix/store/jhja7gp8q7cd8f09arfnyvbzsz78yf68-FontyFruity-0.5.3.3
4350 /nix/store/jr0qa1fhfmxgb7qjfk339s973xna01k2-zlib-0.6.1.2-doc
4351 /nix/store/jvmad5rbf1a6rsnv8h9hjz82w78d93c4-monoid-extras-0.4.2-doc
4352 /nix/store/jynwjcmrmmvzq6jbqhmsgsssbs8g7bbg-hspec-expectations-0.8.2
4353 /nix/store/jyqzifngpd3sb2hvyxrl3jcg295bjvkb-logict-0.6.0.2
4354 /nix/store/k1nzx9ivirnddaif2q7d4crakmga04yi-cereal-0.5.5.0-doc
4355 /nix/store/k672rn51alcrr8qhh9ndy1299zx0c9ky-monad-par-extras-0.3.3
4356 /nix/store/k87y3v0xx5ml0k01i4bgzvwdinv2q4ls-prelude-extras-0.4.0.3
4357 /nix/store/k9zbz2is68yr0ma9s6pz50b17f4jxw89-safe-0.3.15-doc
4358 /nix/store/kixq7zhhz63f86z40ajnmsn712pvh5v8-haskell-src-exts-1.19.1
4359 /nix/store/kmmb7810qq0gvyv31d5rf9nan6bkzhqs-ad-4.3.5-doc
4360 /nix/store/kp8n46m9l4a982wyqyp3x27gzxcrxdg2-hspec-expectations-0.8.2-doc
4361 /nix/store/kx7ndw3vlb95a8hw2d2c29dxqdq0lb1p-ansi-wl-pprint-0.6.8.2
4362 /nix/store/kz9xb1qlbvs0zv046fdsix4249z0n2zn-unordered-containers-0.2.8.0
4363 /nix/store/l5y74y91c5w559pf4l1gml58p4i51yz0-fingertree-0.1.3.1-doc
4364 /nix/store/l60xxc6ycd5qbn0g4ap9dwk3pjx8b1zd-parsers-0.12.8
4365 /nix/store/l76cdblcqk9qsx7x6fx2jvxf5cg9p9vx-ChasingBottoms-1.3.1.3-doc
4366 /nix/store/l993h9hlgr4v9r7pdfb72v71rdwanwh9-tasty-expected-failure-0.11.0.4
4367 /nix/store/l9z9wrlz2vnhbmbv7rrifzchmfa4rq05-diagrams-core-1.4.0.1-doc
4368 /nix/store/ldjcbgcwi7vqsh3mw7adb6b82j7n8385-tasty-smallcheck-0.8.1
4369 /nix/store/ldm6z4j9ndyffh0z49cz96vhc369hdhf-async-2.1.1.1-doc
4370 /nix/store/lf44sbmn1pywfja9wgg822s4zgrq92q5-data-default-0.7.1.1
4371 /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4
4372 /nix/store/lm6g06ljvqz09clrl4pvqn5bh226ip9b-case-insensitive-1.2.0.10-doc
4373 /nix/store/lsl4wm2zhwgknrwp5pwr2xd26c4vmn3f-xml-1.3.14-doc
4374 /nix/store/lsxxqvaaa0jfic229d4mdgrb05n1c4na-fsnotify-0.2.1.1-doc
4375 /nix/store/lyvdwbcqdpd07y5d2lgsyghqlwq44fd0-erf-2.0.0.0
4376 /nix/store/lz5aqa485gbv0h4c4a7k302xvfiqaw2a-test-framework-hunit-0.3.0.2
4377 /nix/store/m1wqyy4izcipv3icjk9km44kp628s2bf-free-4.12.4
4378 /nix/store/m8ghrn9ngj3bx6jd3zvsfjmxjv78fss5-old-locale-1.0.0.7-doc
4379 /nix/store/ma49sbacdzryvq9b5sxxzcx8xl9rz3s9-tf-random-0.5-doc
4380 /nix/store/mhmhlkljvg7zc2d8pxsq0va596lagiag-data-reify-0.6.1
4381 /nix/store/mjv1yl0vvwkpswwv5i8f47d4s7ha0bn2-tagged-0.8.5
4382 /nix/store/mrwr84yrhyn9b062g8iqhjn677id46xl-quickcheck-assertions-0.3.0-doc
4383 /nix/store/mv216yb48hv8d2cly2jczqaswimz2yc5-temporary-1.2.1.1
4384 /nix/store/myxz08k6ssrdg621l4w0b2zmqgybbbq8-diagrams-core-1.4.0.1
4385 /nix/store/n05mp1zjiff9giyawicvz66xbcnj46hf-tasty-quickcheck-0.9.1-doc
4386 /nix/store/n1ndas0537sf7i49skmiyjns3j7igpzc-silently-1.2.5-doc
4387 /nix/store/n29mg467wp0flvh5gm938qn9khwdvqva-text-1.2.2.2-doc
4388 /nix/store/n38ypfnnkih9g3kyzg6sizqp2p30l7aj-temporary-1.2.1.1
4389 /nix/store/n91jb2ibzsjspnsrf0wjqccbgrjhzsds-file-embed-0.0.10.1-doc
4390 /nix/store/n9hrl7vlw7d70cbfd4lplw25qn5gy48g-vector-th-unbox-0.2.1.6-doc
4391 /nix/store/n9nrsvk4iybq9dxcfg6aygnjn40hrbsk-th-abstraction-0.2.6.0-doc
4392 /nix/store/nb8chjcfbgm7qz78j9284d17gjr262x8-abstract-deque-0.3-doc
4393 /nix/store/npm0q2gpwjkvnh7z3n9vhfmwvalrmn1d-data-default-instances-dlist-0.0.1-doc
4394 /nix/store/npzkk2gx6ph7zrlm3pd6v1wm0cnplbmb-hostname-1.0
4395 /nix/store/nzi40591f8lkjpvw0dhzdi12zg01i744-adjunctions-4.3
4396 /nix/store/p52jnp7kl2y0bdjiagwfwri8wyj0z6zi-ieee754-0.8.0
4397 /nix/store/pfyan0z04a6r8532yv3m6h1vxza8sxaz-tf-random-0.5
4398 /nix/store/pjnjky5hvfdsaf2q7j496zn04dffqpac-unbounded-delays-0.1.1.0
4399 /nix/store/pjqci1qxig9as5hx76irlzbzrxxhqxsj-data-reify-0.6.1-doc
4400 /nix/store/pl8lr5jli1gx85adw70z31lbb9vygfrf-language-haskell-extract-0.2.4-doc
4401 /nix/store/pn91mp1jj1afhnbmq0bfxr4i516g4lrb-tagshare-0.0
4402 /nix/store/pnicdgix0nibzidysy9llq0rgc8k8prg-parsec-3.1.13.0
4403 /nix/store/prq0cbn8bw6psc3bn2sxfi09a0iz91mk-unix-compat-0.5.0.1
4404 /nix/store/ps7bkynjm2d72010202zipjb9zmfjgq8-reflection-2.1.3
4405 /nix/store/q37pw7r7fsvqmcqm9hr8rlwfmgv4asfq-clock-0.7.2-doc
4406 /nix/store/q5c00rb5f9qnd639nbrisi689l9hrz72-setenv-0.1.1.3-doc
4407 /nix/store/q6lqnir49nv0p7brygicf3z6s9q2qf6h-tasty-hunit-0.9.2
4408 /nix/store/q8aqpnvjh465x5aarf8h5wjwqqim3d7q-tasty-0.11.3
4409 /nix/store/q9kwx6k1dykrynv8j2h6d9k15n4jc5vn-raw-strings-qq-1.1-doc
4410 /nix/store/qg5zkn5741bxmsi8ca4y445xvvjkp6sx-unix-compat-0.5.0.1-doc
4411 /nix/store/qjkqggryhn760rj15fklwwky1n1s0jzk-clock-0.7.2
4412 /nix/store/ql32cahr3bwsqyj8xms3kzv7h5ls0z5h-pcre-light-0.4.0.4
4413 /nix/store/qpkklihv6szwjk24c0f9idjx7zyxkkkk-simple-reflect-0.3.2-doc
4414 /nix/store/qrjj8zc4609lmfkrk3b5pic1my9bcrig-logging-facade-0.3.0-doc
4415 /nix/store/qrpg27lk5ihw1kblsziy84lwz6kw7dph-th-lift-0.7.8
4416 /nix/store/r0z4kkjxz5jhxc7h89z5lxzq0iswhgvr-pcre-light-0.4.0.4-doc
4417 /nix/store/r43fz59hiahla2cspfacnr9gppaljv89-ghc-8.2.2-doc
4418 /nix/store/r9svf2ccsk79f0rwz6gdjb5f0sa3yxs3-hspec-discover-2.4.4-doc
4419 /nix/store/ragapi5qm8q01kzn8gq2xb2c4hfjgf45-hashable-time-0.2.0.1-doc
4420 /nix/store/rf12994pnjqh58yw8wpwb25381v321l1-active-0.2.0.13
4421 /nix/store/rglkp7019aarn053izm1f7rjp903v4b5-semigroups-0.18.4
4422 /nix/store/rk0qcssw6awg0hmy8dp8clmhlf45s97g-base16-bytestring-0.1.1.6
4423 /nix/store/rkmsqilykp1acpsqw0iijv5rpnjn0zj2-adjunctions-4.3-doc
4424 /nix/store/ryarhg03ndx77fyvays1ww05ws22hc7c-HUnit-1.6.0.0
4425 /nix/store/ryj21rlfmr81frlhaqln3p2qv1x596h6-ansi-terminal-0.7.1.1-doc
4426 /nix/store/s046ks6fa7q11nj7ql2dccx18czqgivx-contravariant-1.4.1-doc
4427 /nix/store/s0r68l954v056qwpjf74bkgvq2bl7dna-ad-4.3.5
4428 /nix/store/s100vdh42vn07m23gamm15iw6rxnk0gj-dlist-0.8.0.4-doc
4429 /nix/store/s1488fbr79rwc7f6msmbpmcfazsh3f5a-hashable-1.2.6.1-doc
4430 /nix/store/s481zd8cqx2sqfmdjmg789qwx1vd4354-tasty-quickcheck-0.9.1
4431 /nix/store/s8h3dk8wa0w2maw09lrjz6chfgq7mjw1-silently-1.2.5-doc
4432 /nix/store/s9lzri15ggg4by9f7rimq8s0w0fhbhq8-test-framework-hunit-0.3.0.2-doc
4433 /nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2
4434 /nix/store/sfwnvn3rrbbnkgisi534kk1735vq2ksd-primitive-0.6.3.0-doc
4435 /nix/store/sg6j1crmzxcl3cg723mp3xxn1svmlmyl-code-page-0.1.3
4436 /nix/store/sgpbj6mnc4gviz9b57kj8ig3026f3pm5-charset-0.3.7.1-doc
4437 /nix/store/sim2sm34p9wvikxqif8dhsya1ixsmj8h-with-location-0.1.0-doc
4438 /nix/store/spxds76iy139j5rwhz6n6qg35bpfqgz7-intervals-0.8.1
4439 /nix/store/sw01j1cnbz650mdcfb40585lvh0p7x67-vector-0.12.0.1-doc
4440 /nix/store/v00p09vfiycilvid0q62hwzsjcniq0mk-hfsevents-0.1.6
4441 /nix/store/v1nmyj5y0l472kv249cizwqngwndvysa-temporary-1.2.1.1-doc
4442 /nix/store/v5csj4wpm8fzwdniix8637pyr14vyzam-unbounded-delays-0.1.1.0-doc
4443 /nix/store/v62f3iyr9azby99m1b1r5q5j13js3hx4-semigroupoids-5.2.1-doc
4444 /nix/store/v69dxcma6kwkj1jq0b2dsyrw8brpirh5-distributive-0.5.3-doc
4445 /nix/store/vfvvkl7x48xqqcygb3hybrag0npfq5vd-hashable-1.2.6.1
4446 /nix/store/vgcra542dryf2fh54kd7jj5fvzy97ibl-data-default-class-0.1.2.0-doc
4447 /nix/store/vpzcr8j96z9g0mkxl3f4v1crjsbfhfml-dual-tree-0.2.1
4448 /nix/store/vv7jni8wwv98r405b17qlihdmdk1fq34-raw-strings-qq-1.1
4449 /nix/store/vzk637ckn2g39annacqwky6lnc9jsd9y-time-locale-compat-0.1.1.3-doc
4450 /nix/store/w2mvmx7pzhdz1c2jxsgfg1vza7nm6kqv-unordered-containers-0.2.8.0-doc
4451 /nix/store/w82d2a5lqw2ykdnf3yligp32zpd7jrx6-aeson-1.2.4.0
4452 /nix/store/wcjpgs9w8flc1vvnh6n9jadkqz2ywy1b-plots-0.1.0.2-doc
4453 /nix/store/wd0yland739r4dk2k8xb09752rdyai1g-groups-0.4.1.0
4454 /nix/store/wf6s78cwilnjk5jds2wfi0jfydz8p1sy-base-orphans-0.6
4455 /nix/store/wfiy66chf7gifv0svgr1k7amn33vypqk-regex-posix-0.95.2
4456 /nix/store/wrlw4shba30p1zajm3pxv1q4g2vpw8lw-data-default-class-0.1.2.0
4457 /nix/store/wx8zk1sm84lfqij2hayghhnjl9z6dmy2-case-insensitive-1.2.0.10
4458 /nix/store/x04xqckmy4k7h5dy8l9a2f222n7kfy14-void-0.7.2-doc
4459 /nix/store/x1qql3r2dn7jz2696jb5mdxkncrky956-transformers-compat-0.5.1.4-doc
4460 /nix/store/x64qr54h0r5gcfa8bk510kl9n85msmdi-diagrams-solve-0.1.1
4461 /nix/store/x69awxf7pqhqas793g9p469jjy9gw4d2-numeric-extras-0.1-doc
4462 /nix/store/x8yv70cv844xibxqp7670ng71afzw3y1-intervals-0.8.1-doc
4463 /nix/store/xc4cmcnvsdgddyzss85civly3iq3svqw-base-compat-0.9.3-doc
4464 /nix/store/xl9kznfrzddzwd8m2jvqffmwhz0fkasw-mwc-random-0.13.6.0
4465 /nix/store/xlji5hmdx4mk7k9z2n85b49swiqxd0xr-tagshare-0.0-doc
4466 /nix/store/xmd37s91chhb6wng94vzmpc5lzn753am-generic-deriving-1.12.1
4467 /nix/store/xq7f3vf0gw27li4zg4zlvgyxsdfh6x3f-stringbuilder-0.5.1-doc
4468 /nix/store/xqk6m6c6arwkf76796bq1r7a2g3mzb3s-temporary-rc-1.2.0.3-doc
4469 /nix/store/y0cwc3kgz8si3196n7ld34s2xc9d4dr1-mtl-2.2.2
4470 /nix/store/yb1rwg6lcv172mrsl3dkis0qhkx5pf1p-inline-c-0.6.0.5
4471 /nix/store/yfvpmnzj42jn0i8fxi66bk36xyf369x3-vector-algorithms-0.7.0.1-doc
4472 /nix/store/yhhx4c3312d34mh8qh0afbj31n7l75k3-aeson-1.2.4.0-doc
4473 /nix/store/yivs33zpp2w4q0zgvx42nvz86gh3n9ph-haskell-lexer-1.0.1
4474 /nix/store/ylh9q3ayhj1airh6n0km3wh897dvdhyr-th-lift-0.7.8-doc
4475 /nix/store/ysvzxsxz657rhgb5n4flfn2mn6nlj907-dual-tree-0.2.1-doc
4476 /nix/store/z1k7mjaa6hg57i7ci4p3m5m5jqi8f3jr-ghc-paths-0.1.0.9-doc
4477 /nix/store/z1p9ba8shjzjis446fkbjd1ixjajvpzw-call-stack-0.1.0
4478 /nix/store/z66x4lv9m67sqcy890f2d8vi5dmdgwgs-semigroups-0.18.4-doc
4479 /nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2
4480 /nix/store/z8zia1w5j17yz54qxgvhrx32a3m96020-vector-binary-instances-0.2.4-doc
4481 /nix/store/zi4rvhsq76m7cdh5h86c2lwm6fh3g2gm-StateVar-1.1.0.4-doc
4482 /nix/store/zjrh364ba28hdvxf9hnv9ww9ayc6k6a7-vector-0.12.0.1
4483 /nix/store/zlvc7nj6f0zlsiz4v2i7xqblxfp71ypm-base-compat-0.9.3
4484 /nix/store/zmaq5r6n2smy8d3qsnp8r72b4qn6il3q-cpphs-1.20.8
4485 /nix/store/zps2vh471fb8szkycvpb3agqj1n3zys1-profunctors-5.2.2
4486fetching path ‘/nix/store/7vdxmdhhsyyydcyqlp7ki95ys8akhvvi-base-orphans-0.6-doc’...
4487fetching path ‘/nix/store/307ldc7zj3djrppinlayxwvm0dhy5wwk-colour-2.3.4-data’...
4488fetching path ‘/nix/store/r43fz59hiahla2cspfacnr9gppaljv89-ghc-8.2.2-doc’...
4489fetching path ‘/nix/store/84arfnbg91z2a6zypckf8mi878y6npgl-storable-complex-0.2.2-doc’...
4490fetching path ‘/nix/store/x1qql3r2dn7jz2696jb5mdxkncrky956-transformers-compat-0.5.1.4-doc’...
4491fetching path ‘/nix/store/is075znwr755d4c2y5s47y4gpy2xvdwc-fail-4.9.0.0’...
4492fetching path ‘/nix/store/178z05w62gz57x6c17gciyj8dc6lipn1-nats-1.1.2’...
4493fetching path ‘/nix/store/3755b5kf119rcvwfa6svwcgxjg68fjiv-pretty-show-1.6.16-data’...
4494
4495*** Downloading ‘https://cache.nixos.org/nar/0l1k4qkr0nps21la38hcd3z2ajxz40d6vg6fb7dj2afbr7ln4wcq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7vdxmdhhsyyydcyqlp7ki95ys8akhvvi-base-orphans-0.6-doc’...
4496
4497*** Downloading ‘https://cache.nixos.org/nar/1a5yyxcd1hg74bxbazfyby0zdjhbr9zdp1h82wc75n73z28b23mv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/307ldc7zj3djrppinlayxwvm0dhy5wwk-colour-2.3.4-data’...
4498
4499*** Downloading ‘https://cache.nixos.org/nar/0dhm8w3xjv5w84k1alxz6qrxdqryasc7v7anvxl40ib3wvwyqy7q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r43fz59hiahla2cspfacnr9gppaljv89-ghc-8.2.2-doc’...
4500
4501*** Downloading ‘https://cache.nixos.org/nar/176m6asfxmx126hwhvdhpqxlsm7l32x7n19iah6znwzlhwfc37sh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/84arfnbg91z2a6zypckf8mi878y6npgl-storable-complex-0.2.2-doc’...
4502
4503*** Downloading ‘https://cache.nixos.org/nar/1rpa02rfx9zqs1px2q49517bwg7rz4f90sdkprmja80gvrzak8cr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x1qql3r2dn7jz2696jb5mdxkncrky956-transformers-compat-0.5.1.4-doc’...
4504 % Total % Received % Xferd Average Speed Time Time Time Current
4505 Dload Upload Total Spent Left Speed
4506 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4507 Dload Upload Total Spent Left Speed
4508 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4509 Dload Upload Total Spent Left Speed
4510 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4511 Dload Upload Total Spent Left Speed
4512 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4513 Dload Upload Total Spent Left Speed
4514 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4515*** Downloading ‘https://cache.nixos.org/nar/0l3jxm9yb2rmglgn7b73gifn62v7s3wkb7bw68q6arxkxnknvdyl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/is075znwr755d4c2y5s47y4gpy2xvdwc-fail-4.9.0.0’...
4516
4517*** Downloading ‘https://cache.nixos.org/nar/0i3zimbmgami6bf4xblnysc7661iirci47wapizvsywympv9i4pw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/178z05w62gz57x6c17gciyj8dc6lipn1-nats-1.1.2’...
4518 % Total % Received % Xferd Average Speed Time Time Time Current
4519 Dload Upload Total Spent Left Speed
4520 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4521 Dload Upload Total Spent Left Speed
4522 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4523*** Downloading ‘https://cache.nixos.org/nar/1wvgh6syjswyjs2s0q8cw7cklgx24cq87giyhig6xmig5bzql3i2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3755b5kf119rcvwfa6svwcgxjg68fjiv-pretty-show-1.6.16-data’...
4524 % Total % Received % Xferd Average Speed Time Time Time Current
4525 Dload Upload Total Spent Left Speed
4526100 864 100 864 0 0 864 0 0:00:01 --:--:-- 0:00:01 5721
4527
4528100 26240 100 26240 0 0 26240 0 0:00:01 --:--:-- 0:00:01 156k
4529100 19692 100 19692 0 0 19692 0 0:00:01 --:--:-- 0:00:01 107k
4530
4531100 37800 100 37800 0 0 37800 0 0:00:01 --:--:-- 0:00:01 206k
4532
4533
4534100 98k 100 98k 0 0 98k 0 0:00:01 --:--:-- 0:00:01 473k
4535
4536100 1604 100 1604 0 0 1604 0 0:00:01 --:--:-- 0:00:01 3015
4537
4538100 1808 100 1808 0 0 1808 0 0:00:01 --:--:-- 0:00:01 3003
4539
4540100 11.6M 100 11.6M 0 0 5955k 0 0:00:02 0:00:02 --:--:-- 4960k
4541
4542fetching path ‘/nix/store/2rllwa6pjfnb118glmnfh5wb565d8gc0-HUnit-1.6.0.0-doc’...
4543fetching path ‘/nix/store/zi4rvhsq76m7cdh5h86c2lwm6fh3g2gm-StateVar-1.1.0.4-doc’...
4544fetching path ‘/nix/store/nb8chjcfbgm7qz78j9284d17gjr262x8-abstract-deque-0.3-doc’...
4545fetching path ‘/nix/store/7yja3l817cam5gi1zxpbi27yjidbv0jx-abstract-par-0.3.3-doc’...
4546fetching path ‘/nix/store/ldm6z4j9ndyffh0z49cz96vhc369hdhf-async-2.1.1.1-doc’...
4547fetching path ‘/nix/store/xc4cmcnvsdgddyzss85civly3iq3svqw-base-compat-0.9.3-doc’...
4548fetching path ‘/nix/store/1p61qsaj03k24zfy1148r3134d6fj7zg-base16-bytestring-0.1.1.6-doc’...
4549fetching path ‘/nix/store/fwlhxxj883ffcnfllx9b98zkl6r4z8cc-cabal-doctest-1.0.6-doc’...
4550
4551*** Downloading ‘https://cache.nixos.org/nar/0dhqvl2pdp8d398agqk1a7kf0d1s05yks7jakrlpjmr2pwf8z2lj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/nb8chjcfbgm7qz78j9284d17gjr262x8-abstract-deque-0.3-doc’...
4552
4553*** Downloading ‘https://cache.nixos.org/nar/1ag7mgma70v2jdlr8jg8xmhh15d1nqpsndh63jxaxflk9h1rvqlr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7yja3l817cam5gi1zxpbi27yjidbv0jx-abstract-par-0.3.3-doc’...
4554
4555*** Downloading ‘https://cache.nixos.org/nar/1hms61ch3sbqn47c3gmbhqr5zd3wzgsxnqpwmhkf6wa6kakdcjip.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ldm6z4j9ndyffh0z49cz96vhc369hdhf-async-2.1.1.1-doc’...
4556
4557*** Downloading ‘https://cache.nixos.org/nar/0rsscdf6cpcq6kvk0rg0qcsqihj4i5xkzy69r3wwxrdxwzvfwx3v.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zi4rvhsq76m7cdh5h86c2lwm6fh3g2gm-StateVar-1.1.0.4-doc’...
4558 % Total % Received % Xferd Average Speed Time Time Time Current
4559 Dload Upload Total Spent Left Speed
4560 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4561 Dload Upload Total Spent Left Speed
4562 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4563 Dload Upload Total Spent Left Speed
4564 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Curre
4565*** Downloading ‘https://cache.nixos.org/nar/1d37cwizv4li536capb7dxnh7pvvac2gz6vcc3ndf2qnqzrhiqqa.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2rllwa6pjfnb118glmnfh5wb565d8gc0-HUnit-1.6.0.0-doc’...
4566nt
4567 Dload Upload Total Spent Left Speed
4568 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4569*** Downloading ‘https://cache.nixos.org/nar/1j935pj9mphix1fcql7kgssighgih8xwv6b0fa438cvkmr1mwwx4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1p61qsaj03k24zfy1148r3134d6fj7zg-base16-bytestring-0.1.1.6-doc’...
4570
4571*** Downloading ‘https://cache.nixos.org/nar/1mry64a9yc760byfbv8y3vnp88g6959h3xiwm1nj5bbnyaqs3zf6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fwlhxxj883ffcnfllx9b98zkl6r4z8cc-cabal-doctest-1.0.6-doc’...
4572
4573*** Downloading ‘https://cache.nixos.org/nar/082dpisw46i49qxsawmh4wbg7q4jdy7ahf3sn8094mnm8q66vpd6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xc4cmcnvsdgddyzss85civly3iq3svqw-base-compat-0.9.3-doc’...
4574 % Total % Received % Xferd Average Speed Time Time Time Current
4575 Dload Upload Total Spent Left Speed
4576 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4577 Dload Upload Total Spent Left Speed
4578 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4579 Dload Upload Total Spent Left Speed
4580 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4581 Dload Upload Total Spent Left Speed
4582100 34920 100 34920 0 0 34920 0 0 0 --:--:-- --:--: 0 0:00:01 --:---- --:--:-- 0:-- 0:00:01 128k
4583100 31496 100 31496 0 0 31496 0 0:00:01 --:--:-- 0:00:01 115k
4584
4585
4586fetching path ‘/nix/store/f05xnx2hmigkx037r8wkgh7iswn1i7g6-call-stack-0.1.0-doc’...
4587fetching path ‘/nix/store/k1nzx9ivirnddaif2q7d4crakmga04yi-cereal-0.5.5.0-doc’...
4588100 41336 100 41336 0 0 41336 0 0:00:01 --:--:-- 0:00:01 119k
4589
4590fetching path ‘/nix/store/q37pw7r7fsvqmcqm9hr8rlwfmgv4asfq-clock-0.7.2-doc’...
4591
4592*** Downloading ‘https://cache.nixos.org/nar/1zhj40m82cymypfcn6xlldsgv92jjwlf946ymg8qvxf0vxz63j5c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f05xnx2hmigkx037r8wkgh7iswn1i7g6-call-stack-0.1.0-doc’...
4593
4594*** Downloading ‘https://cache.nixos.org/nar/0if23l0dmlrkf71ryphziypnr5ncyvb4a622z5w44ah028d2k0mw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k1nzx9ivirnddaif2q7d4crakmga04yi-cereal-0.5.5.0-doc’...
4595 % Total % Received % Xferd Average Speed Time Time Time Current
4596 Dload Upload Total Spent Left Speed
4597 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4598 Dload Upload Total Spent Left Speed
4599 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4600*** Downloading ‘https://cache.nixos.org/nar/1r65mz83ab757b3kh9qb4g8z2dhyz1ip4cnv38pjqrkgp7pxmkfj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q37pw7r7fsvqmcqm9hr8rlwfmgv4asfq-clock-0.7.2-doc’...
4601 % Total % Received % Xferd Average Speed Time Time Time Current
4602 Dload Upload Total Spent Left Speed
4603100 27844 100 27844 0 0 27844 0 0:00:01 --:--:-- 0:00:01 52436
4604
4605fetching path ‘/nix/store/4aa59vqflnbnjw8gfb7hxlz7im6qf4zw-code-page-0.1.3-doc’...
4606100 46396 100 46396 0 0 46396 0 0:00:01 --:--:-- 0:00:01 84203
4607100 29404 100 29404 0 0 29404 0 0:00:01 --:--:-- 0:00:01 53559
4608
4609fetching path ‘/nix/store/j83l9dq4244zwz0iqxa6cqh0zjwk38sk-colour-2.3.4-doc’...
4610
4611fetching path ‘/nix/store/s046ks6fa7q11nj7ql2dccx18czqgivx-contravariant-1.4.1-doc’...
4612100 87432 100 87432 0 0 87432 0 0:00:01 --:--:-- 0:00:01 149k
4613
4614fetching path ‘/nix/store/11p3zfcnbdykbliy7jsg1vg5wrgwiblb-cpphs-1.20.8-doc’...
4615
4616*** Downloading ‘https://cache.nixos.org/nar/0vf795rmpwgslsfvvm0kdd95f0dsx1xfb3jrsp6qaijf7kaz9307.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4aa59vqflnbnjw8gfb7hxlz7im6qf4zw-code-page-0.1.3-doc’...
4617 % Total % Received % Xferd Average Speed Time Time Time Current
4618 Dload Upload Total Spent Left Speed
4619 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4620*** Downloading ‘https://cache.nixos.org/nar/1rjli6wiiwbd9fdixf456yipr82w46asgk8liy7hi5gvcaic6d74.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j83l9dq4244zwz0iqxa6cqh0zjwk38sk-colour-2.3.4-doc’...
4621
4622*** Downloading ‘https://cache.nixos.org/nar/1v4ag1ragj2wh4ary69plvdnwvk31fbylbzisdf1mz00csw8dh6r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s046ks6fa7q11nj7ql2dccx18czqgivx-contravariant-1.4.1-doc’...
4623 % Total % Received % Xferd Average Speed Time Time Time Current
4624 Dload Upload Total Spent Left Speed
4625100 23568 100 23568 0 0 23568 0 0:00:01 --:--:-- 0:00:01 33765
4626 % Total % Received % Xferd Average Speed Time Time Time Current
4627 Dload Upload Total Spent Left Speed
4628 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4629fetching path ‘/nix/store/c3a75166736nzvc4hr5djgi4yg9k9rg2-data-default-0.7.1.1-doc’...
4630
4631*** Downloading ‘https://cache.nixos.org/nar/0qckzaf6p928apblkfm343jy6qw8p7m0g4ws7izmig5d4f4xgj5n.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/11p3zfcnbdykbliy7jsg1vg5wrgwiblb-cpphs-1.20.8-doc’...
4632 % Total % Received % Xferd Average Speed Time Time Time Current
4633 Dload Upload Total Spent Left Speed
4634 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4635*** Downloading ‘https://cache.nixos.org/nar/1lwzvcz9gvpqan4dz7x0zcx3d2ar8ggjfysgynpw35gjxwj8qrzz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/c3a75166736nzvc4hr5djgi4yg9k9rg2-data-default-0.7.1.1-doc’...
4636 % Total % Received % Xferd Average Speed Time Time Time Current
4637 Dload Upload Total Spent Left Speed
4638100 22492 100 22492 0 0 22492 0 0:00:01 --:--:-- 0:00:01 42041
4639
4640fetching path ‘/nix/store/vgcra542dryf2fh54kd7jj5fvzy97ibl-data-default-class-0.1.2.0-doc’...
4641100 62472 100 62472 0 0 62472 0 0:00:01 --:--:-- 0:00:01 109k
4642
4643fetching path ‘/nix/store/pjqci1qxig9as5hx76irlzbzrxxhqxsj-data-reify-0.6.1-doc’...
4644100 28780 100 28780 0 0 28780 0 0:00:01 --:--:-- 0:00:01 54819
4645
4646fetching path ‘/nix/store/gamvp1pn3ydq8w5nwx7nnma675awdpl3-diagrams-solve-0.1.1-doc’...
4647
4648*** Downloading ‘https://cache.nixos.org/nar/1wgny63hjjhg4347707k6myh3iqgxlywgswg85qwwgqysilmlmvv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vgcra542dryf2fh54kd7jj5fvzy97ibl-data-default-class-0.1.2.0-doc’...
4649 % Total % Received % Xferd Average Speed Time Time Time Current
4650 Dload Upload Total Spent Left Speed
4651 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4652*** Downloading ‘https://cache.nixos.org/nar/1lxqly0csap2zw8n8y4wgb79124yl66sllcvlxbki52lxfxwf8h6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pjqci1qxig9as5hx76irlzbzrxxhqxsj-data-reify-0.6.1-doc’...
4653 % Total % Received % Xferd Average Speed Time Time Time Current
4654 Dload Upload Total Spent Left Speed
4655 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4656*** Downloading ‘https://cache.nixos.org/nar/040xaqn5xw1vb62n2zrd6b8s79awn8899dfj7lajih772pmlg8d8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gamvp1pn3ydq8w5nwx7nnma675awdpl3-diagrams-solve-0.1.1-doc’...
4657 % Total % Received % Xferd Average Speed Time Time Time Current
4658 Dload Upload Total Spent Left Speed
4659100 68304 100 68304 0 0 68304 0 0:00:01 --:--:-- 0:00:01 118k
4660100 23608 100 23608 0 0 23608 0 0:00:01 --:--:-- 0:00:01 38828
4661
4662fetching path ‘/nix/store/s100vdh42vn07m23gamm15iw6rxnk0gj-dlist-0.8.0.4-doc’...
4663
4664fetching path ‘/nix/store/ryj21rlfmr81frlhaqln3p2qv1x596h6-ansi-terminal-0.7.1.1-doc’...
4665100 21988 100 21988 0 0 21988 0 0:00:01 --:--:-- 0:00:01 40197
4666
4667*** Downloading ‘https://cache.nixos.org/nar/048rxwm5jjs7sdjr6778jl3xc1522yy8m5fxcr2pl75c7xdlr8rs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s100vdh42vn07m23gamm15iw6rxnk0gj-dlist-0.8.0.4-doc’...
4668
4669
4670*** Downloading ‘https://cache.nixos.org/nar/1876b8sy1xdmmmbg866bqigwjdjjsdk4ilwyij05j6jijd8jqhfm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ryj21rlfmr81frlhaqln3p2qv1x596h6-ansi-terminal-0.7.1.1-doc’...
4671fetching path ‘/nix/store/083iq19klnzyijh6yfazfy3zn5mrhyk1-doctest-0.13.0-doc’...
4672 % Total % Received % Xferd Average Speed Time Time Time Current
4673 Dload Upload Total Spent Left Speed
4674 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4675 Dload Upload Total Spent Left Speed
4676 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4677*** Downloading ‘https://cache.nixos.org/nar/1f7yd9znri8h0mvrzvq6fgfbcd16lqhnl4mn4p2bg80ppm964x6d.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/083iq19klnzyijh6yfazfy3zn5mrhyk1-doctest-0.13.0-doc’...
4678 % Total % Received % Xferd Average Speed Time Time Time Current
4679 Dload Upload Total Spent Left Speed
4680100 56228 100 56228 0 0 56228 0 0:00:01 --:--:-- 0:00:01 69076
4681100 25136 100 25136 0 0 25136 0 0:00:01 --:--:-- 0:00:01 47606
4682
4683
4684fetching path ‘/nix/store/fkgx6w5x7i1pmmp73w5bnzznvw5nk87d-erf-2.0.0.0-doc’...
4685fetching path ‘/nix/store/81s5yhwla9a1kcy10iv888b09q38lgaj-data-default-instances-containers-0.0.1-doc’...
4686
4687*** Downloading ‘https://cache.nixos.org/nar/11yq0w2rf0zq8hmrd8x80s9d95csf57z3fkw7i7y8krg43hdc4zp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fkgx6w5x7i1pmmp73w5bnzznvw5nk87d-erf-2.0.0.0-doc’...
4688
4689*** Downloading ‘https://cache.nixos.org/nar/02navhkqm43wq6gdxl6gw24spxp6ansisidv19mf993068qg80wr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/81s5yhwla9a1kcy10iv888b09q38lgaj-data-default-instances-containers-0.0.1-doc’...
4690 % Total % Received % Xferd Average Speed Time Time Time Current
4691 Dload Upload Total Spent Left Speed
4692 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4693 Dload Upload Total Spent Left Speed
4694100 25012 100 25012 0 0 25012 0 0:00:01 --:--:-- 0:00:01 36249
4695
4696fetching path ‘/nix/store/f8hxq8k24jk8gzcqwirhvr33hmisi9yb-extensible-exceptions-0.1.1.4-doc’...
4697100 63384 100 63384 0 0 63384 0 0:00:01 0:00:01 --:--:-- 61777
4698
4699fetching path ‘/nix/store/n91jb2ibzsjspnsrf0wjqccbgrjhzsds-file-embed-0.0.10.1-doc’...
4700
4701*** Downloading ‘https://cache.nixos.org/nar/1zg929h8x58bjs3cmxv4jjlz57gdfj5dqmsg8rzc2jcpqq5hvrs1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f8hxq8k24jk8gzcqwirhvr33hmisi9yb-extensible-exceptions-0.1.1.4-doc’...
4702 % Total % Received % Xferd Average Speed Time Time Time Current
4703 Dload Upload Total Spent Left Speed
4704 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4705*** Downloading ‘https://cache.nixos.org/nar/0iz6z93ylmrwl4micd8ypifrhiqn9hafxiz91sz2ndvf3wndwnws.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n91jb2ibzsjspnsrf0wjqccbgrjhzsds-file-embed-0.0.10.1-doc’...
4706 % Total % Received % Xferd Average Speed Time Time Time Current
4707 Dload Upload Total Spent Left Speed
4708100 27452 100 27452 0 0 27452 0 0:00:01 --:--:-- 0:00:01 32642
4709
4710fetching path ‘/nix/store/l5y74y91c5w559pf4l1gml58p4i51yz0-fingertree-0.1.3.1-doc’...
4711100 22640 100 22640 0 0 22640 0 0:00:01 --:--:-- 0:00:01 65623
4712100 29640 100 29640 0 0 29640 0 0:00:01 --:--:-- 0:00:01 49565
4713
4714
4715fetching path ‘/nix/store/9cwgffaxmks5l60axzx2c3bhk9ah8lp1-generic-deriving-1.12.1-doc’...
4716fetching path ‘/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2’...
4717100 43344 100 43344 0 0 43344 0 0:00:01 --:--:-- 0:00:01 71289
4718
4719*** Downloading ‘https://cache.nixos.org/nar/04y4w3fp7cld0jc7a1h5ggja117y1hhkvisbg2a5lwhnz6dhmp0b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l5y74y91c5w559pf4l1gml58p4i51yz0-fingertree-0.1.3.1-doc’...
4720
4721 % Total % Received % Xferd Average Speed Time Time Time Current
4722 Dload Upload Total Spent Left Speed
4723 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/npm0q2gpwjkvnh7z3n9vhfmwvalrmn1d-data-default-instances-dlist-0.0.1-doc’...
4724100 49788 100 49788 0 0 49788 0 0:00:01 --:--:-- 0:00:01 90688
4725
4726fetching path ‘/nix/store/bxfxjp010wcgi6v3js96kvnf4szcqzbv-ansi-wl-pprint-0.6.8.2-doc’...
4727100 31176 100 31176 0 0 31176 0 0:00:01 --:--:-- 0:00:01 125k
4728
4729fetching path ‘/nix/store/z1k7mjaa6hg57i7ci4p3m5m5jqi8f3jr-ghc-paths-0.1.0.9-doc’...
4730
4731*** Downloading ‘https://cache.nixos.org/nar/15pvb98nsxg6wlifjwxbc0pndv970acvjjk2nj8zjpgg566jmawd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9cwgffaxmks5l60axzx2c3bhk9ah8lp1-generic-deriving-1.12.1-doc’...
4732
4733*** Downloading ‘https://cache.nixos.org/nar/1ljjsl5px00w1cwgb6655jrxcv89l0k6hlxxbx2xarjzpas42077.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2’...
4734 % Total % Received % Xferd Average Speed Time Time Time Current
4735 Dload Upload Total Spent Left Speed
4736 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4737 Dload Upload Total Spent Left Speed
4738 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4739*** Downloading ‘https://cache.nixos.org/nar/01fx0km4y1iamq6v6x7gjmzs1amh8hchm6n4b8lfiw8cfvplzqhp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/npm0q2gpwjkvnh7z3n9vhfmwvalrmn1d-data-default-instances-dlist-0.0.1-doc’...
4740 % Total % Received % Xferd Average Speed Time Time Time Current
4741 Dload Upload Total Spent Left Speed
4742 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4743*** Downloading ‘https://cache.nixos.org/nar/02zi95nb2bc06rhcda5hqqiz46yxvir7s0skzm4as2i485c9fjaj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bxfxjp010wcgi6v3js96kvnf4szcqzbv-ansi-wl-pprint-0.6.8.2-doc’...
4744 % Total % Received % Xferd Average Speed Time Time Time Current
4745 Dload Upload Total Spent Left Speed
4746100 29152 100 29152 0 0 29152 0 0:00:01 --:--:-- 0:00:01 109k
4747 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4748fetching path ‘/nix/store/gm3s57val8j8isw7c53mfqxmb1b3mg91-groups-0.4.1.0-doc’...
4749 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4750*** Downloading ‘https://cache.nixos.org/nar/19jzj62yl4ajqjv77xk781y15hspjnnppkcqyvynd6r2pwn71y8q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/z1k7mjaa6hg57i7ci4p3m5m5jqi8f3jr-ghc-paths-0.1.0.9-doc’...
4751 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4752 Dload Upload Total Spent Left Speed
4753100 20984 100 20984 0 0 20984 0 0:00:01 --:--:-- 0:00:01 37008
4754
4755fetching path ‘/nix/store/002wnccy4qhbmslppfr4hbq2dx3cg1q2-haskell-lexer-1.0.1-doc’...
4756 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4757*** Downloading ‘https://cache.nixos.org/nar/00qqi60crlwkwc021g5rdm1n16hq17p64bzvf49dv2nmb210szp3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gm3s57val8j8isw7c53mfqxmb1b3mg91-groups-0.4.1.0-doc’...
4758 % Total % Received % Xferd Average Speed Time Time Time Current
4759 Dload Upload Total Spent Left Speed
4760 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4761*** Downloading ‘https://cache.nixos.org/nar/0a0bl6ym245jrb63xrv088fmzqvvxcbzl3x3dhc47p1s94sb8ljr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/002wnccy4qhbmslppfr4hbq2dx3cg1q2-haskell-lexer-1.0.1-doc’...
4762 % Total % Received % Xferd Average Speed Time Time Time Current
4763 Dload Upload Total Spent Left Speed
4764100 66920 100 66920 0 0 66920 0 0:00:01 --:--:-- 0:00:01 221k
4765
4766fetching path ‘/nix/store/13kgwzgv3rsdfcyj4x0xz4fiw4pi047w-haskell-src-exts-1.19.1-doc’...
4767
4768*** Downloading ‘https://cache.nixos.org/nar/075bakzwrwcmrwaz61g7rqxmara219h0nmkqns59y0m6z3b3qqcm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/13kgwzgv3rsdfcyj4x0xz4fiw4pi047w-haskell-src-exts-1.19.1-doc’...
4769 % Total % Received % Xferd Average Speed Time Time Time Current
4770 Dload Upload Total Spent Left Speed
4771100 177k 100 177k 0 0 177k 0 0:00:01 --:--:-- 0:00:01 301k
4772
4773fetching path ‘/nix/store/b0mwiqjncwksbqyiv7wm9j3w99yj8jnj-hfsevents-0.1.6-doc’...
4774100 57316 100 57316 0 0 57316 0 0:00:01 --:--:-- 0:00:01 77663
4775
4776fetching path ‘/nix/store/cdhzmhp0rbkjjirxlsqxqvd2b3gg9jbk-hostname-1.0-doc’...
4777100 20548 100 20548 0 0 20548 0 0:00:01 --:--:-- 0:00:01 34361
4778
4779fetching path ‘/nix/store/r9svf2ccsk79f0rwz6gdjb5f0sa3yxs3-hspec-discover-2.4.4-doc’...
4780
4781*** Downloading ‘https://cache.nixos.org/nar/0byhi4927xxnlqymr80vp93b8wmr0991xz9xi807h0745lcjjmnj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/b0mwiqjncwksbqyiv7wm9j3w99yj8jnj-hfsevents-0.1.6-doc’...
4782100 47520 100 47520 0 0 47520 0 0:00:01 --:--:-- 0:00:01 86557
4783
4784fetching path ‘/nix/store/kp8n46m9l4a982wyqyp3x27gzxcrxdg2-hspec-expectations-0.8.2-doc’...
4785 % Total % Received % Xferd Average Speed Time Time Time Current
4786 Dload Upload Total Spent Left Speed
4787 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4788*** Downloading ‘https://cache.nixos.org/nar/194wqzfsavs93wh9rw88y0fnlfrgz0pcahmjsbj04yf7g6dd3d5q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cdhzmhp0rbkjjirxlsqxqvd2b3gg9jbk-hostname-1.0-doc’...
4789100 23148 100 23148 0 0 23148 0 0:00:01 --:--:-- 0:00:01 36396
4790 % Total % Received % Xferd Average Speed Time Time Time Current
4791 Dload Upload Total Spent Left Speed
4792 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4793fetching path ‘/nix/store/182d9dzkpm62ji9a2hyqnfhcg9ghpbqs-ieee754-0.8.0-doc’...
4794
4795*** Downloading ‘https://cache.nixos.org/nar/1w7b9mzpm0diqsb92xfa2z970m2v2bfhzq8vmcg86c9wph1pkgij.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r9svf2ccsk79f0rwz6gdjb5f0sa3yxs3-hspec-discover-2.4.4-doc’...
4796 % Total % Received % Xferd Average Speed Time Time Time Current
4797 Dload Upload Total Spent Left Speed
4798 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4799*** Downloading ‘https://cache.nixos.org/nar/17p7lplmfpy05jc1y9g6vb2q06a4xh8bipvk82gsplvxyk31vhky.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kp8n46m9l4a982wyqyp3x27gzxcrxdg2-hspec-expectations-0.8.2-doc’...
4800 % Total % Received % Xferd Average Speed Time Time Time Current
4801 Dload Upload Total Spent Left Speed
4802 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4803*** Downloading ‘https://cache.nixos.org/nar/15ihi0nfvknnk431r5m86g6biwcma26rvfzw42fdx9m7h4x0k1xx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/182d9dzkpm62ji9a2hyqnfhcg9ghpbqs-ieee754-0.8.0-doc’...
4804 % Total % Received % Xferd Average Speed Time Time Time Current
4805 Dload Upload Total Spent Left Speed
4806100 20344 100 20344 0 0 20344 0 0:00:01 0:00:01 --:--:-- 19828
4807 3 89.9M 3 3041k 0 0 3041k 0 0:00:30 0:00:01 0:00:29 2916k
4808 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/2zzjn4c4fn92vli2q88di671g0bz709m-integer-logarithms-1.0.2-doc’...
4809100 26852 100 26852 0 0 26852 0 0:00:01 --:--:-- 0:00:01 98358
4810
4811fetching path ‘/nix/store/pl8lr5jli1gx85adw70z31lbb9vygfrf-language-haskell-extract-0.2.4-doc’...
4812
4813*** Downloading ‘https://cache.nixos.org/nar/09akcsvsshw05pqdkmphpwg2pbz47dm4qd789b02bdx70b53bknr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2zzjn4c4fn92vli2q88di671g0bz709m-integer-logarithms-1.0.2-doc’...
4814 0 421k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4815 Dload Upload Total Spent Left Speed
4816100 28880 100 28880 0 0 28880 0 0:00:01 --:--:-- 0:00:01 102k
4817
4818fetching path ‘/nix/store/qrjj8zc4609lmfkrk3b5pic1my9bcrig-logging-facade-0.3.0-doc’...
4819
4820*** Downloading ‘https://cache.nixos.org/nar/1c2n2dp1bvmiz9rqxw02lc73m1g36p5a1ik9lcg1w895hnpqk7vj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pl8lr5jli1gx85adw70z31lbb9vygfrf-language-haskell-extract-0.2.4-doc’...
4821 % Total % Received % Xferd Average Speed Time Time Time Current
4822 Dload Upload Total Spent Left Speed
4823 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4824*** Downloading ‘https://cache.nixos.org/nar/1z7rmlrfvdakpnnp2kij271srbyp9zzm404s80nazpkhw19xl3n4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qrjj8zc4609lmfkrk3b5pic1my9bcrig-logging-facade-0.3.0-doc’...
4825 % Total % Received % Xferd Average Speed Time Time Time Current
4826 Dload Upload Total Spent Left Speed
4827100 26412 100 26412 0 0 26412 0 0:00:01 --:--:-- 0:00:01 44690
4828
4829 0 20692 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/2v803wycjcw29k39vn4d3m073kngmjlm-mockery-0.3.5-doc’...
4830100 20692 100 20692 0 0 20692 0 0:00:01 --:--:-- 0:00:01 35799
4831
4832fetching path ‘/nix/store/8kyhlvrp0s59n2j6rf904ypm3vvsd6iw-mtl-2.2.2-doc’...
4833100 421k 100 421k 0 0 421k 0 0:00:01 0:00:01 --:--:-- 409k
4834
4835fetching path ‘/nix/store/8rm2zl1anz0jv7h88wwgnrhv0mqxjjfi-nanospec-0.2.2-doc’...
4836100 35572 100 35572 0 0 35572 0 0:00:01 --:--:-- 0:00:01 66365
4837
4838
4839*** Downloading ‘https://cache.nixos.org/nar/077wi76d1hi29sq4gf9sbd5pqfcipi8ri4gl77g0l00zvnmgcgp5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2v803wycjcw29k39vn4d3m073kngmjlm-mockery-0.3.5-doc’...
4840 % Total % Received % Xferd Average Speed Time Time Time Current
4841 Dload Upload Total Spent Left Speed
4842 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4843*** Downloading ‘https://cache.nixos.org/nar/1nppafmd5g8fg56s9g84y3f2r2f0wq7hl2b6nf3xczr87wkkhqcn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8kyhlvrp0s59n2j6rf904ypm3vvsd6iw-mtl-2.2.2-doc’...
4844 % Total % Received % Xferd Average Speed Time Time Time Current
4845 Dload Upload Total Spent Left Speed
4846 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/czs52ym4daqgq19qs1ds5vv514wcvsvc-newtype-generics-0.5.2.1-doc’...
4847
4848*** Downloading ‘https://cache.nixos.org/nar/1209gfkdcz2cfwlmim4i9pppipsc7ww41izc403gqwc8y0fqqsbz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8rm2zl1anz0jv7h88wwgnrhv0mqxjjfi-nanospec-0.2.2-doc’...
4849
4850*** Downloading ‘https://cache.nixos.org/nar/13790l9nxvr1xxxdylsv6w3whxakqn395kc8cqdqmdbx5wvvbrkm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/czs52ym4daqgq19qs1ds5vv514wcvsvc-newtype-generics-0.5.2.1-doc’...
4851 % Total % Received % Xferd Average Speed Time Time Time Current
4852 Dload Upload Total Spent Left Speed
4853 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4854 Dload Upload Total Spent Left Speed
4855100 22112 100 22112 0 0 22112 0 0:00:01 --:--:-- 0:00:01 48069
4856
4857fetching path ‘/nix/store/x69awxf7pqhqas793g9p469jjy9gw4d2-numeric-extras-0.1-doc’...
4858
4859*** Downloading ‘https://cache.nixos.org/nar/0spqckb680lnilnxmmbql5sx2jwjarsvwc77iifiy1c4snf2k7c1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x69awxf7pqhqas793g9p469jjy9gw4d2-numeric-extras-0.1-doc’...
4860100 25884 100 25884 0 0 25884 0 0:00:01 --:--:-- 0:00:01 75026
4861 % Total % Received % Xferd Average Speed Time Time Time Current
4862 Dload Upload Total Spent Left Speed
4863 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4864fetching path ‘/nix/store/m8ghrn9ngj3bx6jd3zvsfjmxjv78fss5-old-locale-1.0.0.7-doc’...
4865100 30448 100 30448 0 0 30448 0 0:00:01 --:--:-- 0:00:01 43250
4866
4867fetching path ‘/nix/store/akiryfvszsxnd3zg1avyyv9frlcln1h6-optparse-applicative-0.14.2.0-doc’...
4868100 28996 100 28996 0 0 28996 0 0:00:01 --:--:-- 0:00:01 47612
4869
4870fetching path ‘/nix/store/2q31nynlgqsnzlmq57hsrb2i1d4iqwqp-parallel-3.2.1.1-doc’...
4871
4872*** Downloading ‘https://cache.nixos.org/nar/0rv6j9rqsx8286i1jcxhl2bgpqv4jrs2prayg96jg8s9kiidd8l3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m8ghrn9ngj3bx6jd3zvsfjmxjv78fss5-old-locale-1.0.0.7-doc’...
4873 % Total % Received % Xferd Average Speed Time Time Time Current
4874 Dload Upload Total Spent Left Speed
4875 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4876*** Downloading ‘https://cache.nixos.org/nar/1frs8k1l80md2jps855nwncds09rkd2hv5ilbnfn6452qwf36qvd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/akiryfvszsxnd3zg1avyyv9frlcln1h6-optparse-applicative-0.14.2.0-doc’...
4877 % Total % Received % Xferd Average Speed Time Time Time Current
4878 Dload Upload Total Spent Left Speed
4879 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4880*** Downloading ‘https://cache.nixos.org/nar/1zgv07hislgsz8z9gp34p6zwgw87rzkqhmqq44ffka6y89ri9drx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2q31nynlgqsnzlmq57hsrb2i1d4iqwqp-parallel-3.2.1.1-doc’...
4881 % Total % Received % Xferd Average Speed Time Time Time Current
4882 Dload Upload Total Spent Left Speed
4883100 24136 100 24136 0 0 24136 0 0:00:01 --:--:-- 0:00:01 80993
4884
4885fetching path ‘/nix/store/r0z4kkjxz5jhxc7h89z5lxzq0iswhgvr-pcre-light-0.4.0.4-doc’...
4886100 110k 100 110k 0 0 110k 0 0:00:01 --:--:-- 0:00:01 306k
4887
4888fetching path ‘/nix/store/9j89r4gfz0rgpga6ywz0agb3x5s5dl2w-data-default-instances-old-locale-0.0.1-doc’...
4889 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4890*** Downloading ‘https://cache.nixos.org/nar/0fqk4w9n6jzdq23rgbwykxaxj58rg9xyr0wah65gy33yyv5xqnnc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r0z4kkjxz5jhxc7h89z5lxzq0iswhgvr-pcre-light-0.4.0.4-doc’...
4891 % Total % Received % Xferd Average Speed Time Time Time Current
4892 Dload Upload Total Spent Left Speed
4893 0 30984 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4894*** Downloading ‘https://cache.nixos.org/nar/01wk0a159xc2d202ldcaf9al0qjl2jchl6383m499j5js98v1a4x.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9j89r4gfz0rgpga6ywz0agb3x5s5dl2w-data-default-instances-old-locale-0.0.1-doc’...
4895100 80260 100 80260 0 0 80260 0 0:00:01 --:--:-- 0:00:01 80582
4896 % Total % Received % Xferd Average Speed Time Time Time Current
4897 Dload Upload Total Spent Left Speed
4898 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4899fetching path ‘/nix/store/bbmz0sk0c964m4awvpwv6yb26m5kagxk-old-time-1.1.0.3-doc’...
4900100 24584 100 24584 0 0 24584 0 0:00:01 --:--:-- 0:00:01 26897
4901
4902fetching path ‘/nix/store/325ynkql2a7bn066ykhj2fjzh28bv7j7-exceptions-0.8.3-doc’...
4903100 30984 100 30984 0 0 30984 0 0:00:01 --:--:-- 0:00:01 31713
4904
4905fetching path ‘/nix/store/23j0mb5zgpi3dgb0lrk0pal8xgfpc76h-logict-0.6.0.2-doc’...
4906100 22896 100 22896 0 0 22896 0 0:00:01 --:--:-- 0:00:01 29019
4907
4908fetching path ‘/nix/store/h0s5z0y6gwd83xdiqvr556mqliybzxjm-prelude-extras-0.4.0.3-doc’...
4909
4910*** Downloading ‘https://cache.nixos.org/nar/101m4jm6pi26rk1dycpjqlilqm732f13pf7n8l9r8f2xd6ffhm41.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bbmz0sk0c964m4awvpwv6yb26m5kagxk-old-time-1.1.0.3-doc’...
4911 % Total % Received % Xferd Average Speed Time Time Time Current
4912 Dload Upload Total Spent Left Speed
4913 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4914*** Downloading ‘https://cache.nixos.org/nar/1wvx2kq4p5fq2y4qvricwm76bqp06i5i7z1zkw54dpfjrlkvf5ab.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/325ynkql2a7bn066ykhj2fjzh28bv7j7-exceptions-0.8.3-doc’...
4915 % Total % Received % Xferd Average Speed Time Time Time Current
4916 Dload Upload Total Spent Left Speed
4917100 52608 100 52608 0 0 52608 0 0:00:01 --:--:-- 0:00:01 78754
4918
4919fetching path ‘/nix/store/2hq8m8kjn6g5a4wa4fp5xrc0qky3qdfb-pretty-show-1.6.16-doc’...
4920
4921*** Downloading ‘https://cache.nixos.org/nar/1pfznnjys22n96bldgnlalbn9xf1add49jhfx8llnrpax1qmf15f.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/23j0mb5zgpi3dgb0lrk0pal8xgfpc76h-logict-0.6.0.2-doc’...
4922 % Total % Received % Xferd Average Speed Time Time Time Current
4923 Dload Upload Total Spent Left Speed
4924 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4925*** Downloading ‘https://cache.nixos.org/nar/1q29abri4c6h838fsplqb26cpvzs7230mbi3salrdyxx5lf4i6qs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h0s5z0y6gwd83xdiqvr556mqliybzxjm-prelude-extras-0.4.0.3-doc’...
4926 % Total % Received % Xferd Average Speed Time Time Time Current
4927 Dload Upload Total Spent Left Speed
4928100 20348 100 20348 0 0 20348 0 0:00:01 --:--:-- 0:00:01 66280
4929
4930fetching path ‘/nix/store/sfwnvn3rrbbnkgisi534kk1735vq2ksd-primitive-0.6.3.0-doc’...
4931
4932*** Downloading ‘https://cache.nixos.org/nar/02jn35g1z6420wnfjwz06fy29sm0isxymyyg2bb8v44ahr6ia648.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2hq8m8kjn6g5a4wa4fp5xrc0qky3qdfb-pretty-show-1.6.16-doc’...
4933 % Total % Received % Xferd Average Speed Time Time Time Current
4934 Dload Upload Total Spent Left Speed
4935 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4936*** Downloading ‘https://cache.nixos.org/nar/1k55hp2a8bmc1bb9kj950kvi832l8ggf66ym777h65ar8qikzq87.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sfwnvn3rrbbnkgisi534kk1735vq2ksd-primitive-0.6.3.0-doc’...
4937 % Total % Received % Xferd Average Speed Time Time Time Current
4938 Dload Upload Total Spent Left Speed
4939100 62136 100 62136 0 0 62136 0 0:00:01 --:--:-- 0:00:01 102k
4940
4941fetching path ‘/nix/store/bm7h7sfg3hsadxdc4qkbgfb0l5p2lg70-random-1.1-doc’...
4942100 33220 100 33220 0 0 33220 0 0:00:01 --:--:-- 0:00:01 108k
4943
4944 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/q9kwx6k1dykrynv8j2h6d9k15n4jc5vn-raw-strings-qq-1.1-doc’...
4945100 42180 100 42180 0 0 42180 0 0:00:01 --:--:-- 0:00:01 139k
4946
4947fetching path ‘/nix/store/f2qiqmfdcvk1dkbvf3jn7ayhx4i06z9h-reflection-2.1.3-doc’...
4948
4949*** Downloading ‘https://cache.nixos.org/nar/0p82irnk0vkf2jsgkl61nj47b0ysdq9cqmcljmc3mar1z6h1agsy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bm7h7sfg3hsadxdc4qkbgfb0l5p2lg70-random-1.1-doc’...
4950 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
4951 Dload Upload Total Spent Left Speed
4952 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4953*** Downloading ‘https://cache.nixos.org/nar/00xn469iw7b1cnyfxawhjz8ygm0q1nk78srs4s0kmpn4qigwqmjl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q9kwx6k1dykrynv8j2h6d9k15n4jc5vn-raw-strings-qq-1.1-doc’...
4954 % Total % Received % Xferd Average Speed Time Time Time Current
4955 Dload Upload Total Spent Left Speed
4956 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4957*** Downloading ‘https://cache.nixos.org/nar/0msb2hn00v75zsv3mafk4ycwrpbkm064fn50jqk6mchdpa263al4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f2qiqmfdcvk1dkbvf3jn7ayhx4i06z9h-reflection-2.1.3-doc’...
4958 % Total % Received % Xferd Average Speed Time Time Time Current
4959 Dload Upload Total Spent Left Speed
4960100 45392 100 45392 0 0 45392 0 0:00:01 --:--:-- 0:00:01 75527
4961
4962fetching path ‘/nix/store/1ywa11qxv38pm0g1rhna49bi504pqqhf-regex-base-0.93.2-doc’...
4963100 38148 100 38148 0 0 38148 0 0:00:01 --:--:-- 0:00:01 59606
4964
4965fetching path ‘/nix/store/k9zbz2is68yr0ma9s6pz50b17f4jxw89-safe-0.3.15-doc’...
4966
4967*** Downloading ‘https://cache.nixos.org/nar/1h5c4m94b3ksd6d0pqajph5wilfjl6fv67b4nlkdpxdklz0icjz8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1ywa11qxv38pm0g1rhna49bi504pqqhf-regex-base-0.93.2-doc’...
4968 % Total % Received % Xferd Average Speed Time Time Time Current
4969 Dload Upload Total Spent Left Speed
4970 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4971*** Downloading ‘https://cache.nixos.org/nar/1vxc7afhiq6k409i7q75jzhp0az67fj0l39i5lj83xjlhp8j5r2b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k9zbz2is68yr0ma9s6pz50b17f4jxw89-safe-0.3.15-doc’...
4972 % Total % Received % Xferd Average Speed Time Time Time Current
4973 Dload Upload Total Spent Left Speed
4974100 48000 100 48000 0 0 48000 0 0:00:01 --:--:-- 0:00:01 63324
4975
4976fetching path ‘/nix/store/z66x4lv9m67sqcy890f2d8vi5dmdgwgs-semigroups-0.18.4-doc’...
4977100 86088 100 86088 0 0 86088 0 0:00:01 --:--:-- 0:00:01 118k
4978
4979fetching path ‘/nix/store/q5c00rb5f9qnd639nbrisi689l9hrz72-setenv-0.1.1.3-doc’...
4980100 40164 100 40164 0 0 40164 0 0:00:01 --:--:-- 0:00:01 73966
4981
4982fetching path ‘/nix/store/n1ndas0537sf7i49skmiyjns3j7igpzc-silently-1.2.5-doc’...
4983
4984*** Downloading ‘https://cache.nixos.org/nar/0nimxjksc12ar9hllrdgz5k1g097m21v15fzxaa7lfr6k4j6gld1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/z66x4lv9m67sqcy890f2d8vi5dmdgwgs-semigroups-0.18.4-doc’...
4985 % Total % Received % Xferd Average Speed Time Time Time Current
4986 Dload Upload Total Spent Left Speed
4987 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4988*** Downloading ‘https://cache.nixos.org/nar/1ayd2p65pr3ywyqfzg1g6qlafmh43fad1xw4jhfls47pghdh0sm2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q5c00rb5f9qnd639nbrisi689l9hrz72-setenv-0.1.1.3-doc’...
4989 % Total % Received % Xferd Average Speed Time Time Time Current
4990 Dload Upload Total Spent Left Speed
4991 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
4992*** Downloading ‘https://cache.nixos.org/nar/1jp4z1l7awi13ymjwv1k5l3163b87skvjixxa5bm2b04n8vsdzxm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n1ndas0537sf7i49skmiyjns3j7igpzc-silently-1.2.5-doc’...
4993 % Total % Received % Xferd Average Speed Time Time Time Current
4994 Dload Upload Total Spent Left Speed
4995100 39512 100 39512 0 0 39512 0 0:00:01 --:--:-- 0:00:01 62717
4996
4997fetching path ‘/nix/store/08sammgs8283a96bp9iqkpk0r1afwykk-monad-par-extras-0.3.3-doc’...
4998100 41924 100 41924 0 0 41924 0 0:00:01 --:--:-- 0:00:01 87707
4999
5000fetching path ‘/nix/store/s8h3dk8wa0w2maw09lrjz6chfgq7mjw1-silently-1.2.5-doc’...
5001100 23712 100 23712 0 0 23712 0 0:00:01 --:--:-- 0:00:01 33025
5002
5003fetching path ‘/nix/store/6i6k2b5jcqsz1lhrjjgsfzwnhf02cbmn-regex-posix-0.95.2-doc’...
5004
5005*** Downloading ‘https://cache.nixos.org/nar/0gbavs010qi40ncwc19gmq4978sar3dfqi5577zsry6nwfa7vlnx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/08sammgs8283a96bp9iqkpk0r1afwykk-monad-par-extras-0.3.3-doc’...
5006 % Total % Received % Xferd Average Speed Time Time Time Current
5007 Dload Upload Total Spent Left Speed
5008 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5009*** Downloading ‘https://cache.nixos.org/nar/13wrg90bdj3xrjalfbdlyfawh6qxramjr6bq1a9hyz7rqx8rlrp7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s8h3dk8wa0w2maw09lrjz6chfgq7mjw1-silently-1.2.5-doc’...
5010 26 89.9M 26 24.2M 0 0 6208k 0 0:00:14 0:00:04 0:00:10 6140k % Total % Received % Xferd Average Speed Time Time Time Current
5011 Dload Upload Total Spent Left Speed
5012 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5013*** Downloading ‘https://cache.nixos.org/nar/1wpl95h5dkijc94g2q4mimqvc77znkgmivrjpbqfvsnxpi9m3wa6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6i6k2b5jcqsz1lhrjjgsfzwnhf02cbmn-regex-posix-0.95.2-doc’...
5014 83 40096 83 33376 0 0 33376 0 0:00:01 --:--:-- 0:00:01 54446 % Total % Received % Xferd Average Speed Time Time Time Current
5015 Dload Upload Total Spent Left Speed
5016100 40096 100 40096 0 0 40096 0 0:00:01 --:--:-- 0:00:01 65090
5017
5018fetching path ‘/nix/store/qpkklihv6szwjk24c0f9idjx7zyxkkkk-simple-reflect-0.3.2-doc’...
5019
5020*** Downloading ‘https://cache.nixos.org/nar/1ggxg50pzrkcadidqflxhc3b6a4ivaq0icza6mdyg34gdh6qn56b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qpkklihv6szwjk24c0f9idjx7zyxkkkk-simple-reflect-0.3.2-doc’...
5021 % Total % Received % Xferd Average Speed Time Time Time Current
5022 Dload Upload Total Spent Left Speed
5023100 39976 100 39976 0 0 39976 0 0:00:01 --:--:-- 0:00:01 118k
5024
5025fetching path ‘/nix/store/59j4hybd120fy6fyhml57665g6zvcskz-smallcheck-1.1.3.1-doc’...
5026100 23172 100 23172 0 0 23172 0 0:00:01 --:--:-- 0:00:01 40369
5027
5028fetching path ‘/nix/store/5h15xk97r1vrmqjg60fwvsvcaph08c3b-split-0.2.3.3-doc’...
5029100 22056 100 22056 0 0 22056 0 0:00:01 --:--:-- 0:00:01 37383
5030
5031100 22356 100 22356 0 0 22356 0 0:00:01 --:--:-- 0:00:01 38215
5032fetching path ‘/nix/store/8hqva7a8nd7sgwdmbmqhwzqynw8yqnpa-stm-2.4.5.0-doc’...
5033
5034100 52392 100 52392 0 0 52392 0 0:00:01 --:--:-- 0:00:01 144k
5035fetching path ‘/nix/store/91qasfr5c7w38hcqdidajwij01myj4vj-strict-0.3.2-doc’...
5036
5037fetching path ‘/nix/store/3q8wvqbvr4ra2wrynwqydzm544dxjank-stringbuilder-0.5.1-doc’...
5038
5039*** Downloading ‘https://cache.nixos.org/nar/0zmfbadgq4h98bv0bd1n4p6r93s73z5qxpab7a2n5xgdyyyiid02.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/59j4hybd120fy6fyhml57665g6zvcskz-smallcheck-1.1.3.1-doc’...
5040 % Total % Received % Xferd Average Speed Time Time Time Current
5041 Dload Upload Total Spent Left Speed
5042 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5043*** Downloading ‘https://cache.nixos.org/nar/0xwa0dnddh59f9wxmr7m62rfg5q1qh9p5n4jnccchfifqw2fj7nn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5h15xk97r1vrmqjg60fwvsvcaph08c3b-split-0.2.3.3-doc’...
5044 % Total % Received % Xferd Average Speed Time Time Time Current
5045 Dload Upload Total Spent Left Speed
5046 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5047*** Downloading ‘https://cache.nixos.org/nar/04fv2k1kj8bapk326nm578grqxbprvs02ahsa0l4havc63axnbj0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8hqva7a8nd7sgwdmbmqhwzqynw8yqnpa-stm-2.4.5.0-doc’...
5048
5049*** Downloading ‘https://cache.nixos.org/nar/17pl05582d9zm3k4mwk921xdvkgqkhmyd4plvryd7drmgq8dr8yb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/91qasfr5c7w38hcqdidajwij01myj4vj-strict-0.3.2-doc’...
5050 % Total % Received % Xferd Average Speed Time Time Time Current
5051 Dload Upload Total Spent Left Speed
5052 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5053 Dload Upload Total Spent Left Speed
5054 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5055*** Downloading ‘https://cache.nixos.org/nar/1ysqdl7h95l9mj4q1f30cplrkq6nf0imwdy0zqvpqg7dbzrv7clw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3q8wvqbvr4ra2wrynwqydzm544dxjank-stringbuilder-0.5.1-doc’...
5056 % Total % Received % Xferd Average Speed Time Time Time Current
5057 Dload Upload Total Spent Left Speed
5058100 22360 100 22360 0 0 22360 0 0:00:01 --:--:-- 0:00:01 33981
5059
5060fetching path ‘/nix/store/xq7f3vf0gw27li4zg4zlvgyxsdfh6x3f-stringbuilder-0.5.1-doc’...
5061100 29720 100 29720 0 0 29720 0 0:00:01 --:--:-- 0:00:01 49368
5062
5063fetching path ‘/nix/store/bll17nw6p6j39q21xqg89s1qqdrzvxag-syb-0.7-doc’...
5064
5065*** Downloading ‘https://cache.nixos.org/nar/1bsg9xkvkshvmj9m51jic1w1ylzl08qps2jnpvic1mnhn7nqxiw7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xq7f3vf0gw27li4zg4zlvgyxsdfh6x3f-stringbuilder-0.5.1-doc’...
5066 % Total % Received % Xferd Average Speed Time Time Time Current
5067 Dload Upload Total Spent Left Speed
5068 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5069*** Downloading ‘https://cache.nixos.org/nar/0ysh8dw5n7fb8azkxn43vpwi5m69d5dv1nx6wlfswf6ghdg6676z.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bll17nw6p6j39q21xqg89s1qqdrzvxag-syb-0.7-doc’...
5070 % Total % Received % Xferd Average Speed Time Time Time Current
5071 Dload Upload Total Spent Left Speed
5072100 47744 100 47744 0 0 47744 0 0:00:01 --:--:-- 0:00:01 81197
5073
5074100 55752 100 55752 0 0 55752 0 0:00:01 --:--:-- 0:00:01 88777
5075fetching path ‘/nix/store/hq63sncr37r07xrc50zg2h63smjgfs7y-tagged-0.8.5-doc’...
5076
5077fetching path ‘/nix/store/xlji5hmdx4mk7k9z2n85b49swiqxd0xr-tagshare-0.0-doc’...
5078100 48692 100 48692 0 0 48692 0 0:00:01 --:--:-- 0:00:01 84096
5079100 21888 100 21888 0 0 21888 0 0:00:01 --:--:-- 0:00:01 39085
5080
5081
5082fetching path ‘/nix/store/5fq60i0vpmr1sh4h5gmd6jp3vgsppzwg-temporary-1.2.1.1-doc’...
5083fetching path ‘/nix/store/v1nmyj5y0l472kv249cizwqngwndvysa-temporary-1.2.1.1-doc’...
5084100 29524 100 29524 0 0 29524 0 0:00:01 --:--:-- 0:00:01 45074
5085
5086*** Downloading ‘https://cache.nixos.org/nar/1h0wliafihkzvhfrklr7y44l87y6namqmc4pawgqkj8k106c9j1w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hq63sncr37r07xrc50zg2h63smjgfs7y-tagged-0.8.5-doc’...
5087
5088fetching path ‘/nix/store/xqk6m6c6arwkf76796bq1r7a2g3mzb3s-temporary-rc-1.2.0.3-doc’...
5089
5090*** Downloading ‘https://cache.nixos.org/nar/10z9rxnpc02710lr73740i7lvi39h4a2vl2w10bga1i8nyy6jx7y.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xlji5hmdx4mk7k9z2n85b49swiqxd0xr-tagshare-0.0-doc’...
5091 % Total % Received % Xferd Average Speed Time Time Time Current
5092 Dload Upload Total Spent Left Speed
5093 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5094 Dload Upload Total Spent Left Speed
5095 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5096*** Downloading ‘https://cache.nixos.org/nar/0rqilsd7555b1kzdy3gjkazwv9827igg28lrs115yx7x82kn6nk2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5fq60i0vpmr1sh4h5gmd6jp3vgsppzwg-temporary-1.2.1.1-doc’...
5097
5098*** Downloading ‘https://cache.nixos.org/nar/1ggzqz3563xw6a4zc514fc64hhx6y68sp786vr90lyirkdx64024.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v1nmyj5y0l472kv249cizwqngwndvysa-temporary-1.2.1.1-doc’...
5099 % Total % Received % Xferd Average Speed Time Time Time Current
5100 Dload Upload Total Spent Left Speed
5101 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5102 Dload Upload Total Spent Left Speed
5103 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5104*** Downloading ‘https://cache.nixos.org/nar/1hqyl88n7aia3pqw7r3xr2b5iq8xkpga1jnwhfifzsfm9q15kmmb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xqk6m6c6arwkf76796bq1r7a2g3mzb3s-temporary-rc-1.2.0.3-doc’...
5105 % Total % Received % Xferd Average Speed Time Time Time Current
5106 Dload Upload Total Spent Left Speed
5107100 21888 100 21888 0 0 21888 0 0:00:01 --:--:-- 0:00:01 36238
5108
5109fetching path ‘/nix/store/czkfh6vpd652ya9n3cylzr4i8py33r76-test-framework-0.8.1.1-doc’...
5110100 50252 100 50252 0 0 50252 0 0:00:01 --:--:-- 0:00:01 84174
5111
5112fetching path ‘/nix/store/0ma47gi9iavzdaw2x01z3696mfjr72kv-test-framework-th-0.2.4-doc’...
5113100 27636 100 27636 0 0 27636 0 0:00:01 --:--:-- 0:00:01 139k
5114
5115*** Downloading ‘https://cache.nixos.org/nar/10ys3sg6vpyla85ivam34wd9q32wfcbkq30d4wr4dcvvsa4r715v.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/czkfh6vpd652ya9n3cylzr4i8py33r76-test-framework-0.8.1.1-doc’...
5116
5117fetching path ‘/nix/store/n29mg467wp0flvh5gm938qn9khwdvqva-text-1.2.2.2-doc’...
5118 % Total % Received % Xferd Average Speed Time Time Time Current
5119 Dload Upload Total Spent Left Speed
5120100 37584 100 37584 0 0 37584 0 0:00:01 --:--:-- 0:00:01 104k
5121
5122fetching path ‘/nix/store/ma49sbacdzryvq9b5sxxzcx8xl9rz3s9-tf-random-0.5-doc’...
5123
5124*** Downloading ‘https://cache.nixos.org/nar/149v5kcp9m4ra5p9fqknw8742z6ssh0awzrcwjqpz9zjz4f1azwm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/0ma47gi9iavzdaw2x01z3696mfjr72kv-test-framework-th-0.2.4-doc’...
5125 % Total % Received % Xferd Average Speed Time Time Time Current
5126 Dload Upload Total Spent Left Speed
5127 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5128*** Downloading ‘https://cache.nixos.org/nar/1ifpqiwjk4cwsz0x2f0dm17y392byg2hacab09la04nqlqnwbm33.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n29mg467wp0flvh5gm938qn9khwdvqva-text-1.2.2.2-doc’...
5129 % Total % Received % Xferd Average Speed Time Time Time Current
5130 Dload Upload Total Spent Left Speed
5131 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5132*** Downloading ‘https://cache.nixos.org/nar/0sbmmi5gy7za3jppn93k6i6sgy7ig6ia4db7jzmjrsh7ly1f785h.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ma49sbacdzryvq9b5sxxzcx8xl9rz3s9-tf-random-0.5-doc’...
5133 % Total % Received % Xferd Average Speed Time Time Time Current
5134 Dload Upload Total Spent Left Speed
5135100 26536 100 26536 0 0 26536 0 0:00:01 --:--:-- 0:00:01 46554
5136100 26536 100 26536 0 0 26536 0 0:00:01 --:--:-- 0:00:01 46800
5137
5138fetching path ‘/nix/store/v69dxcma6kwkj1jq0b2dsyrw8brpirh5-distributive-0.5.3-doc’...
5139
5140fetching path ‘/nix/store/4ab2yjgljsyh0pzv29xd4adzgd299qxz-tasty-0.11.3-doc’...
5141100 60980 100 60980 0 0 60980 0 0:00:01 --:--:-- 0:00:01 169k
5142
5143fetching path ‘/nix/store/n9nrsvk4iybq9dxcfg6aygnjn40hrbsk-th-abstraction-0.2.6.0-doc’...
5144100 22148 100 22148 0 0 22148 0 0:00:01 --:--:-- 0:00:01 32145
5145
5146fetching path ‘/nix/store/s9lzri15ggg4by9f7rimq8s0w0fhbhq8-test-framework-hunit-0.3.0.2-doc’...
5147
5148*** Downloading ‘https://cache.nixos.org/nar/1mvf95ziiyg75k1mla8gjmfl9jlx1hmz6wcgch2wvbclx7spq3hs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v69dxcma6kwkj1jq0b2dsyrw8brpirh5-distributive-0.5.3-doc’...
5149
5150*** Downloading ‘https://cache.nixos.org/nar/0hlci0syqp8xd9hz83264qk9npqngnrdizcql285jwdjlicmlr4z.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4ab2yjgljsyh0pzv29xd4adzgd299qxz-tasty-0.11.3-doc’...
5151 % Total % Received % Xferd Average Speed Time Time Time Current
5152 Dload Upload Total Spent Left Speed
5153 45 36080 45 16384 0 0 16384 0 0:00:02 --:--:-- 0:00:02 54251 % Total % Received % Xferd Average Speed Time Time Time Current
5154 Dload Upload Total Spent Left Speed
5155100 36080 100 36080 0 0 36080 0 0:00:01 --:--:-- 0:00:01 107k
5156
5157fetching path ‘/nix/store/4f75ic0pvavmmyd6mz0ifvg8l90yg9xg-th-desugar-1.7-doc’...
5158
5159*** Downloading ‘https://cache.nixos.org/nar/1sdcgqr7g4hkawp0czmzq0044a7zvfz2m2h8c32d7zjaqvra2dv3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n9nrsvk4iybq9dxcfg6aygnjn40hrbsk-th-abstraction-0.2.6.0-doc’...
5160
5161*** Downloading ‘https://cache.nixos.org/nar/0l34acqjjbp2r4bkzdin5rxv1mrqnbi5f48ada6d3p9b3p14xb2d.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s9lzri15ggg4by9f7rimq8s0w0fhbhq8-test-framework-hunit-0.3.0.2-doc’...
5162 % Total % Received % Xferd Average Speed Time Time Time Current
5163 Dload Upload Total Spent Left Speed
5164 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5165 Dload Upload Total Spent Left Speed
5166 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5167*** Downloading ‘https://cache.nixos.org/nar/16dsjs8qavxsqnl18qdv58qvi6xdq9x6fkc1rcii99hgj97q85bl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4f75ic0pvavmmyd6mz0ifvg8l90yg9xg-th-desugar-1.7-doc’...
5168 % Total % Received % Xferd Average Speed Time Time Time Current
5169 Dload Upload Total Spent Left Speed
5170100 23544 100 23544 0 0 23544 0 0:00:01 --:--:-- 0:00:01 38723
5171
5172fetching path ‘/nix/store/jby7kfqdc1xzba3wis6v0pdrag11npfq-QuickCheck-2.10.1-doc’...
5173100 214k 100 214k 0 0 214k 0 0:00:01 --:--:-- 0:00:01 329k
5174
5175fetching path ‘/nix/store/b1hs799i16vy01lpjbx1r993dmprd2kc-th-expand-syns-0.4.4.0-doc’...
5176100 31008 100 31008 0 0 31008 0 0:00:01 --:--:-- 0:00:01 88848
5177
5178fetching path ‘/nix/store/lsxxqvaaa0jfic229d4mdgrb05n1c4na-fsnotify-0.2.1.1-doc’...
5179
5180*** Downloading ‘https://cache.nixos.org/nar/0pz7k6cnqr1405kwrw0dnfslns3ppcqvqhc4ly7jbidf7aw7sdnp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jby7kfqdc1xzba3wis6v0pdrag11npfq-QuickCheck-2.10.1-doc’...
5181 % Total % Received % Xferd Average Speed Time Time Time Current
5182 Dload Upload Total Spent Left Speed
5183100 59908 100 59908 0 0 59908 0 0:00:01 --:--:-- 0:00:01 176k
5184
5185fetching path ‘/nix/store/a5rj0ggmmx4xr0ppdb487n0y3q6skdnp-comonad-5.0.3-doc’...
5186
5187*** Downloading ‘https://cache.nixos.org/nar/1gma2infvf6mgjsymspdca7znz8wqzz6qnvkffl2i07ck09rnp8r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/b1hs799i16vy01lpjbx1r993dmprd2kc-th-expand-syns-0.4.4.0-doc’...
5188
5189*** Downloading ‘https://cache.nixos.org/nar/07hyqmndxxhr3by70w13pr07szl153vwgfllcgal63kpi1kzr057.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lsxxqvaaa0jfic229d4mdgrb05n1c4na-fsnotify-0.2.1.1-doc’...
5190 % Total % Received % Xferd Average Speed Time Time Time Current
5191 Dload Upload Total Spent Left Speed
5192 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5193 Dload Upload Total Spent Left Speed
5194 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5195*** Downloading ‘https://cache.nixos.org/nar/1yazky7vsg4rjbgy01m51qcn6m49qjb4qsfn32v7y08117adg282.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a5rj0ggmmx4xr0ppdb487n0y3q6skdnp-comonad-5.0.3-doc’...
5196 % Total % Received % Xferd Average Speed Time Time Time Current
5197 Dload Upload Total Spent Left Speed
5198100 83404 100 83404 0 0 83404 0 0:00:01 --:--:-- 0:00:01 131k
5199
5200fetching path ‘/nix/store/s1488fbr79rwc7f6msmbpmcfazsh3f5a-hashable-1.2.6.1-doc’...
5201100 22244 100 22244 0 0 22244 0 0:00:01 --:--:-- 0:00:01 36888
5202
5203fetching path ‘/nix/store/x8yv70cv844xibxqp7670ng71afzw3y1-intervals-0.8.1-doc’...
5204100 62320 100 62320 0 0 62320 0 0:00:01 --:--:-- 0:00:01 301k
5205
5206fetching path ‘/nix/store/8y22p2mvlbc4y7d8zizfqw5gwah005rx-parsec-3.1.13.0-doc’...
5207
5208*** Downloading ‘https://cache.nixos.org/nar/1y9k5pd2iis1bycgj8yvrbv11q033q3y9ipn6yiyd1lf6f0qxipa.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s1488fbr79rwc7f6msmbpmcfazsh3f5a-hashable-1.2.6.1-doc’...
5209 % Total % Received % Xferd Average Speed Time Time Time Current
5210 Dload Upload Total Spent Left Speed
5211 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5212*** Downloading ‘https://cache.nixos.org/nar/1k2653rv7znaprdkr9h91xa9ag1fmfsi77zqsc8zscbvlx38y7n8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x8yv70cv844xibxqp7670ng71afzw3y1-intervals-0.8.1-doc’...
5213 % Total % Received % Xferd Average Speed Time Time Time Current
5214 Dload Upload Total Spent Left Speed
5215 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5216*** Downloading ‘https://cache.nixos.org/nar/1yqvfcvls9gjyk2z62idlhl3w53ql2p03gjdx46z5j0lyfplmwr4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8y22p2mvlbc4y7d8zizfqw5gwah005rx-parsec-3.1.13.0-doc’...
5217 % Total % Received % Xferd Average Speed Time Time Time Current
5218 Dload Upload Total Spent Left Speed
5219100 159k 100 159k 0 0 159k 0 0:00:01 --:--:-- 0:00:01 217k
5220100 28944 100 28944 0 0 28944 0 0:00:01 --:--:-- 0:00:01 46015
5221
5222fetching path ‘/nix/store/cwfprgyaj1qrivl1lwdcbzxpp4jp2745-bifunctors-5.5.2-doc’...
5223
5224100 39724 100 39724 0 0 39724 0 0:00:01 --:--:-- 0:00:01 63154
5225
5226fetching path ‘/nix/store/l76cdblcqk9qsx7x6fx2jvxf5cg9p9vx-ChasingBottoms-1.3.1.3-doc’...
5227fetching path ‘/nix/store/f7rm6l8hkda7nafvl6whf502kgqfsjya-hspec-core-2.4.4-doc’...
5228100 110k 100 110k 0 0 110k 0 0:00:01 0:00:01 --:--:-- 106k
5229
5230fetching path ‘/nix/store/av5yg2fsar7sabafmvp6dhsnx7dz84xv-hspec-meta-2.4.6-doc’...
5231
5232*** Downloading ‘https://cache.nixos.org/nar/0j26pz63j2zp0ck5v2zk80409wm80zrjng89cd1xk9k4qwmmnald.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cwfprgyaj1qrivl1lwdcbzxpp4jp2745-bifunctors-5.5.2-doc’...
5233 % Total % Received % Xferd Average Speed Time Time Time Current
5234 Dload Upload Total Spent Left Speed
5235 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5236*** Downloading ‘https://cache.nixos.org/nar/1lz3p9vgpf2f16xv57k88yzpf4hgvvxajiq3x219qb5b0hzbrix2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f7rm6l8hkda7nafvl6whf502kgqfsjya-hspec-core-2.4.4-doc’...
5237
5238*** Downloading ‘https://cache.nixos.org/nar/0f805znxfgh9q8jmzd661xzck3nr8wy8hml3wnv0mzdzlp3yjqjs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l76cdblcqk9qsx7x6fx2jvxf5cg9p9vx-ChasingBottoms-1.3.1.3-doc’...
5239 % Total % Received % Xferd Average Speed Time Time Time Current
5240 Dload Upload Total Spent Left Speed
5241 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5242 Dload Upload Total Spent Left Speed
5243 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5244*** Downloading ‘https://cache.nixos.org/nar/0aznbyf7i45acvmra1nc7mlj7inpswbdlhmvwrpqvbz5kw4pgbwh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/av5yg2fsar7sabafmvp6dhsnx7dz84xv-hspec-meta-2.4.6-doc’...
5245 % Total % Received % Xferd Average Speed Time Time Time Current
5246 Dload Upload Total Spent Left Speed
5247100 48460 100 48460 0 0 48460 0 0:00:01 --:--:-- 0:00:01 81858
5248
5249fetching path ‘/nix/store/16gkq7zm93imfw8dy5qhx3xrrn6pr4xf-polyparse-1.12-doc’...
5250
5251*** Downloading ‘https://cache.nixos.org/nar/08jidzz2bfr68snrw6fcpkd7vd92m4dll8bzi2q083zjz2lpspbv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/16gkq7zm93imfw8dy5qhx3xrrn6pr4xf-polyparse-1.12-doc’...
5252100 83288 100 83288 0 0 83288 0 0:00:01 --:--:-- 0:00:01 355k
5253100 108k 100 108k 0 0 108k 0 0:00:01 --:--:-- 0:00:01 173k
5254 % Total % Received % Xferd Average Speed Time Time Time Current
5255 Dload Upload Total Spent Left Speed
5256 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5257fetching path ‘/nix/store/lm6g06ljvqz09clrl4pvqn5bh226ip9b-case-insensitive-1.2.0.10-doc’...
5258
5259fetching path ‘/nix/store/ragapi5qm8q01kzn8gq2xb2c4hfjgf45-hashable-time-0.2.0.1-doc’...
5260100 82200 100 82200 0 0 82200 0 0:00:01 --:--:-- 0:00:01 258k
5261
5262fetching path ‘/nix/store/5zw1kn5dggykkv4yi99b3mzqg2hymrdz-profunctors-5.2.2-doc’...
5263
5264*** Downloading ‘https://cache.nixos.org/nar/15igsf71xfbgm124b3drp7sxwlvh189425fryrd35j1zinxgncb8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lm6g06ljvqz09clrl4pvqn5bh226ip9b-case-insensitive-1.2.0.10-doc’...
5265 % Total % Received % Xferd Average Speed Time Time Time Current
5266 Dload Upload Total Spent Left Speed
5267100 65316 100 65316 0 0 65316 0 0:00:01 --:--:-- 0:00:01 78599
5268
5269*** Downloading ‘https://cache.nixos.org/nar/1mjgw8jwzpkryrj4rx6fh4hrs3pbyck2i3azs1lqjcvb11bivpdq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ragapi5qm8q01kzn8gq2xb2c4hfjgf45-hashable-time-0.2.0.1-doc’...
5270
5271fetching path ‘/nix/store/9ckpxx3q4yfrzmhawqk4mbw2mc8lqsig-hspec-2.4.4-doc’...
5272 % Total % Received % Xferd Average Speed Time Time Time Current
5273 Dload Upload Total Spent Left Speed
5274 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5275*** Downloading ‘https://cache.nixos.org/nar/0a4qmixrgyld9vv1f5vmxd1jd3cf29dp678qx8cdqb4snrx29w8g.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5zw1kn5dggykkv4yi99b3mzqg2hymrdz-profunctors-5.2.2-doc’...
5276 % Total % Received % Xferd Average Speed Time Time Time Current
5277 Dload Upload Total Spent Left Speed
5278 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5279*** Downloading ‘https://cache.nixos.org/nar/08ji4w3pik87rmrgcykz8k1cl7wpz3hzqyi163qg76d3mkxcnpp5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9ckpxx3q4yfrzmhawqk4mbw2mc8lqsig-hspec-2.4.4-doc’...
5280 % Total % Received % Xferd Average Speed Time Time Time Current
5281 Dload Upload Total Spent Left Speed
5282100 59836 100 59836 0 0 59836 0 0:00:01 --:--:-- 0:00:01 98091
5283
5284fetching path ‘/nix/store/mrwr84yrhyn9b062g8iqhjn677id46xl-quickcheck-assertions-0.3.0-doc’...
5285100 27960 100 27960 0 0 27960 0 0:00:01 --:--:-- 0:00:01 103k
5286
5287fetching path ‘/nix/store/05vjlnz4nksf55v9h88766zjqsrqndp0-quickcheck-io-0.2.0-doc’...
5288100 74768 100 74768 0 0 74768 0 0:00:01 --:--:-- 0:00:01 120k
5289
5290fetching path ‘/nix/store/2xm9v8vrcyvv9hvqixm9rs05k0wlpgy6-regex-tdfa-1.2.2-doc’...
5291100 111k 100 111k 0 0 111k 0 0:00:01 --:--:-- 0:00:01 464k
5292
5293fetching path ‘/nix/store/fpjlzar8kg12rmky31mqq1s8pqm58vyq-scientific-0.3.5.2-doc’...
5294 58 89.9M 58 53.0M 0 0 6784k 0 0:00:13 0:00:08 0:00:05 7409k
5295*** Downloading ‘https://cache.nixos.org/nar/1anl1xvzapzf5jzayc1h5kn80fv10hzvicr669iqfsm3pl7mbp9j.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mrwr84yrhyn9b062g8iqhjn677id46xl-quickcheck-assertions-0.3.0-doc’...
5296 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5297 Dload Upload Total Spent Left Speed
5298 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5299*** Downloading ‘https://cache.nixos.org/nar/0ckjwwyfzimq3j97sm0vp949r2w0cy4k3889wq4rr5n59bvaxlm2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/05vjlnz4nksf55v9h88766zjqsrqndp0-quickcheck-io-0.2.0-doc’...
5300 0 84748 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5301 Dload Upload Total Spent Left Speed
5302 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5303*** Downloading ‘https://cache.nixos.org/nar/0fylqs3rrabci17iw5qwdncrlc9idfa2qfih07i520ihx1li3rq3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2xm9v8vrcyvv9hvqixm9rs05k0wlpgy6-regex-tdfa-1.2.2-doc’...
5304 % Total % Received % Xferd Average Speed Time Time Time Current
5305 Dload Upload Total Spent Left Speed
5306100 37452 100 37452 0 0 37452 0 0:00:01 --:--:-- 0:00:01 121k
5307
5308fetching path ‘/nix/store/98fbj4kc8npgy9149ihrryqn398nzxz9-singletons-2.3.1-doc’...
5309100 84748 100 84748 0 0 84748 0 0:00:01 --:--:-- 0:00:01 135k
5310
5311
5312*** Downloading ‘https://cache.nixos.org/nar/1rbh687hg4f0w6bwhavmdr8yglyvz8f9hy52a7c2vddwmhnwa14l.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fpjlzar8kg12rmky31mqq1s8pqm58vyq-scientific-0.3.5.2-doc’...
5313fetching path ‘/nix/store/fzglij8p2sbl3j40g9i4v6975rxmnc6c-tasty-ant-xml-1.1.3-doc’...
5314 % Total % Received % Xferd Average Speed Time Time Time Current
5315 Dload Upload Total Spent Left Speed
5316 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5317*** Downloading ‘https://cache.nixos.org/nar/15vys0jm54xapl4n76mfmbq1wik0b1118lz8nkrw2jcy1wsbvirf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/98fbj4kc8npgy9149ihrryqn398nzxz9-singletons-2.3.1-doc’...
5318 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5319 Dload Upload Total Spent Left Speed
5320 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5321*** Downloading ‘https://cache.nixos.org/nar/0zklsv1gppabkd4h6xh7qjhvhx480md7rlzw677wiwrh0zzav9dx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fzglij8p2sbl3j40g9i4v6975rxmnc6c-tasty-ant-xml-1.1.3-doc’...
5322100 25236 100 25236 0 0 25236 0 0:00:01 --:--:-- 0:00:01 44744
5323
5324fetching path ‘/nix/store/a4y2b85581kjva5prxqpsxvncx68pjzp-tasty-expected-failure-0.11.0.4-doc’...
5325 % Total % Received % Xferd Average Speed Time Time Time Current
5326 Dload Upload Total Spent Left Speed
5327100 147k 100 147k 0 0 147k 0 0:00:01 --:--:-- 0:00:01 576k
5328
5329fetching path ‘/nix/store/400sz3l0anvwjmcsy6i9scnafxyp3936-tasty-golden-2.3.1.2-doc’...
5330
5331*** Downloading ‘https://cache.nixos.org/nar/1axk7s44bp7rcp9mc80jj226pcia4fyaw8sybk1viz0w76nywbcv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a4y2b85581kjva5prxqpsxvncx68pjzp-tasty-expected-failure-0.11.0.4-doc’...
5332 % Total % Received % Xferd Average Speed Time Time Time Current
5333 Dload Upload Total Spent Left Speed
5334100 24740 100 24740 0 0 24740 0 0:00:01 --:--:-- 0:00:01 122k
5335100 25532 100 25532 0 0 25532 0 0:00:01 --:--:-- 0:00:01 58694
5336
5337
5338
5339*** Downloading ‘https://cache.nixos.org/nar/0j3y69mn0f8mvh9jszviiwavzkjbg1rpgqdhw0mjdi2dz54p26gb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/400sz3l0anvwjmcsy6i9scnafxyp3936-tasty-golden-2.3.1.2-doc’...
5340fetching path ‘/nix/store/600y7175kqyfazrwl99vkh2m2afwy073-tasty-hunit-0.9.2-doc’...
5341fetching path ‘/nix/store/n05mp1zjiff9giyawicvz66xbcnj46hf-tasty-quickcheck-0.9.1-doc’...
5342 % Total % Received % Xferd Average Speed Time Time Time Current
5343 Dload Upload Total Spent Left Speed
5344100 22928 100 22928 0 0 22928 0 0:00:01 --:--:-- 0:00:01 115k
5345
5346fetching path ‘/nix/store/54lkhcwjn0aj223xk09021v6qrnxz78p-tasty-smallcheck-0.8.1-doc’...
5347
5348*** Downloading ‘https://cache.nixos.org/nar/0a2dllhamkn0wi3zj3y5ilbw266ap12ivsllmc53icl2psb6cqpl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/600y7175kqyfazrwl99vkh2m2afwy073-tasty-hunit-0.9.2-doc’...
5349
5350*** Downloading ‘https://cache.nixos.org/nar/19yp7dj50wpycfmx44yry4zyrwbjgrzyghbram65v5wpwc0ryfpr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n05mp1zjiff9giyawicvz66xbcnj46hf-tasty-quickcheck-0.9.1-doc’...
5351 % Total % Received % Xferd Average Speed Time Time Time Current
5352 Dload Upload Total Spent Left Speed
5353 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5354 Dload Upload Total Spent Left Speed
5355100 21464 100 21464 0 0 21464 0 0:00:01 --:--:-- 0:00:01 36073
5356
5357fetching path ‘/nix/store/7b9p3y4wlpbpza20b4whi1803hms70w1-test-framework-quickcheck2-0.3.0.4-doc’...
5358
5359*** Downloading ‘https://cache.nixos.org/nar/13s93cqbxbsdaghf2x6rkhlqy9x5m1ywx9mhq6f0x0pna85vs5sv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/54lkhcwjn0aj223xk09021v6qrnxz78p-tasty-smallcheck-0.8.1-doc’...
5360 % Total % Received % Xferd Average Speed Time Time Time Current
5361 Dload Upload Total Spent Left Speed
5362100 31392 100 31392 0 0 31392 0 0:00:01 --:--:-- 0:00:01 136k
5363
5364fetching path ‘/nix/store/gxzlyaf4rr19zz7xqfwv3q705fsr83wa-testing-feat-0.4.0.3-doc’...
5365
5366*** Downloading ‘https://cache.nixos.org/nar/16zkrmzmsyyv705s1xg14va9v39ig42zp6lnra72s66aqv5s88sq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7b9p3y4wlpbpza20b4whi1803hms70w1-test-framework-quickcheck2-0.3.0.4-doc’...
5367100 30708 100 30708 0 0 30708 0 0:00:01 --:--:-- 0:00:01 158k
5368
5369 % Total % Received % Xferd Average Speed Time Time Time Current
5370 Dload Upload Total Spent Left Speed
5371 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/ylh9q3ayhj1airh6n0km3wh897dvdhyr-th-lift-0.7.8-doc’...
5372100 51920 100 51920 0 0 51920 0 0:00:01 --:--:-- 0:00:01 78786
5373100 30052 100 30052 0 0 30052 0 0:00:01 --:--:-- 0:00:01 142k
5374
5375fetching path ‘/nix/store/bhp30fgzip7cgp40ciqb41lk5f2wpaca-th-reify-many-0.1.8-doc’...
5376
5377fetching path ‘/nix/store/3aa9f11mf4j4d3cm26x4qs1irdd202id-attoparsec-0.13.2.2-doc’...
5378
5379*** Downloading ‘https://cache.nixos.org/nar/1hn25jbc84282r8d42mxk816611hqggd6gfvgid3fbh0kps38zrw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gxzlyaf4rr19zz7xqfwv3q705fsr83wa-testing-feat-0.4.0.3-doc’...
5380 % Total % Received % Xferd Average Speed Time Time Time Current
5381 Dload Upload Total Spent Left Speed
5382100 23808 100 23808 0 0 23808 0 0:00:01 --:--:-- 0:00:01 121k
5383
5384fetching path ‘/nix/store/vzk637ckn2g39annacqwky6lnc9jsd9y-time-locale-compat-0.1.1.3-doc’...
5385
5386*** Downloading ‘https://cache.nixos.org/nar/1kkm9zf7i2rrcrhvdyg1kprfxz5g0r3rk39iwjxdblbbcdzk7mxq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ylh9q3ayhj1airh6n0km3wh897dvdhyr-th-lift-0.7.8-doc’...
5387 % Total % Received % Xferd Average Speed Time Time Time Current
5388 Dload Upload Total Spent Left Speed
5389 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5390*** Downloading ‘https://cache.nixos.org/nar/10x634jfnssaflzij2qdwa46229ifwqq5i3wyc1rdm9xa8imi4cq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bhp30fgzip7cgp40ciqb41lk5f2wpaca-th-reify-many-0.1.8-doc’...
5391
5392*** Downloading ‘https://cache.nixos.org/nar/0bb1n25kn6yqajnrsxg6pj2v2ij00v7d909afngixcq5yrcf52qx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3aa9f11mf4j4d3cm26x4qs1irdd202id-attoparsec-0.13.2.2-doc’...
5393 % Total % Received % Xferd Average Speed Time Time Time Current
5394 Dload Upload Total Spent Left Speed
5395 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5396 Dload Upload Total Spent Left Speed
5397 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5398*** Downloading ‘https://cache.nixos.org/nar/03f852akpvfvnk2n6s23jfzqlz425yca1d73glbjrfy28ybj5rj1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vzk637ckn2g39annacqwky6lnc9jsd9y-time-locale-compat-0.1.1.3-doc’...
5399 % Total % Received % Xferd Average Speed Time Time Time Current
5400 Dload Upload Total Spent Left Speed
5401100 23636 100 23636 0 0 23636 0 0:00:01 --:--:-- 0:00:01 63197
5402
5403fetching path ‘/nix/store/v5csj4wpm8fzwdniix8637pyr14vyzam-unbounded-delays-0.1.1.0-doc’...
5404100 101k 100 101k 0 0 101k 0 0:00:01 --:--:-- 0:00:01 306k
5405
5406*** Downloading ‘https://cache.nixos.org/nar/1vzxsqh601kpnd4q46pfi2gk3hv235553pnc6s4hgr07yzbvb362.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v5csj4wpm8fzwdniix8637pyr14vyzam-unbounded-delays-0.1.1.0-doc’...
5407
5408fetching path ‘/nix/store/qg5zkn5741bxmsi8ca4y445xvvjkp6sx-unix-compat-0.5.0.1-doc’...
5409 % Total % Received % Xferd Average Speed Time Time Time Current
5410 Dload Upload Total Spent Left Speed
5411100 21776 100 21776 0 0 21776 0 0:00:01 --:--:-- 0:00:01 68263
5412
5413fetching path ‘/nix/store/w2mvmx7pzhdz1c2jxsgfg1vza7nm6kqv-unordered-containers-0.2.8.0-doc’...
5414
5415*** Downloading ‘https://cache.nixos.org/nar/07f9qyfhkj5d53m7b8qyns7hkimkv06rsv4qbg6z2xk67189bwvm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qg5zkn5741bxmsi8ca4y445xvvjkp6sx-unix-compat-0.5.0.1-doc’...
5416 % Total % Received % Xferd Average Speed Time Time Time Current
5417 Dload Upload Total Spent Left Speed
5418 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5419*** Downloading ‘https://cache.nixos.org/nar/08pvdd98h9gdcnnb67zbipsr5kn176cdkmni0bq6wvsqx9s1qvvg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/w2mvmx7pzhdz1c2jxsgfg1vza7nm6kqv-unordered-containers-0.2.8.0-doc’...
5420 % Total % Received % Xferd Average Speed Time Time Time Current
5421 Dload Upload Total Spent Left Speed
5422100 56916 100 56916 0 0 56916 0 0:00:01 --:--:-- 0:00:01 81658
5423
5424fetching path ‘/nix/store/iz694glpxy3da1xz5nlq9w3nyqirprdb-uuid-types-1.0.3-doc’...
5425100 29768 100 29768 0 0 29768 0 0:00:01 --:--:-- 0:00:01 43456
5426
5427fetching path ‘/nix/store/sw01j1cnbz650mdcfb40585lvh0p7x67-vector-0.12.0.1-doc’...
5428100 33228 100 33228 0 0 33228 0 0:00:01 --:--:-- 0:00:01 45831
5429
5430fetching path ‘/nix/store/x04xqckmy4k7h5dy8l9a2f222n7kfy14-void-0.7.2-doc’...
5431
5432*** Downloading ‘https://cache.nixos.org/nar/1hq423dnrnyrcrw025giwvn8srlxmdzj7scl5fd63ddix07wkw7c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/iz694glpxy3da1xz5nlq9w3nyqirprdb-uuid-types-1.0.3-doc’...
5433 % Total % Received % Xferd Average Speed Time Time Time Current
5434 Dload Upload Total Spent Left Speed
5435 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5436*** Downloading ‘https://cache.nixos.org/nar/0jhmqgxg59cn9ym7gamvxxaxmya8xln1n36sp6idbl9vj4hgyy86.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sw01j1cnbz650mdcfb40585lvh0p7x67-vector-0.12.0.1-doc’...
5437 % Total % Received % Xferd Average Speed Time Time Time Current
5438 Dload Upload Total Spent Left Speed
5439 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5440*** Downloading ‘https://cache.nixos.org/nar/0dd3wmn5aik11y0j4l6px329q228kqwkgy0v8wjqy05rfaw95mnn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x04xqckmy4k7h5dy8l9a2f222n7kfy14-void-0.7.2-doc’...
5441 % Total % Received % Xferd Average Speed Time Time Time Current
5442 Dload Upload Total Spent Left Speed
5443100 26848 100 26848 0 0 26848 0 0:00:01 --:--:-- 0:00:01 42213
5444
5445fetching path ‘/nix/store/sim2sm34p9wvikxqif8dhsya1ixsmj8h-with-location-0.1.0-doc’...
5446100 40252 100 40252 0 0 40252 0 0:00:01 --:--:-- 0:00:01 66975
5447
5448 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/lsl4wm2zhwgknrwp5pwr2xd26c4vmn3f-xml-1.3.14-doc’...
5449100 498k 100 498k 0 0 498k 0 0:00:01 0:00:01 --:--:-- 274k
5450
5451
5452*** Downloading ‘https://cache.nixos.org/nar/0ib5wvq2p88jhp9456ml4gnp5nv7jnn575ycspsm37dlicvm7q6r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sim2sm34p9wvikxqif8dhsya1ixsmj8h-with-location-0.1.0-doc’...
5453fetching path ‘/nix/store/jr0qa1fhfmxgb7qjfk339s973xna01k2-zlib-0.6.1.2-doc’...
5454100 67232 100 67232 0 0 67232 0 0:00:01 --:--:-- 0:00:01 113k
5455
5456 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5457 Dload Upload Total Spent Left Speed
5458 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/45g5xr9gbfpxpd5falrr1g0cp51rn9p1-bytes-0.15.3-doc’...
5459
5460*** Downloading ‘https://cache.nixos.org/nar/1msm2kgf7v94c3rzijl9xb0ahnzh1d49nbh8mpsnwvskrp0igzi1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lsl4wm2zhwgknrwp5pwr2xd26c4vmn3f-xml-1.3.14-doc’...
5461 % Total % Received % Xferd Average Speed Time Time Time Current
5462 Dload Upload Total Spent Left Speed
5463 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5464*** Downloading ‘https://cache.nixos.org/nar/11ppfnck56zxa9jnsd13nl2l1a7818iw5mi45f46l6xhia0lapks.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jr0qa1fhfmxgb7qjfk339s973xna01k2-zlib-0.6.1.2-doc’...
5465
5466*** Downloading ‘https://cache.nixos.org/nar/09rd77cfqwfwj5n1ychxmrls9p88qzlik4ydki28pqqxihgfi4ls.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/45g5xr9gbfpxpd5falrr1g0cp51rn9p1-bytes-0.15.3-doc’...
5467 % Total % Received % Xferd Average Speed Time Time Time Current
5468 Dload Upload Total Spent Left Speed
5469 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5470 Dload Upload Total Spent Left Speed
5471100 35252 100 35252 0 0 35252 0 0:00:01 --:--:-- 0:00:01 55340
5472
5473fetching path ‘/nix/store/sgpbj6mnc4gviz9b57kj8ig3026f3pm5-charset-0.3.7.1-doc’...
5474100 21312 100 21312 0 0 21312 0 0:00:01 --:--:-- 0:00:01 33509
5475
5476*** Downloading ‘https://cache.nixos.org/nar/10am0arln4nygx3hmm4awm3am0nbiglbr18bm43wism3363awss3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sgpbj6mnc4gviz9b57kj8ig3026f3pm5-charset-0.3.7.1-doc’...
5477
5478fetching path ‘/nix/store/v62f3iyr9azby99m1b1r5q5j13js3hx4-semigroupoids-5.2.1-doc’...
5479 % Total % Received % Xferd Average Speed Time Time Time Current
5480 Dload Upload Total Spent Left Speed
5481100 256k 100 256k 0 0 256k 0 0:00:01 --:--:-- 0:00:01 365k
5482
5483fetching path ‘/nix/store/923mjp765cndd123zvwg1c22kk9d6wnh-FontyFruity-0.5.3.3-doc’...
5484
5485*** Downloading ‘https://cache.nixos.org/nar/1iky0v2znfzhi5ai26y2pjjd0klbgic3w73dsz47aff9qi28bnzk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v62f3iyr9azby99m1b1r5q5j13js3hx4-semigroupoids-5.2.1-doc’...
5486 % Total % Received % Xferd Average Speed Time Time Time Current
5487 Dload Upload Total Spent Left Speed
5488100 69124 100 69124 0 0 69124 0 0:00:01 --:--:-- 0:00:01 204k
5489
5490fetching path ‘/nix/store/yhhx4c3312d34mh8qh0afbj31n7l75k3-aeson-1.2.4.0-doc’...
5491100 21308 100 21308 0 0 21308 0 0:00:01 --:--:-- 0:00:01 38601
5492
5493fetching path ‘/nix/store/23ic3ndnash0kyyv4jvm4q6ycn83yghg-hmatrix-0.18.2.0-doc’...
5494
5495*** Downloading ‘https://cache.nixos.org/nar/13gmm32487snjjibrpjxkh7p0j10wnaml4djwqy87zx8bzrs5fzs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/923mjp765cndd123zvwg1c22kk9d6wnh-FontyFruity-0.5.3.3-doc’...
5496 % Total % Received % Xferd Average Speed Time Time Time Current
5497 Dload Upload Total Spent Left Speed
5498 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5499*** Downloading ‘https://cache.nixos.org/nar/1pbsknrrca7cjk21hbiv9hp71skr0wvzndlvgn9shka743xrfh7c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/yhhx4c3312d34mh8qh0afbj31n7l75k3-aeson-1.2.4.0-doc’...
5500
5501*** Downloading ‘https://cache.nixos.org/nar/19cacy3ydyzsiqpa51hbybakgj0yynpmf5wy2l02nx2hgzimghlq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/23ic3ndnash0kyyv4jvm4q6ycn83yghg-hmatrix-0.18.2.0-doc’...
5502 % Total % Received % Xferd Average Speed Time Time Time Current
5503 Dload Upload Total Spent Left Speed
5504 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5505 Dload Upload Total Spent Left Speed
5506100 56024 100 56024 0 0 56024 0 0:00:01 --:--:-- 0:00:01 93685
5507
5508fetching path ‘/nix/store/6jppbbdfxjbv5ys0vwgl9kw0j5pdq5bs-math-functions-0.2.1.0-doc’...
5509100 60784 100 60784 0 0 60784 0 0:00:01 --:--:-- 0:00:01 99158
5510
5511fetching path ‘/nix/store/algnyvwiav4capp2w80xsfg5fscdmf09-mwc-random-0.13.6.0-doc’...
5512
5513*** Downloading ‘https://cache.nixos.org/nar/1r3r5cf5il8d0r67v7ncs37h4j36wdyv6pagkzrd5mfraw274ml5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6jppbbdfxjbv5ys0vwgl9kw0j5pdq5bs-math-functions-0.2.1.0-doc’...
5514 % Total % Received % Xferd Average Speed Time Time Time Current
5515 Dload Upload Total Spent Left Speed
5516100 54596 100 54596 0 0 54596 0 0:00:01 --:--:-- 0:00:01 105k
5517
5518fetching path ‘/nix/store/1mx9637d8iykb5rvivmzzzb057shn0vl-quickcheck-instances-0.3.16.1-doc’...
5519 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5520*** Downloading ‘https://cache.nixos.org/nar/1xwsvmfylr98q7azih7pb8zf8mmm1nf51vi01h3cysrwnc6nr2rf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/algnyvwiav4capp2w80xsfg5fscdmf09-mwc-random-0.13.6.0-doc’...
5521 0 97564 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5522 Dload Upload Total Spent Left Speed
5523100 223k 100 223k 0 0 223k 0 0:00:01 --:--:-- 0:00:01 686k
5524
5525fetching path ‘/nix/store/9lcxi38i6fry60y3zn1sph5vybw7csih-parsers-0.12.8-doc’...
5526
5527*** Downloading ‘https://cache.nixos.org/nar/16w5plvprrxv6q6kxdn1c0lcdicrqgf9379abd53cqylpgiwsz7r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1mx9637d8iykb5rvivmzzzb057shn0vl-quickcheck-instances-0.3.16.1-doc’...
5528 % Total % Received % Xferd Average Speed Time Time Time Current
5529 Dload Upload Total Spent Left Speed
5530 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5531*** Downloading ‘https://cache.nixos.org/nar/1s8w0prb046ggwqzjg123z1g42zdvijjhahq8r876l90hmam89kk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9lcxi38i6fry60y3zn1sph5vybw7csih-parsers-0.12.8-doc’...
5532 % Total % Received % Xferd Average Speed Time Time Time Current
5533 Dload Upload Total Spent Left Speed
5534100 97564 100 97564 0 0 97564 0 0:00:01 --:--:-- 0:00:01 130k
5535
5536 0 74564 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/4g29hjxvhlnrk53dlp4lwfm1791n0in0-th-lift-instances-0.1.11-doc’...
5537100 35648 100 35648 0 0 35648 0 0:00:01 --:--:-- 0:00:01 148k
5538
5539fetching path ‘/nix/store/j5bms78jr9x2k7h72sz9wc7352v1g4n6-free-4.12.4-doc’...
5540 0 227k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5541*** Downloading ‘https://cache.nixos.org/nar/0izx6qxrgbbi6j88a9czhxdvqyqi4jw2j84bfc460bakslgzi8a4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4g29hjxvhlnrk53dlp4lwfm1791n0in0-th-lift-instances-0.1.11-doc’...
5542 % Total % Received % Xferd Average Speed Time Time Time Current
5543 Dload Upload Total Spent Left Speed
5544 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5545*** Downloading ‘https://cache.nixos.org/nar/1291wpd4jjpcwyny8riraaw3hb7k4pvjj1v4ymk17rwcwqkdd9sd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j5bms78jr9x2k7h72sz9wc7352v1g4n6-free-4.12.4-doc’...
5546 % Total % Received % Xferd Average Speed Time Time Time Current
5547 Dload Upload Total Spent Left Speed
5548100 76192 100 76192 0 0 76192 0 0:00:01 --:--:-- 0:00:01 107k
5549
5550fetching path ‘/nix/store/jvmad5rbf1a6rsnv8h9hjz82w78d93c4-monoid-extras-0.4.2-doc’...
5551100 54676 100 54676 0 0 54676 0 0:00:01 --:--:-- 0:00:01 86375
5552
5553fetching path ‘/nix/store/yfvpmnzj42jn0i8fxi66bk36xyf369x3-vector-algorithms-0.7.0.1-doc’...
5554100 23340 100 23340 0 0 23340 0 0:00:01 --:--:-- 0:00:01 73860
5555
5556fetching path ‘/nix/store/3ad3hps5zwpgsj8mpkjlwsvg8kqqyhyn-monad-par-0.3.4.8-doc’...
5557
5558*** Downloading ‘https://cache.nixos.org/nar/0fsdl32ibpr7v8n2b6xib3cvrfsr2wfnqn033y9qfmhfwnvarn9z.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jvmad5rbf1a6rsnv8h9hjz82w78d93c4-monoid-extras-0.4.2-doc’...
5559 % Total % Received % Xferd Average Speed Time Time Time Current
5560 Dload Upload Total Spent Left Speed
5561 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5562*** Downloading ‘https://cache.nixos.org/nar/092cxpk99q6qqbkkv4jgcbnvx49hliff8qhv1wnyl0lb0jnnff9b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/yfvpmnzj42jn0i8fxi66bk36xyf369x3-vector-algorithms-0.7.0.1-doc’...
5563 % Total % Received % Xferd Average Speed Time Time Time Current
5564 Dload Upload Total Spent Left Speed
5565100 74564 100 74564 0 0 74564 0 0:00:01 0:00:01 --:--:-- 62448
5566
5567fetching path ‘/nix/store/4n3aj2s0688laavs5zcflcf64wff92xa-th-orphans-0.13.5-doc’...
5568
5569*** Downloading ‘https://cache.nixos.org/nar/1lx7gsl1kpclks835h57lpwgn47fv6qji901q8zjw9yz5n18slc4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3ad3hps5zwpgsj8mpkjlwsvg8kqqyhyn-monad-par-0.3.4.8-doc’...
5570 % Total % Received % Xferd Average Speed Time Time Time Current
5571 Dload Upload Total Spent Left Speed
5572 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5573*** Downloading ‘https://cache.nixos.org/nar/1cgl7i5ar6an4j530b45kc481ald5cja8fcnzklfg0gszkbsyzm6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4n3aj2s0688laavs5zcflcf64wff92xa-th-orphans-0.13.5-doc’...
5574 % Total % Received % Xferd Average Speed Time Time Time Current
5575 Dload Upload Total Spent Left Speed
5576100 227k 100 227k 0 0 227k 0 0:00:01 0:00:01 --:--:-- 167k
5577 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5578fetching path ‘/nix/store/z8zia1w5j17yz54qxgvhrx32a3m96020-vector-binary-instances-0.2.4-doc’...
5579100 128k 100 128k 0 0 128k 0 0:00:01 --:--:-- 0:00:01 186k
5580
5581fetching path ‘/nix/store/n9hrl7vlw7d70cbfd4lplw25qn5gy48g-vector-th-unbox-0.2.1.6-doc’...
5582100 84924 100 84924 0 0 84924 0 0:00:01 --:--:-- 0:00:01 88004
5583
5584fetching path ‘/nix/store/gw50gw12b9rmqyfa6y1kmqkgmkcfjw6c-Rasterific-0.7.2.1-doc’...
5585
5586*** Downloading ‘https://cache.nixos.org/nar/157fnfdqw47phy1dvq6lkp05khjihgv6jjr9vd7l8asd2yq6igyn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/z8zia1w5j17yz54qxgvhrx32a3m96020-vector-binary-instances-0.2.4-doc’...
5587 % Total % Received % Xferd Average Speed Time Time Time Current
5588 Dload Upload Total Spent Left Speed
5589 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5590*** Downloading ‘https://cache.nixos.org/nar/1qbq7nvj77pddj4m5ygzmpyhvlqixxn858zkhpq1k6958azn29nv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n9hrl7vlw7d70cbfd4lplw25qn5gy48g-vector-th-unbox-0.2.1.6-doc’...
5591 % Total % Received % Xferd Average Speed Time Time Time Current
5592 Dload Upload Total Spent Left Speed
5593 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5594*** Downloading ‘https://cache.nixos.org/nar/1wavgb1v3jgfvwsmy0z6bwx0hb9dziidhcza0n0ksm8a2ni8iq3r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gw50gw12b9rmqyfa6y1kmqkgmkcfjw6c-Rasterific-0.7.2.1-doc’...
5595 % Total % Received % Xferd Average Speed Time Time Time Current
5596 Dload Upload Total Spent Left Speed
5597100 55712 100 55712 0 0 55712 0 0:00:01 --:--:-- 0:00:01 98k
5598
5599fetching path ‘/nix/store/kmmb7810qq0gvyv31d5rf9nan6bkzhqs-ad-4.3.5-doc’...
5600100 58516 100 58516 0 0 58516 0 0:00:01 --:--:-- 0:00:01 98346
5601
5602fetching path ‘/nix/store/rkmsqilykp1acpsqw0iijv5rpnjn0zj2-adjunctions-4.3-doc’...
5603
5604*** Downloading ‘https://cache.nixos.org/nar/0bbgh37kbl6g8b459v5svmm0dx5mx5d86w44m60yhywrdk2bcyng.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kmmb7810qq0gvyv31d5rf9nan6bkzhqs-ad-4.3.5-doc’...
5605 % Total % Received % Xferd Average Speed Time Time Time Current
5606 Dload Upload Total Spent Left Speed
5607100 63884 100 63884 0 0 63884 0 0:00:01 --:--:-- 0:00:01 98k
5608100 30208 100 30208 0 0 30208 0 0:00:01 --:--:-- 0:00:01 53276
5609
5610
5611fetching path ‘/nix/store/ysvzxsxz657rhgb5n4flfn2mn6nlj907-dual-tree-0.2.1-doc’...
5612fetching path ‘/nix/store/hj9wkhkhdsiic991pqz21mcyz770r3lk-inline-c-0.6.0.5-doc’...
5613
5614*** Downloading ‘https://cache.nixos.org/nar/011xzrssis9z017dq521r6w0lj1vsq8xb03xx49bpb4h3d5xj04g.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rkmsqilykp1acpsqw0iijv5rpnjn0zj2-adjunctions-4.3-doc’...
5615 % Total % Received % Xferd Average Speed Time Time Time Current
5616 Dload Upload Total Spent Left Speed
5617 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5618*** Downloading ‘https://cache.nixos.org/nar/15p3ahmjr93rckyg18fws8nmwk8dhd0y8cyr5ky5p5c705bv5dcj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ysvzxsxz657rhgb5n4flfn2mn6nlj907-dual-tree-0.2.1-doc’...
5619
5620*** Downloading ‘https://cache.nixos.org/nar/19hk3jq4jm18nycas22rzvm4vpiasb7clbigygd4hq17zrcwfgnj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hj9wkhkhdsiic991pqz21mcyz770r3lk-inline-c-0.6.0.5-doc’...
5621 % Total % Received % Xferd Average Speed Time Time Time Current
5622 Dload Upload Total Spent Left Speed
5623 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5624 Dload Upload Total Spent Left Speed
5625100 25680 100 25680 0 0 25680 0 0:00:01 --:--:-- 0:00:01 44123
5626
5627fetching path ‘/nix/store/8w6rgwapdyjknzd1l40r057p4c6g1kax-statistics-0.14.0.2-doc’...
5628100 23240 100 23240 0 0 23240 0 0:00:01 --:--:-- 0:00:01 33200
5629 97 89.9M 97 87.7M 0 0 6914k 0 0:00:13 0:00:13 --:--:-- 7121k
5630 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5631*** Downloading ‘https://cache.nixos.org/nar/14abs0rbgwzpghwinpbizs5vidhksk6r82c6khpkzw6167i62iib.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8w6rgwapdyjknzd1l40r057p4c6g1kax-statistics-0.14.0.2-doc’...
5632 0 909k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5633 Dload Upload Total Spent Left Speed
5634100 36720 100 36720 0 0 36720 0 0:00:01 --:--:-- 0:00:01 66642
5635
5636100 89.9M 100 89.9M 0 0 7087k 0 0:00:13 0:00:13 --:--:-- 7050k
5637
5638fetching path ‘/nix/store/g38w08knz0zccczxq9prxij7nwp3d1c7-abstract-par-0.3.3’...
5639fetching path ‘/nix/store/rk0qcssw6awg0hmy8dp8clmhlf45s97g-base16-bytestring-0.1.1.6’...
5640fetching path ‘/nix/store/7yf80xy577ppyr7j6rg7r0dr6d62lckc-cabal-doctest-1.0.6’...
5641100 909k 100 909k 0 0 909k 0 0:00:01 0:00:01 --:--:-- 473k
5642
5643100 159k 100 159k 0 0 159k 0 0:00:01 0:00:01 --:--:-- 139k
5644
5645100 64140 100 64140 0 0 64140 0 0:00:01 --:--:-- 0:00:01 72969
5646
5647100 95732 100 95732 0 0 95732 0 0:00:01 0:00:01 --:--:-- 95445
5648
5649100 218k 100 218k 0 0 218k 0 0:00:01 0:00:01 --:--:-- 171k
5650
5651fetching path ‘/nix/store/qjkqggryhn760rj15fklwwky1n1s0jzk-clock-0.7.2’...
5652fetching path ‘/nix/store/sg6j1crmzxcl3cg723mp3xxn1svmlmyl-code-page-0.1.3’...
5653fetching path ‘/nix/store/4q04iyqk9sici7kdv3lzfnkd7hhr3p16-colour-2.3.4’...
5654fetching path ‘/nix/store/wrlw4shba30p1zajm3pxv1q4g2vpw8lw-data-default-class-0.1.2.0’...
5655fetching path ‘/nix/store/mhmhlkljvg7zc2d8pxsq0va596lagiag-data-reify-0.6.1’...
5656
5657*** Downloading ‘https://cache.nixos.org/nar/1wrpblw01jpj9xx53rnxdhn5vhhdyc96r5dyl62b71id2c8y2ky8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/g38w08knz0zccczxq9prxij7nwp3d1c7-abstract-par-0.3.3’...
5658 % Total % Received % Xferd Average Speed Time Time Time Current
5659 Dload Upload Total Spent Left Speed
5660 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5661*** Downloading ‘https://cache.nixos.org/nar/0sv5vb4fg603fqisi7k1xpjkvrvniy1qasxmq7sjq1zp30p06c77.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rk0qcssw6awg0hmy8dp8clmhlf45s97g-base16-bytestring-0.1.1.6’...
5662 % Total % Received % Xferd Average Speed Time Time Time Current
5663 Dload Upload Total Spent Left Speed
5664 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5665*** Downloading ‘https://cache.nixos.org/nar/0qxzawlgyfih2d87bmr2nsciszkvzp2zsczqchgry8s63si8wm0q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7yf80xy577ppyr7j6rg7r0dr6d62lckc-cabal-doctest-1.0.6’...
5666 % Total % Received % Xferd Average Speed Time Time Time Current
5667 Dload Upload Total Spent Left Speed
5668 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5669*** Downloading ‘https://cache.nixos.org/nar/0dac2lpmzri7y3a80w6zq96zp49x800qainwm58dwv9i9h3njzmv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qjkqggryhn760rj15fklwwky1n1s0jzk-clock-0.7.2’...
5670
5671*** Downloading ‘https://cache.nixos.org/nar/1h9rb70kv870g94q3xchq1vrj1w61shwdld7g8957jvks99hwnc1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wrlw4shba30p1zajm3pxv1q4g2vpw8lw-data-default-class-0.1.2.0’...
5672
5673*** Downloading ‘https://cache.nixos.org/nar/0fx5j5iywni8dcd5xpfjrj32fpvx9q20a6g3wwmb090x0jxpjaw3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4q04iyqk9sici7kdv3lzfnkd7hhr3p16-colour-2.3.4’...
5674
5675*** Downloading ‘https://cache.nixos.org/nar/0nl65a9gsq24jlndqssas9j08y1m75r1968jx8cj4k0awnia3wm2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sg6j1crmzxcl3cg723mp3xxn1svmlmyl-code-page-0.1.3’...
5676
5677*** Downloading ‘https://cache.nixos.org/nar/043ajwnqcyis3ij4pp7rdyf2vxwhvwmln25fswq0kwk35z5ximjm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mhmhlkljvg7zc2d8pxsq0va596lagiag-data-reify-0.6.1’...
5678 % Total % Received % Xferd Average Speed Time Time Time Current
5679 Dload Upload Total Spent Left Speed
5680 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5681 Dload Upload Total Spent Left Speed
5682 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5683 Dload Upload Total Spent Left Speed
5684 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5685 Dload Upload Total Spent Left Speed
5686 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5687 Dload Upload Total Spent Left Speed
5688100 13212 100 13212 0 0 13212 0 0:00:01 --:--:-- 0:00:01 23467
5689
5690fetching path ‘/nix/store/x64qr54h0r5gcfa8bk510kl9n85msmdi-diagrams-solve-0.1.1’...
5691100 52868 100 52868 0 0 52868 0 0:00:01 --:--:-- 0:00:01 90372
5692100 11656 100 11656 0 0 11656 0 0:00:01 --:--:-- 0:00:01 19890
5693
5694fetching path ‘/nix/store/90pphnzk9ylyx3cia0pbyw2cf6hy2jqj-dlist-0.8.0.4’...
5695
5696fetching path ‘/nix/store/lyvdwbcqdpd07y5d2lgsyghqlwq44fd0-erf-2.0.0.0’...
5697
5698*** Downloading ‘https://cache.nixos.org/nar/0prmmby0f2sw5q7mcj3mzr3hs2gb9vclk29z3n8hz2309gzqm1d0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x64qr54h0r5gcfa8bk510kl9n85msmdi-diagrams-solve-0.1.1’...
5699100 5404 100 5404 0 0 5404 0 0:00:01 --:--:-- 0:00:01 10616
5700
5701 % Total % Received % Xferd Average Speed Time Time Time Current
5702 Dload Upload Total Spent Left Speed
5703 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/5fbcj81hj5z6awx6pc1w9majbwi2v3pk-extensible-exceptions-0.1.1.4’...
5704100 13024 100 13024 0 0 13024 0 0:00:01 --:--:-- 0:00:01 24253
5705
5706*** Downloading ‘https://cache.nixos.org/nar/0lfvhhfyg6vf5jh0qhfqrx28s9j6hjggr8k9wj3xh7kdp87gdxp8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/90pphnzk9ylyx3cia0pbyw2cf6hy2jqj-dlist-0.8.0.4’...
5707
5708fetching path ‘/nix/store/9g30da7z3r2i5p3fpawsxsj2wxwn4awb-file-embed-0.0.10.1’...
5709 % Total % Received % Xferd Average Speed Time Time Time Current
5710
5711*** Downloading ‘https://cache.nixos.org/nar/03sc91l2xswk9l049k52sqrvq1jfsxvy49pgzcba94cd48ab6cay.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lyvdwbcqdpd07y5d2lgsyghqlwq44fd0-erf-2.0.0.0’...
5712Dload Upload Total Spent Left Speed
5713 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5714 Dload Upload Total Spent Left Speed
5715100 55984 100 55984 0 0 55984 0 0:00:01 --:--:-- 0:00:01 96192
5716
5717fetching path ‘/nix/store/hnhyvj54850179mzrkgycc5y22wqdl19-data-default-instances-containers-0.0.1’...
5718100 241k 100 241k 0 0 241k 0 0:00:01 --:--:-- 0:00:01 394k
5719
5720fetching path ‘/nix/store/53nrnfkl4vq679dk4m91wy0fwy8rivsd-ghc-paths-0.1.0.9’...
5721
5722*** Downloading ‘https://cache.nixos.org/nar/1csv0153hbqqfyfizhnpnxjjwz857qjj0qr4vjlsmf2ayc01jzlr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5fbcj81hj5z6awx6pc1w9majbwi2v3pk-extensible-exceptions-0.1.1.4’...
5723 % Total % Received % Xferd Average Speed Time Time Time Current
5724 Dload Upload Total Spent Left Speed
5725100 17784 100 17784 0 0 17784 0 0:00:01 --:--:-- 0:00:01 26986
5726
5727*** Downloading ‘https://cache.nixos.org/nar/0mnr9sw361dp91i4psrn95w2cbal60igps5yfmsjgl4h55brgww3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9g30da7z3r2i5p3fpawsxsj2wxwn4awb-file-embed-0.0.10.1’...
5728
5729fetching path ‘/nix/store/2vvv5qcbw4rzd3hmxbbvimfcdfy7inbg-ansi-terminal-0.7.1.1’...
5730 % Total % Received % Xferd Average Speed Time Time Time Current
5731 Dload Upload Total Spent Left Speed
5732 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5733*** Downloading ‘https://cache.nixos.org/nar/085jvfldgcjdf41xk46qcxxq9cpad7qjhl43iq5ik6x97s4h7bcq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hnhyvj54850179mzrkgycc5y22wqdl19-data-default-instances-containers-0.0.1’...
5734 % Total % Received % Xferd Average Speed Time Time Time Current
5735 Dload Upload Total Spent Left Speed
5736 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5737*** Downloading ‘https://cache.nixos.org/nar/0whmr6fzialwbgrsp7nqavpmqggaca4nir7ziqw69lm7y94mps8q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/53nrnfkl4vq679dk4m91wy0fwy8rivsd-ghc-paths-0.1.0.9’...
5738 % Total % Received % Xferd Average Speed Time Time Time Current
5739 Dload Upload Total Spent Left Speed
5740 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5741*** Downloading ‘https://cache.nixos.org/nar/189czm7cq5yf62n30zzfg4mcp7b5bdx94pv7lh4c91k73is4jwq0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2vvv5qcbw4rzd3hmxbbvimfcdfy7inbg-ansi-terminal-0.7.1.1’...
5742 % Total % Received % Xferd Average Speed Time Time Time Current
5743 Dload Upload Total Spent Left Speed
5744100 35992 100 35992 0 0 35992 0 0:00:01 --:--:-- 0:00:01 60288
5745
5746fetching path ‘/nix/store/wd0yland739r4dk2k8xb09752rdyai1g-groups-0.4.1.0’...
5747100 75432 100 75432 0 0 75432 0 0:00:01 --:--:-- 0:00:01 111k
5748
5749100 3836 100 3836 0 0 3836 0 0:00:01 --:--:-- 0:00:01 7196
5750fetching path ‘/nix/store/a3s8p62kngaw74myxggzazjy55v3ap9p-data-default-instances-dlist-0.0.1’...
5751
5752 19 37000 19 7315 0 0 7315 0 0:00:05 --:--:-- 0:00:05 14067fetching path ‘/nix/store/yivs33zpp2w4q0zgvx42nvz86gh3n9ph-haskell-lexer-1.0.1’...
5753100 37000 100 37000 0 0 37000 0 0:00:01 --:--:-- 0:00:01 68518
5754100 17820 100 17820 0 0 17820 0 0:00:01 --:--:-- 0:00:01 27206
5755
5756fetching path ‘/nix/store/npzkk2gx6ph7zrlm3pd6v1wm0cnplbmb-hostname-1.0’...
5757
5758100 4672 100 4672 0 0 4672 0 0:00:01 --:--:-- 0:00:01 8933
5759fetching path ‘/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2’...
5760
5761fetching path ‘/nix/store/p52jnp7kl2y0bdjiagwfwri8wyj0z6zi-ieee754-0.8.0’...
5762100 7308 100 7308 0 0 7308 0 0:00:01 --:--:-- 0:00:01 14442
5763
5764fetching path ‘/nix/store/46k9l8xpfm53l048iwhmgz67v3cp2qd5-integer-logarithms-1.0.2’...
5765
5766*** Downloading ‘https://cache.nixos.org/nar/0k25x06xqw2fjky74rcyljdb19xqiw5znd60bfai58ll52qzh3cc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wd0yland739r4dk2k8xb09752rdyai1g-groups-0.4.1.0’...
5767 0 163k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5768 Dload Upload Total Spent Left Speed
5769 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5770*** Downloading ‘https://cache.nixos.org/nar/176hvy5lhyv9r5vvaiaa57ghaz7q3iwa1gdayfaxsz94d3bbjyfx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/yivs33zpp2w4q0zgvx42nvz86gh3n9ph-haskell-lexer-1.0.1’...
5771
5772*** Downloading ‘https://cache.nixos.org/nar/1y0n250i77swmnsby49mmfkbr4x5krf081yngbgf9h3rqk4qdxva.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a3s8p62kngaw74myxggzazjy55v3ap9p-data-default-instances-dlist-0.0.1’...
5773 % Total % Received % Xferd Average Speed Time Time Time Current
5774 Dload Upload Total Spent Left Speed
5775 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5776 Dload Upload Total Spent Left Speed
5777 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5778*** Downloading ‘https://cache.nixos.org/nar/0nvh4rpmc15v3119b70vb9ys6kh5ll11fmp5rd22jq70qc6hyrrp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/npzkk2gx6ph7zrlm3pd6v1wm0cnplbmb-hostname-1.0’...
5779
5780*** Downloading ‘https://cache.nixos.org/nar/07bz3x5xd6bzgama7jkdq8w69vz8dw33msf0h57n5r4wr956ydzd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2’...
5781
5782*** Downloading ‘https://cache.nixos.org/nar/0lrwb18r4c3gm72gwjfk8yhbr9a0iv8l42578yxg0fg242jr2wad.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/p52jnp7kl2y0bdjiagwfwri8wyj0z6zi-ieee754-0.8.0’...
5783 % Total % Received % Xferd Average Speed Time Time Time Current
5784 Dload Upload Total Spent Left Speed
5785 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5786 Dload Upload Total Spent Left Speed
5787 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5788 Dload Upload Total Spent Left Speed
5789 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5790*** Downloading ‘https://cache.nixos.org/nar/1b4x3yykmyimxqr9yllnwxj7z2bycrs84r64gj19wq63a6ih78yp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/46k9l8xpfm53l048iwhmgz67v3cp2qd5-integer-logarithms-1.0.2’...
5791 % Total % Received % Xferd Average Speed Time Time Time Current
5792 Dload Upload Total Spent Left Speed
5793100 163k 100 163k 0 0 163k 0 0:00:01 --:--:-- 0:00:01 252k
5794
5795fetching path ‘/nix/store/2lmn1r6mwb794w7pamcgzp72dqlzmd38-kan-extensions-5.0.2-doc’...
5796
5797*** Downloading ‘https://cache.nixos.org/nar/1g26ap3hc9zprd9cjfad6bx2l258wkq6vmd90w6klcrwc4bj98wi.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2lmn1r6mwb794w7pamcgzp72dqlzmd38-kan-extensions-5.0.2-doc’...
5798 % Total % Received % Xferd Average Speed Time Time Time Current
5799 Dload Upload Total Spent Left Speed
5800100 3620 100 3620 0 0 3620 0 0:00:01 --:--:-- 0:00:01 15020
5801
5802fetching path ‘/nix/store/kx7ndw3vlb95a8hw2d2c29dxqdq0lb1p-ansi-wl-pprint-0.6.8.2’...
5803
5804*** Downloading ‘https://cache.nixos.org/nar/1apyi88q7rknfw1cia8bmjzpjlzb6y89vvi51h7271ivxzp0gzy5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kx7ndw3vlb95a8hw2d2c29dxqdq0lb1p-ansi-wl-pprint-0.6.8.2’...
5805 % Total % Received % Xferd Average Speed Time Time Time Current
5806 Dload Upload Total Spent Left Speed
5807100 5268 100 5268 0 0 5268 0 0:00:01 --:--:-- 0:00:01 10329
5808
5809fetching path ‘/nix/store/y0cwc3kgz8si3196n7ld34s2xc9d4dr1-mtl-2.2.2’...
5810100 21832 100 21832 0 0 21832 0 0:00:01 --:--:-- 0:00:01 34435
5811
5812fetching path ‘/nix/store/jh5fhairlb4zvy2ldvgp8glpvf6p9cnd-nanospec-0.2.2’...
5813100 73700 100 73700 0 0 73700 0 0:00:01 --:--:-- 0:00:01 128k
5814
5815100 38084 100 38084 0 0 38084 0 0:00:01 --:--:-- 0:00:01 69117
5816fetching path ‘/nix/store/3m5r0586m3ds2x0r7gw8dk6lbkrcfixv-numeric-extras-0.1’...
5817
5818fetching path ‘/nix/store/56f5701vqzrgs4qy6q1c7fn5flsm5vqz-old-locale-1.0.0.7’...
5819100 73532 100 73532 0 0 73532 0 0:00:01 --:--:-- 0:00:01 118k
5820
5821fetching path ‘/nix/store/cx804c6xk5lcgidaf33hw4g314lqslvi-parallel-3.2.1.1’...
5822
5823*** Downloading ‘https://cache.nixos.org/nar/0cmf2f8irrc2n4pwxibg9x0x279fwfncbxvrcsiz6rp1qx0kvw75.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/y0cwc3kgz8si3196n7ld34s2xc9d4dr1-mtl-2.2.2’...
5824 % Total % Received % Xferd Average Speed Time Time Time Current
5825 Dload Upload Total Spent Left Speed
5826 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5827*** Downloading ‘https://cache.nixos.org/nar/141b191y818b6lxlk2c49fyagwxqg01yb6xjxwd4j6p7ihb620r4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jh5fhairlb4zvy2ldvgp8glpvf6p9cnd-nanospec-0.2.2’...
5828100 868k 100 868k 0 0 868k 0 0:00:01 --:--:-- 0:00:01 1178k
5829 % Total % Received % Xferd Average Speed Time Time Time Current
5830 Dload Upload Total Spent Left Speed
5831 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5832fetching path ‘/nix/store/ql32cahr3bwsqyj8xms3kzv7h5ls0z5h-pcre-light-0.4.0.4’...
5833
5834*** Downloading ‘https://cache.nixos.org/nar/0v11hm3akbwy89l60d8lz8grhgzrzw3gs5qbvlhzm5fg098vxfyb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3m5r0586m3ds2x0r7gw8dk6lbkrcfixv-numeric-extras-0.1’...
5835 % Total % Received % Xferd Average Speed Time Time Time Current
5836 Dload Upload Total Spent Left Speed
5837 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5838*** Downloading ‘https://cache.nixos.org/nar/0hgv5s60psjq0dsbcvfrrivld0h6ghfixxm791hjrb5mjzl8jp1p.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/56f5701vqzrgs4qy6q1c7fn5flsm5vqz-old-locale-1.0.0.7’...
5839 % Total % Received % Xferd Average Speed Time Time Time Current
5840 Dload Upload Total Spent Left Speed
5841 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5842*** Downloading ‘https://cache.nixos.org/nar/1b75vbkwh2f0v3jlh5hxkrwj4rrg3ax686axbzah7wyj1z3x9qpc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cx804c6xk5lcgidaf33hw4g314lqslvi-parallel-3.2.1.1’...
5843 % Total % Received % Xferd Average Speed Time Time Time Current
5844 Dload Upload Total Spent Left Speed
5845 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5846*** Downloading ‘https://cache.nixos.org/nar/12dwdy52lxb8fgxdhhgy6nlj67715b5pd9zfbbyww46m9svc39nc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ql32cahr3bwsqyj8xms3kzv7h5ls0z5h-pcre-light-0.4.0.4’...
5847 % Total % Received % Xferd Average Speed Time Time Time Current
5848 Dload Upload Total Spent Left Speed
5849100 74944 100 74944 0 0 74944 0 0:00:01 --:--:-- 0:00:01 84396
5850
5851fetching path ‘/nix/store/k87y3v0xx5ml0k01i4bgzvwdinv2q4ls-prelude-extras-0.4.0.3’...
5852100 48040 100 48040 0 0 48040 0 0:00:01 --:--:-- 0:00:01 176k
5853
5854fetching path ‘/nix/store/adzi5c38q4s4j8k8mxfhm5hbnd3ivl5m-lens-4.15.4-doc’...
5855
5856*** Downloading ‘https://cache.nixos.org/nar/0asawfd1aqd7acnvxvsq5qypz9fn24j0pk5qwjzib56cdjdynhzc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k87y3v0xx5ml0k01i4bgzvwdinv2q4ls-prelude-extras-0.4.0.3’...
5857 % Total % Received % Xferd Average Speed Time Time Time Current
5858 Dload Upload Total Spent Left Speed
5859 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5860*** Downloading ‘https://cache.nixos.org/nar/0mjkvsv04r0ii6bg8j7335fpccaxwrdbl25rsyfnhb1yq1dp1zap.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/adzi5c38q4s4j8k8mxfhm5hbnd3ivl5m-lens-4.15.4-doc’...
5861 % Total % Received % Xferd Average Speed Time Time Time Current
5862 Dload Upload Total Spent Left Speed
5863100 96904 100 96904 0 0 96904 0 0:00:01 --:--:-- 0:00:01 159k
5864
5865fetching path ‘/nix/store/gfpp2syvsmd6bawb4h8nxrmf62vkmfsy-pretty-show-1.6.16’...
5866100 31612 100 31612 0 0 31612 0 0:00:01 --:--:-- 0:00:01 56450
5867
5868fetching path ‘/nix/store/jyqzifngpd3sb2hvyxrl3jcg295bjvkb-logict-0.6.0.2’...
5869100 39736 100 39736 0 0 39736 0 0:00:01 --:--:-- 0:00:01 63987
5870100 51980 100 51980 0 0 51980 0 0:00:01 --:--:-- 0:00:01 91514
5871
5872fetching path ‘/nix/store/6w049ja5hrfvkhbn1nckj911qig2wka4-data-default-instances-old-locale-0.0.1’...
5873
5874fetching path ‘/nix/store/z1p9ba8shjzjis446fkbjd1ixjajvpzw-call-stack-0.1.0’...
5875100 16252 100 16252 0 0 16252 0 0:00:01 --:--:-- 0:00:01 26774
5876
5877fetching path ‘/nix/store/54qrah0hrx7amg7vgsg6g0ba4f4crx4p-old-time-1.1.0.3’...
5878
5879*** Downloading ‘https://cache.nixos.org/nar/1g9na0z4qsir27h1176aw4lj96ra92b76a6hmrgm0hc44lz9nrm9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gfpp2syvsmd6bawb4h8nxrmf62vkmfsy-pretty-show-1.6.16’...
5880 % Total % Received % Xferd Average Speed Time Time Time Current
5881 Dload Upload Total Spent Left Speed
5882 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5883*** Downloading ‘https://cache.nixos.org/nar/1cyv8y3hl9l6w7ywyn918pdy9l5y2i74bgzan7a5jnyhpv5nzcl9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jyqzifngpd3sb2hvyxrl3jcg295bjvkb-logict-0.6.0.2’...
5884 % Total % Received % Xferd Average Speed Time Time Time Current
5885 Dload Upload Total Spent Left Speed
5886 0 72952 0 0 0 0 0 0 0 --:--:-- 0 0 --:--:-- 0:00:01 --:--:-- --:--:-- --:--:-- 0 0
5887*** Downloading ‘https://cache.nixos.org/nar/07bih283f97ysavrwx2brq5islwwlkdjn18s75fxjh5k62h9n9sr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6w049ja5hrfvkhbn1nckj911qig2wka4-data-default-instances-old-locale-0.0.1’...
5888
5889*** Downloading ‘https://cache.nixos.org/nar/12d55kanm3jvs98dk48lzgiibsqidpc4mn8i2rsia88xbhz13sj8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/z1p9ba8shjzjis446fkbjd1ixjajvpzw-call-stack-0.1.0’...
5890 % Total % Received % Xferd Average Speed Time Time Time Current
5891 Dload Upload Total Spent Left Speed
5892 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5893*** Downloading ‘https://cache.nixos.org/nar/16d3kq27d9ddaxmvwv5a3r514ygnf0lx4d0njysv8nlljr6v7nd3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/54qrah0hrx7amg7vgsg6g0ba4f4crx4p-old-time-1.1.0.3’...
5894100 72952 100 72952 0 0 72952 0 0:00:01 0:00:01 --:--:-- 62889
5895 % Total % Received % Xferd Average Speed Time Time Time Current
5896 Dload Upload Total Spent Left Speed
5897 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5898 % Total % Received % Xferd Average Speed Time Time Time Current
5899 Dload Upload Total Spent Left Speed
5900 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/99n1lpa3nk8bdll1krkjm0y39ipz67cw-primitive-0.6.3.0’...
5901
5902*** Downloading ‘https://cache.nixos.org/nar/19ibi1p90hhvifx9hr8n30ks3an3av5clw69h69xg283kzflkx4q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/99n1lpa3nk8bdll1krkjm0y39ipz67cw-primitive-0.6.3.0’...
5903 % Total % Received % Xferd Average Speed Time Time Time Current
5904 Dload Upload Total Spent Left Speed
5905100 99k 100 99k 0 0 99k 0 0:00:01 --:--:-- 0:00:01 172k
5906
5907fetching path ‘/nix/store/dm5fpvdgj7j5981lbkchai44xi2qmppq-random-1.1’...
5908 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5909*** Downloading ‘https://cache.nixos.org/nar/0vbxvizs2812v3bvg7887qqfpfg071lp6ml2cdyr7ym2lcdidxvr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dm5fpvdgj7j5981lbkchai44xi2qmppq-random-1.1’...
5910 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5911 Dload Upload Total Spent Left Speed
5912100 233k 100 233k 0 0 233k 0 0:00:01 --:--:-- 0:00:01 670k
5913
5914fetching path ‘/nix/store/ps7bkynjm2d72010202zipjb9zmfjgq8-reflection-2.1.3’...
5915100 159k 100 159k 0 0 159k 0 0:00:01 --:--:-- 0:00:01 259k
5916
5917fetching path ‘/nix/store/hj88mf8p47fgvv8316m68pf8sgpvcna7-regex-base-0.93.2’...
5918100 15512 100 15512 0 0 15512 0 0:00:01 --:--:-- 0:00:01 29323
5919
5920fetching path ‘/nix/store/rglkp7019aarn053izm1f7rjp903v4b5-semigroups-0.18.4’...
5921100 135k 100 135k 0 0 135k 0 0:00:01 --:--:-- 0:00:01 244k
5922
5923fetching path ‘/nix/store/ryarhg03ndx77fyvays1ww05ws22hc7c-HUnit-1.6.0.0’...
5924100 3344 100 3344 0 0 3344 0 0:00:01 --:--:-- 0:00:01 5536
5925
5926fetching path ‘/nix/store/196n7v09rs5m9kl51wvzxmpnvr5d3vnk-setenv-0.1.1.3’...
5927
5928*** Downloading ‘https://cache.nixos.org/nar/0h0lkwpw2faxj9hpcc1zl4w6zwj1wd2y6gaz0fl2qxj24sahmdqh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ps7bkynjm2d72010202zipjb9zmfjgq8-reflection-2.1.3’...
5929100 66644 100 66644 0 0 66644 0 0:00:01 --:--:-- 0:00:01 99766
5930 % Total % Received % Xferd Average Speed Time Time Time Current
5931 Dload Upload Total Spent Left Speed
5932 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5933fetching path ‘/nix/store/lf44sbmn1pywfja9wgg822s4zgrq92q5-data-default-0.7.1.1’...
5934
5935*** Downloading ‘https://cache.nixos.org/nar/0rb9ql7lzan965gqvli1pswj9q6f6pzjgw8qsbv58pd6p9v92gp6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hj88mf8p47fgvv8316m68pf8sgpvcna7-regex-base-0.93.2’...
5936
5937*** Downloading ‘https://cache.nixos.org/nar/0x4ry0qrfkhiilr1z8hynsjz9jqn367rrg930v57sml19cjs4myq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rglkp7019aarn053izm1f7rjp903v4b5-semigroups-0.18.4’...
5938 % Total % Received % Xferd Average Speed Time Time Time Current
5939 Dload Upload Total Spent Left Speed
5940 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
5941 Dload Upload Total Spent Left Speed
5942 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5943*** Downloading ‘https://cache.nixos.org/nar/18af2qq2mzn73wis6197ys5nzgqw5prxvmrbrakgrn9pz9mrlsgd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ryarhg03ndx77fyvays1ww05ws22hc7c-HUnit-1.6.0.0’...
5944100 136k 100 136k 0 0 136k 0 0:00:01 --:--:-- 0:00:01 421k
5945
5946 % Total % Received % Xferd Average Speed Time Time Time Current
5947 Dload Upload Total Spent Left Speed
5948 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/cwrsk309vnxf8d6kdv9vj3ik73zcrssb-silently-1.2.5’...
5949
5950*** Downloading ‘https://cache.nixos.org/nar/0hks38wyyfif530615sdvlsr7pphdhlvkbw9spr536lcp4fac7hq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/196n7v09rs5m9kl51wvzxmpnvr5d3vnk-setenv-0.1.1.3’...
5951 % Total % Received % Xferd Average Speed Time Time Time Current
5952 Dload Upload Total Spent Left Speed
5953 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5954*** Downloading ‘https://cache.nixos.org/nar/10lm8mrdwd2hks1z5ai55sk0lazvzn30xd2q6g8rjg4i2n2bhgjn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lf44sbmn1pywfja9wgg822s4zgrq92q5-data-default-0.7.1.1’...
5955 % Total % Received % Xferd Average Speed Time Time Time Current
5956 Dload Upload Total Spent Left Speed
5957 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5958*** Downloading ‘https://cache.nixos.org/nar/0d9w59yk948rsdp9ix3pxm72qh75i56pggniwivw8cl0zp6m8sha.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cwrsk309vnxf8d6kdv9vj3ik73zcrssb-silently-1.2.5’...
5959 % Total % Received % Xferd Average Speed Time Time Time Current
5960 Dload Upload Total Spent Left Speed
5961100 3204 100 3204 0 0 3204 0 0:00:01 --:--:-- 0:00:01 12816
5962
5963fetching path ‘/nix/store/a9xfkrqh3zqjxshi3kxrdv6mn74wy12s-abstract-deque-0.3’...
5964
5965*** Downloading ‘https://cache.nixos.org/nar/0rhkcxni2fy14dkc0292xzb5x3av8axi516xgjcz70k6avkacsw1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a9xfkrqh3zqjxshi3kxrdv6mn74wy12s-abstract-deque-0.3’...
5966 % Total % Received % Xferd Average Speed Time Time Time Current
5967 Dload Upload Total Spent Left Speed
5968100 9596 100 9596 0 0 9596 0 0:00:01 --:--:-- 0:00:01 17575
5969
5970fetching path ‘/nix/store/i7sr4a3j4rb3hjfrjiz9bf2fc02fjzmj-simple-reflect-0.3.2’...
5971100 66984 100 66984 0 0 66984 0 0:00:01 --:--:-- 0:00:01 114k
5972
5973100 275k 100 275k 0 0 275k 0 0:00:01 --:--:-- 0:00:01 448k
5974fetching path ‘/nix/store/4yf1z3xzj0z9vv2mmbhmydnzhf3rbhnb-smallcheck-1.1.3.1’...
5975
5976fetching path ‘/nix/store/wfiy66chf7gifv0svgr1k7amn33vypqk-regex-posix-0.95.2’...
5977100 107k 100 107k 0 0 107k 0 0:00:01 --:--:-- 0:00:01 193k
5978
5979100 3744 100 3744 0 0 3744 0 0:00:01 --:--:-- 0:00:01 7672
5980
5981fetching path ‘/nix/store/f7wmila6z2g309fp69cccw8g7yvv831f-stm-2.4.5.0’...
5982fetching path ‘/nix/store/7c5qc6zazsaaw0chcqmpnpq43kj8j37j-storable-complex-0.2.2’...
5983100 14892 100 14892 0 0 14892 0 0:00:01 --:--:-- 0:00:01 28693
5984
5985fetching path ‘/nix/store/jynwjcmrmmvzq6jbqhmsgsssbs8g7bbg-hspec-expectations-0.8.2’...
5986 0 33620 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5987*** Downloading ‘https://cache.nixos.org/nar/1z1mg8qr66qvzc1g4wm1wzpwhib0ixh17h530zya9nsb14jf6zk8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/i7sr4a3j4rb3hjfrjiz9bf2fc02fjzmj-simple-reflect-0.3.2’...
5988
5989*** Downloading ‘https://cache.nixos.org/nar/12xpylmhrmyzxksns62hq2f6xjfp4i4az2k0d47gv993gp6c7fys.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4yf1z3xzj0z9vv2mmbhmydnzhf3rbhnb-smallcheck-1.1.3.1’...
5990100 33620 100 33620 0 0 33620 0 0:00:01 --:--:-- 0:00:01 116k
5991 % Total % Received % Xferd Average Speed Time Time Time Current
5992 Dload Upload Total Spent Left Speed
5993 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5994fetching path ‘/nix/store/vv7jni8wwv98r405b17qlihdmdk1fq34-raw-strings-qq-1.1’...
5995 % Total % Received % Xferd Average Speed Time Time Time Current
5996 Dload Upload Total Spent Left Speed
5997 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
5998*** Downloading ‘https://cache.nixos.org/nar/194lnv2c1mdsv37x7qx9sqx697jjgb49ali60f1zccbliyfchbrb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wfiy66chf7gifv0svgr1k7amn33vypqk-regex-posix-0.95.2’...
5999
6000*** Downloading ‘https://cache.nixos.org/nar/01na85cl2irxy25jzawdxhaavsf5g0sd82zh8dym97ycnihhirzl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f7wmila6z2g309fp69cccw8g7yvv831f-stm-2.4.5.0’...
6001 20 1152k 20 237k 0 0 237k 0 0:00:04 0:00:01 0:00:03 142k % Total % Received % Xferd Average Speed Time Time Time Current
6002 Dload Upload Total Spent Left Speed
6003 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6004*** Downloading ‘https://cache.nixos.org/nar/17bj77ssy73k1dpqjw7rdxvwrp6pp8h4z1fjm22q4r43h8350149.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7c5qc6zazsaaw0chcqmpnpq43kj8j37j-storable-complex-0.2.2’...
6005 % Total % Received % Xferd Average Speed Time Time Time Current
6006 Dload Upload Total Spent Left Speed
6007 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6008 Dload Upload Total Spent Left Speed
6009 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6010*** Downloading ‘https://cache.nixos.org/nar/121w7pwrh4pp695py2mznixcsps2409ainh86pk3fk2mdjrgc3vw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jynwjcmrmmvzq6jbqhmsgsssbs8g7bbg-hspec-expectations-0.8.2’...
6011 % Total % Received % Xferd Average Speed Time Time Time Current
6012 Dload Upload Total Spent Left Speed
6013 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6014*** Downloading ‘https://cache.nixos.org/nar/1qvkcac4r701q6vc7hn7id024xi7gzbpdkj29bpynn1g98dk63wq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vv7jni8wwv98r405b17qlihdmdk1fq34-raw-strings-qq-1.1’...
6015 % Total % Received % Xferd Average Speed Time Time Time Current
6016 Dload Upload Total Spent Left Speed
6017100 84492 100 84492 0 0 84492 0 0:00:01 --:--:-- 0:00:01 265k
6018
6019fetching path ‘/nix/store/j2s3x74ln11265k12wjnigg99b5rzhg4-strict-0.3.2’...
6020100 2888 100 2888 0 0 2888 0 0:00:01 --:--:-- 0:00:01 10463
6021
6022fetching path ‘/nix/store/dni09d8p6a1zn2xih1ci958igvyxk1yp-stringbuilder-0.5.1’...
6023
6024*** Downloading ‘https://cache.nixos.org/nar/00wihdnw9f1whqnaqjms08r6191fhpycp7h0d6cdvp1yfxr11i36.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j2s3x74ln11265k12wjnigg99b5rzhg4-strict-0.3.2’...
6025
6026*** Downloading ‘https://cache.nixos.org/nar/1q2mimsgjzxi558am00kg7gsmkk43was5mr3rbzmxi8h4dq91bmb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dni09d8p6a1zn2xih1ci958igvyxk1yp-stringbuilder-0.5.1’...
6027 % Total % Received % Xferd Average Speed Time Time Time Current
6028 Dload Upload Total Spent Left Speed
6029 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6030 Dload Upload Total Spent Left Speed
6031100 160k 100 160k 0 0 160k 0 0:00:01 --:--:-- 0:00:01 267k
6032100 68816 100 68816 0 0 68816 0 0:00:01 --:--:-- 0:00:01 115k
6033
6034
6035fetching path ‘/nix/store/54b968i8g48wzy9q60bf4qw0yyrfaqqj-syb-0.7’...
6036fetching path ‘/nix/store/pn91mp1jj1afhnbmq0bfxr4i516g4lrb-tagshare-0.0’...
6037100 1152k 100 1152k 0 0 576k 0 0:00:02 0:00:02 --:--:-- 501k
6038100 130k 100 130k 0 0 130k 0 0:00:01 --:--:-- 0:00:01 210k
6039
6040100 40360 100 40360 0 0 40360 0 0:00:01 --:--:-- 0:00:01 72589
6041fetching path ‘/nix/store/26nlip2wm06ly3xcdhhy1c4qmw2wz96f-StateVar-1.1.0.4’...
6042
6043
6044fetching path ‘/nix/store/f09rk4clzchpfffgm1ywccjxify62ll1-language-haskell-extract-0.2.4’...
6045fetching path ‘/nix/store/g0wx1xc7pn3m9af0px9rxplmhb6lvc1f-text-1.2.2.2’...
6046100 9720 100 9720 0 0 9720 0 0:00:01 --:--:-- 0:00:01 16200
6047
6048100 10112 100 10112 0 0 10112 0 0:00:01 --:--:-- 0:00:01 40286
6049
6050
6051*** Downloading ‘https://cache.nixos.org/nar/1a1jyl1czz4pnc5021dbz246isar4dmsvqcj7x6p7cqn2ha2nvaw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/54b968i8g48wzy9q60bf4qw0yyrfaqqj-syb-0.7’...
6052 % Total % Received % Xferd Average Speed Time Time Time Current
6053 Dload Upload Total Spent Left Speed
6054 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6055*** Downloading ‘https://cache.nixos.org/nar/0s88ysjpycy5hs1narjm52hzph47rbls76rc60gwlbsbcyz7di8s.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pn91mp1jj1afhnbmq0bfxr4i516g4lrb-tagshare-0.0’...
6056 % Total % Received % Xferd Average Speed Time Time Time Current
6057 Dload Upload Total Spent Left Speed
6058 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/9bcs4l5yl63gmx68rj6yr0p5s9np83gp-linear-1.20.7-doc’...
6059fetching path ‘/nix/store/pfyan0z04a6r8532yv3m6h1vxza8sxaz-tf-random-0.5’...
6060
6061*** Downloading ‘https://cache.nixos.org/nar/1y7lbvccw19f4va9xlsidzk3sgf887bz5kh4pjgcr2b31cygxjpc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/26nlip2wm06ly3xcdhhy1c4qmw2wz96f-StateVar-1.1.0.4’...
6062 % Total % Received % Xferd Average Speed Time Time Time Current
6063 Dload Upload Total Spent Left Speed
6064 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6065*** Downloading ‘https://cache.nixos.org/nar/0w4j86zz8lfxhc3wwx3fk7fwhpm4ij4102c0fzn5hgq80ji54w14.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f09rk4clzchpfffgm1ywccjxify62ll1-language-haskell-extract-0.2.4’...
6066
6067*** Downloading ‘https://cache.nixos.org/nar/1fbs58lcz61bg3vfylv7i0vs6axk2mq929hxnz0sx192vxpkfkx7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/g0wx1xc7pn3m9af0px9rxplmhb6lvc1f-text-1.2.2.2’...
6068 % Total % Received % Xferd Average Speed Time Time Time Current
6069 Dload Upload Total Spent Left Speed
6070 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6071*** Downloading ‘https://cache.nixos.org/nar/1dfqyxwam0ks7xs6m0wfs1dqnb6qc4j3iz6gky66wrsvayab9wsz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9bcs4l5yl63gmx68rj6yr0p5s9np83gp-linear-1.20.7-doc’...
6072
6073*** Downloading ‘https://cache.nixos.org/nar/11f5n2nmcxi29dfjabnh7n6mzh6ddawsz2f1vmbsvjmqgg430339.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pfyan0z04a6r8532yv3m6h1vxza8sxaz-tf-random-0.5’...
6074 % Total % Received % Xferd Average Speed Time Time Time Current
6075 Dload Upload Total Spent Left Speed
6076 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6077 Dload Upload Total Spent Left Speed
6078 0 0 % Tot 0 0 0 al % Received 0 0 % Xferd Average Spe 0 --:--:-- --:--:-- --:--:-- 0ed Time Time Time Current
6079 Dload Upload Total Spent Left Speed
6080100 53332 100 53332 0 0 53332 0 0:00:01 --:--:-- 0:00:01 94226
6081
6082fetching path ‘/nix/store/52g6dj1pjv64zqqkkr2mykfkcc52hn0x-th-abstraction-0.2.6.0’...
6083
6084*** Downloading ‘https://cache.nixos.org/nar/1plglvg5fs0jb3ac4d9hqarsa84p9h6qxm6p38p4ppm6f457rl9i.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/52g6dj1pjv64zqqkkr2mykfkcc52hn0x-th-abstraction-0.2.6.0’...
6085 % Total % Received % Xferd Average Speed Time Time Time Current
6086 Dload Upload Total Spent Left Speed
6087100 11120 100 11120 0 0 11120 0 0:00:01 --:--:-- 0:00:01 19964
6088
6089fetching path ‘/nix/store/qrpg27lk5ihw1kblsziy84lwz6kw7dph-th-lift-0.7.8’...
6090100 114k 100 114k 0 0 114k 0 0:00:01 --:--:-- 0:00:01 196k
6091
6092fetching path ‘/nix/store/ddm7dc18dgd1gsxqvmcrahmss4ykjrgm-time-locale-compat-0.1.1.3’...
6093100 18884 100 18884 0 0 18884 0 0:00:01 --:--:-- 0:00:01 33721
6094
6095fetching path ‘/nix/store/8lm6cqqkqgd9b6pvnld92kabhph1ljf7-th-expand-syns-0.4.4.0’...
6096100 10856 100 10856 0 0 10856 0 0:00:01 --:--:-- 0:00:01 20599
6097
6098fetching path ‘/nix/store/1mgfv23zk9asgdby6xbkncdlqhqgnkb0-transformers-compat-0.5.1.4’...
6099
6100*** Downloading ‘https://cache.nixos.org/nar/1nww9ircg1nwbl7f62j8fidiac8sym3w5hmf2m3zbi50pnicw388.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qrpg27lk5ihw1kblsziy84lwz6kw7dph-th-lift-0.7.8’...
6101 % Total % Received % Xferd Average Speed Time Time Time Current
6102 Dload Upload Total Spent Left Speed
6103 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6104*** Downloading ‘https://cache.nixos.org/nar/1yrgxlraa0b2p12h9ay4m4p4cr674b9a6lmvwrjw0668d5kclz1r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ddm7dc18dgd1gsxqvmcrahmss4ykjrgm-time-locale-compat-0.1.1.3’...
6105100 90160 100 90160 0 0 90160 0 0:00:01 --:--:-- 0:00:01 155k
6106
6107*** Downloading ‘https://cache.nixos.org/nar/1dvnk81bldlzcph6prw2vkxryv35n7678vbbiw89k2gda57lx3f5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8lm6cqqkqgd9b6pvnld92kabhph1ljf7-th-expand-syns-0.4.4.0’...
6108
6109 % Total % Received % Xferd Average Speed Time Time Time Current
6110 Dload Upload Total Spent Left Speed
6111 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/pjnjky5hvfdsaf2q7j496zn04dffqpac-unbounded-delays-0.1.1.0’...
6112 % Total % Received % Xferd Average Speed Time Time Time Current
6113 Dload Upload Total Spent Left Speed
6114 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6115*** Downloading ‘https://cache.nixos.org/nar/1sbc5grqlcmm17mpgflngaczi72x9gnai8r2spb7fdzcdaizjd8b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1mgfv23zk9asgdby6xbkncdlqhqgnkb0-transformers-compat-0.5.1.4’...
6116 % Total % Received % Xferd Average Speed Time Time Time Current
6117 Dload Upload Total Spent Left Speed
6118 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6119*** Downloading ‘https://cache.nixos.org/nar/1kvjbrkcf8kgxqvgn2i05r8i31y2cikbn03f3pkx9w47yff8iwin.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pjnjky5hvfdsaf2q7j496zn04dffqpac-unbounded-delays-0.1.1.0’...
6120 % Total % Received % Xferd Average Speed Time Time Time Current
6121 Dload Upload Total Spent Left Speed
6122100 1049k 100 1049k 0 0 1049k 0 0:00:01 --:--:-- 0:00:01 1455k
6123
6124fetching path ‘/nix/store/0p0vwk1grj5gbwdxw7nm6ykyhaj51nig-QuickCheck-2.10.1’...
6125100 155k 100 155k 0 0 155k 0 0:00:01 --:--:-- 0:00:01 214k
6126
6127fetching path ‘/nix/store/1lr1j44faw7bzw3abji25vccqg53sb1v-polyparse-1.12’...
6128100 194k 100 194k 0 0 194k 0 0:00:01 --:--:-- 0:00:01 312k
6129
6130fetching path ‘/nix/store/fkk1f61dvsvvnnl77rbbximzqa27drjc-active-0.2.0.13-doc’...
6131
6132*** Downloading ‘https://cache.nixos.org/nar/0r4w1rggjmmki9ah1kqm2vq93vm14j6yqh3gs78fnscpl40y1bmd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/0p0vwk1grj5gbwdxw7nm6ykyhaj51nig-QuickCheck-2.10.1’...
6133 % Total % Received % Xferd Average Speed Time Time Time Current
6134 Dload Upload Total Spent Left Speed
6135 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6136*** Downloading ‘https://cache.nixos.org/nar/0hzgrnpcixnwl19k3zcwjr6cs1rbajl5i10q2gnpngxz6sgvsx60.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1lr1j44faw7bzw3abji25vccqg53sb1v-polyparse-1.12’...
6137 % Total % Received % Xferd Average Speed Time Time Time Current
6138 Dload Upload Total Spent Left Speed
6139 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6140*** Downloading ‘https://cache.nixos.org/nar/0fzy5yajk1grz4dy19gcj2d0f2k2fqa4djp3v3nh9p9b0zzfkf6b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fkk1f61dvsvvnnl77rbbximzqa27drjc-active-0.2.0.13-doc’...
6141 % Total % Received % Xferd Average Speed Time Time Time Current
6142 Dload Upload Total Spent Left Speed
6143100 15380 100 15380 0 0 15380 0 0:00:01 --:--:-- 0:00:01 54154
6144
6145fetching path ‘/nix/store/l9z9wrlz2vnhbmbv7rrifzchmfa4rq05-diagrams-core-1.4.0.1-doc’...
6146100 40628 100 40628 0 0 40628 0 0:00:01 --:--:-- 0:00:01 72810
6147
6148*** Downloading ‘https://cache.nixos.org/nar/19clyf6z7jxhxf04h2xkb8r5da7di3srnvnqy32nwayf9m7w8zvj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l9z9wrlz2vnhbmbv7rrifzchmfa4rq05-diagrams-core-1.4.0.1-doc’...
6149
6150100 3456 100 3456 0 0 3456 0 0:00:01 --:--:-- 0:00:01 6459
6151fetching path ‘/nix/store/prq0cbn8bw6psc3bn2sxfi09a0iz91mk-unix-compat-0.5.0.1’...
6152
6153 % Total % Received % Xferd Average Speed Time Time Time Current
6154 Dload Upload Total Spent Left Speed
6155 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/zjrh364ba28hdvxf9hnv9ww9ayc6k6a7-vector-0.12.0.1’...
6156100 15164 100 15164 0 0 15164 0 0:00:01 --:--:-- 0:00:01 28611
6157100 49652 100 49652 0 0 49652 0 0:00:01 --:--:-- 0:00:01 82615
6158
6159
6160fetching path ‘/nix/store/agrq46z11l6bzisgsg3a2ihyhydvjbkn-void-0.7.2’...
6161fetching path ‘/nix/store/fmdc7vpjl3kbb09gihqy66qfi2nam3xq-contravariant-1.4.1’...
6162
6163*** Downloading ‘https://cache.nixos.org/nar/1nxldlzd5k72049n1ybb1ifxv47ygs8axi7fnp2dy0lqnbyycb5g.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/prq0cbn8bw6psc3bn2sxfi09a0iz91mk-unix-compat-0.5.0.1’...
6164
6165*** Downloading ‘https://cache.nixos.org/nar/17jy6zdvvqmq7pr5nk3g6x5srmp8qp2zf9szm8dav9yr3pr21faz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zjrh364ba28hdvxf9hnv9ww9ayc6k6a7-vector-0.12.0.1’...
6166 % Total % Received % Xferd Average Speed Time Time Time Current
6167 Dload Upload Total Spent Left Speed
6168 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6169 Dload Upload Total Spent Left Speed
6170 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6171*** Downloading ‘https://cache.nixos.org/nar/1waqr83ba9bwzy6s9ivk9vas5c7sxpjphi5ywirbr4c8508aca2c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/agrq46z11l6bzisgsg3a2ihyhydvjbkn-void-0.7.2’...
6172100 675k 100 675k 0 0 675k 0 0:00:01 --:--:-- 0:00:01 1553k
6173
6174
6175*** Downloading ‘https://cache.nixos.org/nar/163vlq9xydx2a09bbc1d75pyb0z2zxy8daw6kzv0c4f9ddvf3wkj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fmdc7vpjl3kbb09gihqy66qfi2nam3xq-contravariant-1.4.1’...
6176 % Total % Received % Xferd Average Speed Time Time Time Current
6177 Dload Upload Total Spent Left Speed
6178 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/mjv1yl0vvwkpswwv5i8f47d4s7ha0bn2-tagged-0.8.5’...
6179 % Total % Received % Xferd Average Speed Time Time Time Current
6180 Dload Upload Total Spent Left Speed
6181 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6182*** Downloading ‘https://cache.nixos.org/nar/1wh8d59qzlmjafhnhvyr94r5za0xsb1jazlnb6hf5gl2yl9nb0yg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mjv1yl0vvwkpswwv5i8f47d4s7ha0bn2-tagged-0.8.5’...
6183 % Total % Received % Xferd Average Speed Time Time Time Current
6184 Dload Upload Total Spent Left Speed
6185100 421k 100 421k 0 0 421k 0 0:00:01 --:--:-- 0:00:01 628k
6186
6187fetching path ‘/nix/store/982k5n5ci5dymf8a11apfxs8p6n7j57c-ChasingBottoms-1.3.1.3’...
6188
6189*** Downloading ‘https://cache.nixos.org/nar/1xl4z7lgddg6cqjv7j030bbly6j4agr89h2wy5szcq60z8zcxanv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/982k5n5ci5dymf8a11apfxs8p6n7j57c-ChasingBottoms-1.3.1.3’...
6190 % Total % Received % Xferd Average Speed Time Time Time Current
6191 Dload Upload Total Spent Left Speed
6192100 11612 100 11612 0 0 11612 0 0:00:01 --:--:-- 0:00:01 20300
6193
6194fetching path ‘/nix/store/zmaq5r6n2smy8d3qsnp8r72b4qn6il3q-cpphs-1.20.8’...
6195100 3872 100 3872 0 0 3872 0 0:00:01 --:--:-- 0:00:01 7759
6196
6197fetching path ‘/nix/store/ii17xr2fhg93s0lz3kzv1pgmz6wgdspl-optparse-applicative-0.14.2.0’...
6198
6199*** Downloading ‘https://cache.nixos.org/nar/0q7gpybllqbij73f7wr3n1dc31gzqq85nxyxf89p5bwdp5qgkksh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zmaq5r6n2smy8d3qsnp8r72b4qn6il3q-cpphs-1.20.8’...
6200 % Total % Received % Xferd Average Speed Time Time Time Current
6201 Dload Upload Total Spent Left Speed
6202 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6203*** Downloading ‘https://cache.nixos.org/nar/1qvgrf2hfasxv7m60jsz1frm2bfywva1wydy3dfwsnw26bmihx7b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ii17xr2fhg93s0lz3kzv1pgmz6wgdspl-optparse-applicative-0.14.2.0’...
6204 % Total % Received % Xferd Average Speed Time Time Time Current
6205 Dload Upload Total Spent Left Speed
6206100 112k 100 112k 0 0 112k 0 0:00:01 --:--:-- 0:00:01 172k
6207
6208fetching path ‘/nix/store/bf15gpfl2jy438pdbywswxf8c3vpkly0-quickcheck-io-0.2.0’...
6209100 1508k 100 1508k 0 0 1508k 0 0:00:01 --:--:-- 0:00:01 1914k
6210 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6211fetching path ‘/nix/store/34xhyg6vf5yxjxyr26fl33yc7w2ll0nq-safe-0.3.15’...
6212100 78448 100 78448 0 0 78448 0 0:00:01 --:--:-- 0:00:01 131k
6213
6214 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/bqcmjq58zisw5rq3flxx2w5jqkrjkajy-split-0.2.3.3’...
6215
6216*** Downloading ‘https://cache.nixos.org/nar/02k0xddyvvkqwpqbfyw91c506g2ywb8mm82284sxr408ysljd7b5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bf15gpfl2jy438pdbywswxf8c3vpkly0-quickcheck-io-0.2.0’...
6217 % Total % Received % Xferd Average Speed Time Time Time Current
6218 Dload Upload Total Spent Left Speed
6219 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6220*** Downloading ‘https://cache.nixos.org/nar/0k9m15d08nsji1n80b6l2bhl5bj7qi2pwhblbiflxjihyawhnb23.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/34xhyg6vf5yxjxyr26fl33yc7w2ll0nq-safe-0.3.15’...
6221
6222*** Downloading ‘https://cache.nixos.org/nar/0yqmi4hni2cnfy0xhb1q3393b4079zzf6rf9s27y8j713gma26zc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bqcmjq58zisw5rq3flxx2w5jqkrjkajy-split-0.2.3.3’...
6223 % Total % Received % Xferd Average Speed Time Time Time Current
6224 Dload Upload Total Spent Left Speed
6225100 48204 100 48204 0 0 48204 0 0:00:01 0:00:01 --:--:-- 37338
6226 % Total % Received % Xferd Average Speed Time Time Time Current
6227 Dload Upload Total Spent Left Speed
6228 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6229fetching path ‘/nix/store/08iyxhj8m1bb8npk3x0snmk7iw4bg8ks-testing-feat-0.4.0.3’...
6230100 161k 100 161k 0 0 161k 0 0:00:01 0:00:01 --:--:-- 143k
6231
6232fetching path ‘/nix/store/7j8slk7q2aws5a1z33x1s5amcp6rl5s0-th-lift-instances-0.1.11’...
6233
6234*** Downloading ‘https://cache.nixos.org/nar/0p8hchrcjkmq4vxfcf649m4ly8yr350x77sd9nqc48bcqr74hzwr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/08iyxhj8m1bb8npk3x0snmk7iw4bg8ks-testing-feat-0.4.0.3’...
6235 % Total % Received % Xferd Average Speed Time Time Time Current
6236 Dload Upload Total Spent Left Speed
6237 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6238*** Downloading ‘https://cache.nixos.org/nar/1xlxk2xm1mqq2pyvmm8inj45ay0fs9x8skj96ypqhv05l205bq11.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7j8slk7q2aws5a1z33x1s5amcp6rl5s0-th-lift-instances-0.1.11’...
6239 % Total % Received % Xferd Average Speed Time Time Time Current
6240 Dload Upload Total Spent Left Speed
6241100 46084 100 46084 0 0 46084 0 0:00:01 --:--:-- 0:00:01 168k
6242
6243fetching path ‘/nix/store/46xzncxnjxmxlfc0q11irjqi6g4ki3cf-diagrams-lib-1.4.2-doc’...
6244100 251k 100 251k 0 0 251k 0 0:00:01 --:--:-- 0:00:01 397k
6245
6246fetching path ‘/nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0’...
6247100 341k 100 341k 0 0 341k 0 0:00:01 --:--:-- 0:00:01 532k
6248
6249fetching path ‘/nix/store/kixq7zhhz63f86z40ajnmsn712pvh5v8-haskell-src-exts-1.19.1’...
6250
6251*** Downloading ‘https://cache.nixos.org/nar/1y1qlr4kx058v9ha68y57s1a7gh42d4dc7wb9bx04pj4qrfl8j08.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/46xzncxnjxmxlfc0q11irjqi6g4ki3cf-diagrams-lib-1.4.2-doc’...
6252 % Total % Received % Xferd Average Speed Time Time Time Current
6253 Dload Upload Total Spent Left Speed
6254100 17576 100 17576 0 0 17576 0 0:00:01 --:--:-- 0:00:01 32913
6255
6256fetching path ‘/nix/store/aqglza6ihq2rybpmi1fmwnfzp2cjbyi5-vector-algorithms-0.7.0.1’...
6257
6258*** Downloading ‘https://cache.nixos.org/nar/04i4nv9slijmvp7v2bz807g0bnmakvaivfhnky2kp24sh4dpfxar.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0’...
6259 % Total % Received % Xferd Average Speed Time Time Time Current
6260 Dload Upload Total Spent Left Speed
6261 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6262*** Downloading ‘https://cache.nixos.org/nar/1frsm8q1m30hm5mqwk5zbd2llsn3jh7q5k22904icdbyl90x26y9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kixq7zhhz63f86z40ajnmsn712pvh5v8-haskell-src-exts-1.19.1’...
6263 % Total % Received % Xferd Average Speed Time Time Time Current
6264 Dload Upload Total Spent Left Speed
6265 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6266*** Downloading ‘https://cache.nixos.org/nar/0vpg0i4a9jhzxx0nsiss7c0cfhpx7jp2skgv62kwd9xqlzl7vbyl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/aqglza6ihq2rybpmi1fmwnfzp2cjbyi5-vector-algorithms-0.7.0.1’...
6267 % Total % Received % Xferd Average Speed Time Time Time Current
6268 Dload Upload Total Spent Left Speed
6269100 100k 100 100k 0 0 100k 0 0:00:01 --:--:-- 0:00:01 163k
6270
6271fetching path ‘/nix/store/h8zh74c1wsp0x2q26hw7babbcpcq26jq-vector-th-unbox-0.2.1.6’...
6272100 23684 100 23684 0 0 23684 0 0:00:01 --:--:-- 0:00:01 44941
6273
6274fetching path ‘/nix/store/h72g6g4i5l2biygf5iiw54q25m85mq3k-th-reify-many-0.1.8’...
6275
6276*** Downloading ‘https://cache.nixos.org/nar/0lk6qwvwd3c584hvbycrkk128v8smfay33y9r8niziy7b02cvknz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h8zh74c1wsp0x2q26hw7babbcpcq26jq-vector-th-unbox-0.2.1.6’...
6277 % Total % Received % Xferd Average Speed Time Time Time Current
6278 Dload Upload Total Spent Left Speed
6279 0 544k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6280*** Downloading ‘https://cache.nixos.org/nar/0hkx4j3ajyigqpkac85178252b5aqbch4h971s3yjd0gzw8hklam.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h72g6g4i5l2biygf5iiw54q25m85mq3k-th-reify-many-0.1.8’...
6281 % Total % Received % Xferd Average Speed Time Time Time Current
6282 Dload Upload Total Spent Left Speed
6283100 197k 100 197k 0 0 197k 0 0:00:01 --:--:-- 0:00:01 240k
6284
6285fetching path ‘/nix/store/f6540v8l9k17lw9691glhyj2f0mz6110-xml-1.3.14’...
6286 0 4498k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6287*** Downloading ‘https://cache.nixos.org/nar/1csb7cryipq3dxp6ii2h8p6giy4k3lh1vrzmbvi75zj8r5b2nvf7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f6540v8l9k17lw9691glhyj2f0mz6110-xml-1.3.14’...
6288 % Total % Received % Xferd Average Speed Time Time Time Current
6289 Dload Upload Total Spent Left Speed
6290100 730k 100 730k 0 0 730k 0 0:00:01 --:--:-- 0:00:01 1028k
6291
6292100 28864 100 28864 0 0 28864 0 0:00:01 --:--:-- 0:00:01 53156
6293fetching path ‘/nix/store/00vjraxm2aak27m1bfsfv50mpgmcnybb-zlib-0.6.1.2’...
6294
6295building path(s) ‘/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0’, ‘/nix/store/zy63c20iybz79vlgkr3rsrb5mxikvj9z-hmatrix-0.18.2.0-doc’
6296100 31980 100 31980 0 0 31980 0 0:00:01 --:--:-- 0:00:01 57005
6297
6298fetching path ‘/nix/store/grjdh1mvxfs4xbkgbyvppnh3hdg2d6dh-math-functions-0.2.1.0’...
6299
6300*** Downloading ‘https://cache.nixos.org/nar/0p4vnvh8pdiyh3a2cb7mb0wzf9n177ymvlr541vp2xj42iz82hx4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/00vjraxm2aak27m1bfsfv50mpgmcnybb-zlib-0.6.1.2’...
6301 % Total % Received % Xferd Average Speed Time Time Time Current
6302 Dload Upload Total Spent Left Speed
6303 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6304*** Downloading ‘https://cache.nixos.org/nar/0shmzmls7awdjf4pwnn6i2pxnlp22pymap9p760ib8s7ry71x0n7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/grjdh1mvxfs4xbkgbyvppnh3hdg2d6dh-math-functions-0.2.1.0’...
6305 % Total % Received % Xferd Average Speed Time Time Time Current
6306 Dload Upload Total Spent Left Speed
6307100 544k 100 544k 0 0 544k 0 0:00:01 0:00:01 --:--:-- 413k
6308
6309fetching path ‘/nix/store/wcjpgs9w8flc1vvnh6n9jadkqz2ywy1b-plots-0.1.0.2-doc’...
6310100 208k 100 208k 0 0 208k 0 0:00:01 --:--:-- 0:00:01 307k
6311
6312fetching path ‘/nix/store/jhja7gp8q7cd8f09arfnyvbzsz78yf68-FontyFruity-0.5.3.3’...
6313 19 2096k 19 398k 0 0 398k 0 0:00:05 0:00:01 0:00:04 296k
6314*** Downloading ‘https://cache.nixos.org/nar/00gm1r7f6r1qrahpckpp95qmqyl0m7dl84kqqvl5filldpnyyavd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wcjpgs9w8flc1vvnh6n9jadkqz2ywy1b-plots-0.1.0.2-doc’...
6315 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0
6316*** Downloading ‘https://cache.nixos.org/nar/0xhdahnfxaab3d9dxrlqhv05kxdrz4vsw6hv7jnbpgqjh6pi8q85.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jhja7gp8q7cd8f09arfnyvbzsz78yf68-FontyFruity-0.5.3.3’...
6317 % Total % Received % Xferd Average Speed Time Time Time Current
6318 Dload Upload Total Spent Left Speed
6319 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6320 Dload Upload Total Spent Left Speed
6321100 4498k 100 4498k 0 0 4498k 0 0:00:01 0:00:01 --:--:-- 2788k
6322100 195k 100 195k 0 0 195k 0 0:00:01 --:--:-- 0:00:01 289k
6323100 141k 100 141k 0 0 72574 0 0:00:02 0:00:02 --:--:-- 55063
6324
6325
6326fetching path ‘/nix/store/flc4d72m4cyqwikf7w4jy7zhnvfrmwyg-test-framework-0.8.1.1’...
6327
6328100 288k 100 288k 0 0 288k 0 0:00:01 --:--:-- 0:00:01 418k
6329
6330fetching path ‘/nix/store/aldn972ad5dnx8n8y1fnwx65pp766962-JuicyPixels-3.2.9.4’...
6331fetching path ‘/nix/store/xl9kznfrzddzwd8m2jvqffmwhz0fkasw-mwc-random-0.13.6.0’...
6332
6333*** Downloading ‘https://cache.nixos.org/nar/125l17w4cr2aq8vg052x9kfw3511yszqfs08paww5s1lnqjpdx1d.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/flc4d72m4cyqwikf7w4jy7zhnvfrmwyg-test-framework-0.8.1.1’...
6334
6335*** Downloading ‘https://cache.nixos.org/nar/0iyysln0z9h1j4fk9bdasxn0rxwk0pdq936hlrym3h9xamhvndhi.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/aldn972ad5dnx8n8y1fnwx65pp766962-JuicyPixels-3.2.9.4’...
6336 % Total % Received % Xferd Average Speed Time Time Time Current
6337 Dload Upload Total Spent Left Speed
6338 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6339 Dload Upload Total Spent Left Speed
6340 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6341*** Downloading ‘https://cache.nixos.org/nar/18z3az2si221bwpvy6sppja5kzbapkbnikl28l9899a38gb6g3dc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xl9kznfrzddzwd8m2jvqffmwhz0fkasw-mwc-random-0.13.6.0’...
6342 % Total % Received % Xferd Average Speed Time Time Time Current
6343 Dload Upload Total Spent Left Speed
6344100 2096k 100 2096k 0 0 1048k 0 0:00:02 0:00:02 --:--:-- 980k
6345
6346building path(s) ‘/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0’, ‘/nix/store/w2pd2c6xp8sllhwaq2hdyd6bdwp6lp8s-hmatrix-gsl-0.18.2.0-doc’
6347100 242k 100 242k 0 0 242k 0 0:00:01 --:--:-- 0:00:01 246k
6348
6349100 347k 100 347k 0 0 347k 0 0:00:01 --:--:-- 0:00:01 501k
6350
6351100 206k 100 206k 0 0 206k 0 0:00:01 --:--:-- 0:00:01 230k
6352
6353fetching path ‘/nix/store/lz5aqa485gbv0h4c4a7k302xvfiqaw2a-test-framework-hunit-0.3.0.2’...
6354fetching path ‘/nix/store/8hcjf7ahc6wjkfm46c25fy2dz8qacdsv-test-framework-quickcheck2-0.3.0.4’...
6355fetching path ‘/nix/store/dq4q55a87myqbmz9xdb5w3vy71iq4vql-test-framework-th-0.2.4’...
6356
6357*** Downloading ‘https://cache.nixos.org/nar/1vf24i783wq6dwzp756a4wjiqbz0ggb1h6p0yjzmqm9wfy2kl78b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lz5aqa485gbv0h4c4a7k302xvfiqaw2a-test-framework-hunit-0.3.0.2’...
6358
6359*** Downloading ‘https://cache.nixos.org/nar/1h6jsh3d6rnjmjfr7hv8m2rh29ql2y56j02idmjdbhmpsr3sv9wx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8hcjf7ahc6wjkfm46c25fy2dz8qacdsv-test-framework-quickcheck2-0.3.0.4’...
6360
6361*** Downloading ‘https://cache.nixos.org/nar/1mxbm7840azr5wh9w8q8l81f63p0d7l3qlxa7gqkjrp29wklzs7w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dq4q55a87myqbmz9xdb5w3vy71iq4vql-test-framework-th-0.2.4’...
6362 % Total % Received % Xferd Average Speed Time Time Time Current
6363 Dload Upload Total Spent Left Speed
6364 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6365 Dload Upload Total Spent Left Speed
6366 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6367 Dload Upload Total Spent Left Speed
6368100 1961k 100 1961k 0 0 1961k 0 0:00:01 0:00:01 --:--:-- 1789k
6369
6370100 789k 100 789k 0 0 789k 0 0:00:01 0:00:01 --:--:-- 440k
6371
6372100 18176 100 18176 0 0 18176 0 0:00:01 --:--:-- 0:00:01 68330
6373 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6374setupCompilerEnvironmentPhase
6375Build with /nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2.
6376100 18308 100 18308 0 0 18308 0 0:00:01 --:--:-- 0:00:01 34543
6377100 22192 100 22192 0 0 22192 0 0:00:01 --:--:-- 0:00:01 41325
6378
6379
6380fetching path ‘/nix/store/4m8n7xgyiqj60g782s12ygg8vxk5il7b-async-2.1.1.1’...
6381fetching path ‘/nix/store/pnicdgix0nibzidysy9llq0rgc8k8prg-parsec-3.1.13.0’...
6382fetching path ‘/nix/store/5p3rcx1knymrhhc3s6qcfll3bl92qalq-cereal-0.5.5.0’...
6383fetching path ‘/nix/store/12q9bzizlip223g1gxij8802ciyb2j4p-exceptions-0.8.3’...
6384fetching path ‘/nix/store/03iis1sa9h5l0lc0w3qp9qq59b9lmfpr-fingertree-0.1.3.1’...
6385fetching path ‘/nix/store/vfvvkl7x48xqqcygb3hybrag0npfq5vd-hashable-1.2.6.1’...
6386
6387*** Downloading ‘https://cache.nixos.org/nar/0na7djny5f4b3j97w5y3x5xd3scnb5sa724wp0y69s9ya3gamvpg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4m8n7xgyiqj60g782s12ygg8vxk5il7b-async-2.1.1.1’...
6388
6389*** Downloading ‘https://cache.nixos.org/nar/0g04k3r6cd9m1gwjcw99j4ciw6a85m9ijdajddgnswi4rb2jmxdv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/03iis1sa9h5l0lc0w3qp9qq59b9lmfpr-fingertree-0.1.3.1’...
6390
6391*** Downloading ‘https://cache.nixos.org/nar/155bkpqh506r0jyjx0rx2ibll4zdr0rpvpw9qd64wq8lhnngxgq3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/12q9bzizlip223g1gxij8802ciyb2j4p-exceptions-0.8.3’...
6392
6393*** Downloading ‘https://cache.nixos.org/nar/01563r298054km4xy7frzc8gdmkjgxrg1phzcfb2p307pfp3r4yk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5p3rcx1knymrhhc3s6qcfll3bl92qalq-cereal-0.5.5.0’...
6394 % Total % Received % Xferd Average Speed Time Time Time Current
6395 Dload Upload Total Spent Left Speed
6396 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6397 Dload Upload Total Spent Left Speed
6398 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6399 Dload Upload Total Spent Left Speed
6400 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6401*** Downloading ‘https://cache.nixos.org/nar/07chxllldjm07s20xarz7a4s8icn2mfya9s00dgjsprvd944m8b1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pnicdgix0nibzidysy9llq0rgc8k8prg-parsec-3.1.13.0’...
6402 % Total % Received % Xferd Average Speed Time Time Time Current
6403 Dload Upload Total Spent Left Speed
6404 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6405 Dload Upload Total Spent Left Speed
6406 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6407*** Downloading ‘https://cache.nixos.org/nar/09rx76ykhfq2nwbk7z4k7dir4hi8asfhkpk0xk7jcannvx77lir0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vfvvkl7x48xqqcygb3hybrag0npfq5vd-hashable-1.2.6.1’...
6408 % Total % Received % Xferd Average Speed Time Time Time Current
6409 Dload Upload Total Spent Left Speed
6410 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0unpacking sources
6411unpacking source archive /nix/store/6i2swwijw7irwgdqdd2y02zsrfwfdlyl-hmatrix-d83b171
6412100 309k 100 309k 0 0 309k 0 0:00:01 --:--:-- 0:00:01 1277k
6413
6414fetching path ‘/nix/store/ha142fq3fx937552lq04zgmxlns59hw0-regex-tdfa-1.2.2’...
6415source root is hmatrix-d83b171
6416Source root reset to hmatrix-d83b171/packages/base
6417patching sources
6418compileBuildDriverPhase
6419setupCompileFlags: -package-db=/private/tmp/nix-build-hmatrix-0.18.2.0.drv-0/package.conf.d -j1 -threaded
6420
6421*** Downloading ‘https://cache.nixos.org/nar/1ray5ml9mm3m5qp5qf04yf71crjwniqnsz1kgdx0lfbkgcql1cls.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ha142fq3fx937552lq04zgmxlns59hw0-regex-tdfa-1.2.2’...
6422 % Total % Received % Xferd Average Speed Time Time Time Current
6423 Dload Upload Total Spent Left Speed
6424 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0[1 of 1] Compiling Main ( Setup.lhs, /private/tmp/nix-build-hmatrix-0.18.2.0.drv-0/Main.o )
6425100 65040 100 65040 0 0 65040 0 0:00:01 --:--:-- 0:00:01 86145
6426
6427fetching path ‘/nix/store/hai4v1pj0xd9f4avwlvjaf3v01zc7icg-hspec-meta-2.4.6’...
6428Linking Setup ...
6429
6430*** Downloading ‘https://cache.nixos.org/nar/0a7syvqcfxqmcjhaihmw4mgprwa27jlx634bpq0z3qcxyj6r3i42.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hai4v1pj0xd9f4avwlvjaf3v01zc7icg-hspec-meta-2.4.6’...
6431 % Total % Received % Xferd Average Speed Time Time Time Current
6432 Dload Upload Total Spent Left Speed
6433100 93800 100 93800 0 0 93800 0 0:00:01 --:--:-- 0:00:01 99k
6434100 234k 100 234k 0 0 234k 0 0:00:01 --:--:-- 0:00:01 239k
6435
6436fetching path ‘/nix/store/wx8zk1sm84lfqij2hayghhnjl9z6dmy2-case-insensitive-1.2.0.10’...
6437
6438fetching path ‘/nix/store/9h0d73fhbk3cb7qx3wzlr92yzb4j1xmb-hashable-time-0.2.0.1’...
6439100 276k 100 276k 0 0 276k 0 0:00:01 0:00:01 --:--:-- 263k
6440100 81820 100 81820 0 0 81820 0 0:00:01 0:00:01 --:--:-- 77188
6441
6442
6443fetching path ‘/nix/store/kz9xb1qlbvs0zv046fdsix4249z0n2zn-unordered-containers-0.2.8.0’...
6444fetching path ‘/nix/store/v00p09vfiycilvid0q62hwzsjcniq0mk-hfsevents-0.1.6’...
6445clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6446
6447*** Downloading ‘https://cache.nixos.org/nar/0ir7klzhdl37f7b46m1ch0p31vfw80lxfq5m1snl2sly6zh7sa2i.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wx8zk1sm84lfqij2hayghhnjl9z6dmy2-case-insensitive-1.2.0.10’...
6448 % Total % Received % Xferd Average Speed Time Time Time Current
6449 Dload Upload Total Spent Left Speed
6450 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6451*** Downloading ‘https://cache.nixos.org/nar/0arlc24w5hqffl8ahnsm4qsswc6v6d630jbz3i3gn0q2xk7f8qxa.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9h0d73fhbk3cb7qx3wzlr92yzb4j1xmb-hashable-time-0.2.0.1’...
6452 % Total % Received % Xferd Average Speed Time Time Time Current
6453 Dload Upload Total Spent Left Speed
6454 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6455*** Downloading ‘https://cache.nixos.org/nar/1qwscykixznxiqdb87gpqkj6x5hdkpz7jmyb5jr3av56d0zwzwm5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kz9xb1qlbvs0zv046fdsix4249z0n2zn-unordered-containers-0.2.8.0’...
6456clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6457
6458*** Downloading ‘https://cache.nixos.org/nar/02pnidyzmy826rzi96zwyv2qrfgzsp2s7l4kk9n002piqv9r68x8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v00p09vfiycilvid0q62hwzsjcniq0mk-hfsevents-0.1.6’...
6459 % Total % Received % Xferd Average Speed Time Time Time Current
6460 Dload Upload Total Spent Left Speed
6461 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6462 Dload Upload Total Spent Left Speed
6463 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0setupCompilerEnvironmentPhase
6464Build with /nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2.
6465 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0unpacking sources
6466unpacking source archive /nix/store/6i2swwijw7irwgdqdd2y02zsrfwfdlyl-hmatrix-d83b171
6467source root is hmatrix-d83b171
6468Source root reset to hmatrix-d83b171/packages/gsl
6469patching sources
6470compileBuildDriverPhase
6471setupCompileFlags: -package-db=/private/tmp/nix-build-hmatrix-gsl-0.18.2.0.drv-0/package.conf.d -j1 -threaded
6472 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0[1 of 1] Compiling Main ( Setup.lhs, /private/tmp/nix-build-hmatrix-gsl-0.18.2.0.drv-0/Main.o )
6473100 47196 100 47196 0 0 47196 0 0:00:01 --:--:-- 0:00:01 61533
6474
6475fetching path ‘/nix/store/k672rn51alcrr8qhh9ndy1299zx0c9ky-monad-par-extras-0.3.3’...
6476Linking Setup ...
6477
6478*** Downloading ‘https://cache.nixos.org/nar/1n5zihl85h37i4a6qwv19c2hwb6zf5x4622a17kcqhfk9bdcs2cr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k672rn51alcrr8qhh9ndy1299zx0c9ky-monad-par-extras-0.3.3’...
6479 % Total % Received % Xferd Average Speed Time Time Time Current
6480 Dload Upload Total Spent Left Speed
6481100 240k 100 240k 0 0 240k 0 0:00:01 --:--:-- 0:00:01 288k
6482100 16956 100 16956 0 0 16956 0 0:00:01 --:--:-- 0:00:01 18134
6483
6484
6485fetching path ‘/nix/store/mv216yb48hv8d2cly2jczqaswimz2yc5-temporary-1.2.1.1’...
6486fetching path ‘/nix/store/dff0wsv9zp23m2aglwpss0bkk3ac4fh1-charset-0.3.7.1’...
6487clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6488clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6489
6490*** Downloading ‘https://cache.nixos.org/nar/0z7rjimk6j913fipc24was92lcprnwc8wx3q0xg25j3przv4apwz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mv216yb48hv8d2cly2jczqaswimz2yc5-temporary-1.2.1.1’...
6491
6492*** Downloading ‘https://cache.nixos.org/nar/1p2znafxmc12aq6iys8l5cvmpbfqb0zn00rgjkbvm4zzyjhqkf8k.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dff0wsv9zp23m2aglwpss0bkk3ac4fh1-charset-0.3.7.1’...
6493 % Total % Received % Xferd Average Speed Time Time Time Current
6494 Dload Upload Total Spent Left Speed
6495 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6496 Dload Upload Total Spent Left Speed
6497100 29592 100 29592 0 0 29592 0 0:00:01 --:--:-- 0:00:01 29800
6498
6499fetching path ‘/nix/store/7p97jn35bcw64fxc7lhv53hapl65nv34-temporary-rc-1.2.0.3’...
6500
6501*** Downloading ‘https://cache.nixos.org/nar/068xs8lxfk3jd37y54ilfl3k807vlcq4rw141gf2j9qvny8hjww3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7p97jn35bcw64fxc7lhv53hapl65nv34-temporary-rc-1.2.0.3’...
6502 % Total % Received % Xferd Average Speed Time Time Time Current
6503 Dload Upload Total Spent Left Speed
6504 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0configuring
6505configureFlags: --verbose --prefix=/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --docdir=/nix/store/zy63c20iybz79vlgkr3rsrb5mxikvj9z-hmatrix-0.18.2.0-doc/share/doc --with-gcc=clang --package-db=/private/tmp/nix-build-hmatrix-0.18.2.0.drv-0/package.conf.d --ghc-option=-optl=-Wl,-headerpad_max_install_names --ghc-option=-j1 --disable-split-objs --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-library-vanilla --enable-executable-dynamic --enable-tests -fdisable-default-paths -fopenblas --extra-include-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/include --extra-lib-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/lib --extra-lib-dirs=/nix/store/a67rhbgwb41j11j6mgww3y0gq4pg0lmp-ncurses-6.0-20171125/lib --extra-lib-dirs=/nix/store/lasa9z5jcwhq3djd3mw8q9b0a75da5as-gmp-6.1.2/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/kh1d4w40kahbl63lrr45q349hfvgp6j2-openblas-0.2.20/include --extra-lib-dirs=/nix/store/kh1d4w40kahbl63lrr45q349hfvgp6j2-openblas-0.2.20/lib
6506100 21752 100 21752 0 0 21752 0 0:00:01 --:--:-- 0:00:01 41275
6507
6508fetching path ‘/nix/store/ay5jrs1zz68sfpihx999964xxm09j3zw-fsnotify-0.2.1.1’...
6509
6510*** Downloading ‘https://cache.nixos.org/nar/02zn50x6azwqnn14qqbr8vbc3vqa1cjlz55b3cbsvv2p2jpjj63c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ay5jrs1zz68sfpihx999964xxm09j3zw-fsnotify-0.2.1.1’...
6511 % Total % Received % Xferd Average Speed Time Time Time Current
6512 Dload Upload Total Spent Left Speed
6513100 15052 100 15052 0 0 15052 0 0:00:01 0:00:01 --:--:-- 14873
6514
6515 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0configuring
6516configureFlags: --verbose --prefix=/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --docdir=/nix/store/w2pd2c6xp8sllhwaq2hdyd6bdwp6lp8s-hmatrix-gsl-0.18.2.0-doc/share/doc --with-gcc=clang --package-db=/private/tmp/nix-build-hmatrix-gsl-0.18.2.0.drv-0/package.conf.d --ghc-option=-optl=-Wl,-headerpad_max_install_names --ghc-option=-j1 --disable-split-objs --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-library-vanilla --enable-executable-dynamic --enable-tests --extra-include-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/include --extra-lib-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/lib --extra-lib-dirs=/nix/store/a67rhbgwb41j11j6mgww3y0gq4pg0lmp-ncurses-6.0-20171125/lib --extra-lib-dirs=/nix/store/lasa9z5jcwhq3djd3mw8q9b0a75da5as-gmp-6.1.2/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/9q0q47hlk4xb42fn949nvi8jppfmi3ag-gsl-2.4/include --extra-lib-dirs=/nix/store/9q0q47hlk4xb42fn949nvi8jppfmi3ag-gsl-2.4/lib
6517 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0Configuring hmatrix-0.18.2.0...
6518Flags chosen: disable-default-paths=True, openblas=True
6519Dependency array -any: using array-0.5.2.0
6520Dependency base >=4.8 && <5: using base-4.10.1.0
6521Dependency binary -any: using binary-0.8.5.1
6522Dependency bytestring -any: using bytestring-0.10.8.2
6523Dependency deepseq -any: using deepseq-1.4.3.0
6524Dependency random -any: using random-1.1
6525Dependency semigroups -any: using semigroups-0.18.4
6526Dependency split -any: using split-0.2.3.3
6527Dependency storable-complex -any: using storable-complex-0.2.2
6528Dependency vector >=0.8: using vector-0.12.0.1
6529100 419k 100 419k 0 0 209k 0 0:00:02 0:00:02 --:--:-- 148k
6530
6531fetching path ‘/nix/store/dazxclk27g4a3fqvwd6hln22g8mfgsd0-hspec-core-2.4.4’...
6532fetching path ‘/nix/store/3a8mhjzkv7lxjwkq9gy2iab6638m0i8n-hspec-discover-2.4.4’...
6533
6534*** Downloading ‘https://cache.nixos.org/nar/0lf3yrqp63vj0xk7big82yb52f38ip6gkjh87jwqbds20y3m986f.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dazxclk27g4a3fqvwd6hln22g8mfgsd0-hspec-core-2.4.4’...
6535
6536*** Downloading ‘https://cache.nixos.org/nar/1xzvl2sgzxh1bamdg1ldf484ambyzis2f1kn9wg93qxzm0wnc99c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3a8mhjzkv7lxjwkq9gy2iab6638m0i8n-hspec-discover-2.4.4’...
6537 % Total % Received % Xferd Average Speed Time Time Time Current
6538 Dload Upload Total Spent Left Speed
6539100 459k 100 459k 0 0 459k 0 0:00:01 0:00:01 --:--:-- 275k
6540 % Total % Received % Xferd Average Speed Time Time Time Current
6541 Dload Upload Total Spent Left Speed
6542 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6543clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6544100 98464 100 98464 0 0 98464 0 0:00:01 0:00:01 --:--:-- 82465
6545
6546Source component graph: component lib
6547Configured component graph:
6548 component hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf
6549 include base-4.10.1.0
6550 include binary-0.8.5.1
6551 include array-0.5.2.0
6552 include deepseq-1.4.3.0
6553 include random-1.1-LLUGZ7T9DqQ5vN0Jbcd0We
6554 include split-0.2.3.3-2PDVhpWI0vSDhUhU4uVnod
6555 include bytestring-0.10.8.2
6556 include storable-complex-0.2.2-4WEqCO29MfMHlD0g6H5VIw
6557 include semigroups-0.18.4-mxkGq2xNPcBC0dj8uuk3q
6558 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
6559Linked component graph:
6560 unit hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf
6561 include base-4.10.1.0
6562 include binary-0.8.5.1
6563 include array-0.5.2.0
6564 include deepseq-1.4.3.0
6565 include random-1.1-LLUGZ7T9DqQ5vN0Jbcd0We
6566 include split-0.2.3.3-2PDVhpWI0vSDhUhU4uVnod
6567 include bytestring-0.10.8.2
6568 include storable-complex-0.2.2-4WEqCO29MfMHlD0g6H5VIw
6569 include semigroups-0.18.4-mxkGq2xNPcBC0dj8uuk3q
6570 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
6571 Numeric.LinearAlgebra=hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf:Numeric.LinearAlgebra,Numeric.LinearAlgebra.Data=hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf:Numeric.LinearAlgebra.Data,Numeric.LinearAlgebra.Devel=hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf:Numeric.LinearAlgebra.Devel,Numeric.LinearAlgebra.HMatrix=hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf:Numeric.LinearAlgebra.HMatrix,Numeric.LinearAlgebra.Static=hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf:Numeric.LinearAlgebra.Static
6572Ready component graph:
6573 definite hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf
6574 depends base-4.10.1.0
6575 depends binary-0.8.5.1
6576 depends array-0.5.2.0
6577 depends deepseq-1.4.3.0
6578 depends random-1.1-LLUGZ7T9DqQ5vN0Jbcd0We
6579 depends split-0.2.3.3-2PDVhpWI0vSDhUhU4uVnod
6580 depends bytestring-0.10.8.2
6581 depends storable-complex-0.2.2-4WEqCO29MfMHlD0g6H5VIw
6582 depends semigroups-0.18.4-mxkGq2xNPcBC0dj8uuk3q
6583 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
6584Using Cabal-2.0.1.0 compiled by ghc-8.2
6585Using compiler: ghc-8.2.2
6586Using install prefix:
6587/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0
6588Executables installed in:
6589/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/bin
6590Libraries installed in:
6591/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0
6592Dynamic Libraries installed in:
6593/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2
6594Private executables installed in:
6595/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/libexec/x86_64-osx-ghc-8.2.2/hmatrix-0.18.2.0
6596Data files installed in:
6597/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/share/x86_64-osx-ghc-8.2.2/hmatrix-0.18.2.0
6598Documentation installed in:
6599/nix/store/zy63c20iybz79vlgkr3rsrb5mxikvj9z-hmatrix-0.18.2.0-doc/share/doc
6600Configuration files installed in:
6601/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/etc
6602No alex found
6603Using ar found on system at:
6604/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/ar
6605No c2hs found
6606No cpphs found
6607No doctest found
6608Using gcc version 4.2.1 given by user at:
6609/nix/store/53h1zds6q5k4ab4l7430fbddn0l0iq1c-clang-wrapper-5.0.1/bin/clang
6610Using ghc version 8.2.2 found on system at:
6611/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc
6612Using ghc-pkg version 8.2.2 found on system at:
6613/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc-pkg
6614No ghcjs found
6615No ghcjs-pkg found
6616No greencard found
6617Using haddock version 2.18.1 found on system at:
6618/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/haddock
6619No happy found
6620Using haskell-suite found on system at: haskell-suite-dummy-location
6621Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
6622No hmake found
6623Using hpc version 0.67 found on system at:
6624/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hpc
6625Using hsc2hs version 0.68.2 found on system at:
6626/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hsc2hs
6627Using hscolour version 1.24 found on system at:
6628/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2/bin/HsColour
6629No jhc found
6630Using ld found on system at:
6631/nix/store/cjhrjh6brgy1wahgbh5wqrflnb447bf8-cctools-binutils-darwin-wrapper/bin/ld
6632No lhc found
6633No lhc-pkg found
6634No pkg-config found
6635Using runghc version 8.2.2 found on system at:
6636/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/runghc
6637Using strip found on system at:
6638/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
6639Using tar found on system at:
6640/nix/store/nwj6x1d0bz45nzsch3rhnfa5wi4kf4nk-gnutar-1.30/bin/tar
6641No uhc found
6642building
6643 4 1962k 4 81920 0 0 20480 0 0:01:38 0:00:04 0:01:34 19956Preprocessing library for hmatrix-0.18.2.0..
6644Building library for hmatrix-0.18.2.0..
6645100 51980 100 51980 0 0 51980 0 0:00:01 --:--:-- 0:00:01 64975
6646
6647Configuring hmatrix-gsl-0.18.0.1...
6648Flags chosen: disable-default-paths=False, onlygsl=False
6649Dependency array -any: using array-0.5.2.0
6650Dependency base <5: using base-4.10.1.0
6651Dependency hmatrix >=0.18: using hmatrix-0.18.2.0
6652Dependency process -any: using process-1.6.1.0
6653Dependency random -any: using random-1.1
6654Dependency vector -any: using vector-0.12.0.1
6655clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6656100 1962k 100 1962k 0 0 490k 0 0:00:04 0:00:04 --:--:-- 422k
6657
6658fetching path ‘/nix/store/q8aqpnvjh465x5aarf8h5wjwqqim3d7q-tasty-0.11.3’...
6659 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0Dependency gsl -any: using version 2.4
6660Source component graph: component lib
6661Configured component graph:
6662 component hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT
6663 include base-4.10.1.0
6664 include hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf
6665 include array-0.5.2.0
6666 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
6667 include process-1.6.1.0
6668 include random-1.1-LLUGZ7T9DqQ5vN0Jbcd0We
6669Linked component graph:
6670 unit hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT
6671 include base-4.10.1.0
6672 include hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf
6673 include array-0.5.2.0
6674 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
6675 include process-1.6.1.0
6676 include random-1.1-LLUGZ7T9DqQ5vN0Jbcd0We
6677 Graphics.Plot=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Graphics.Plot,Numeric.GSL=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL,Numeric.GSL.Differentiation=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Differentiation,Numeric.GSL.Fitting=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Fitting,Numeric.GSL.Fourier=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Fourier,Numeric.GSL.Integration=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Integration,Numeric.GSL.Interpolation=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Interpolation,Numeric.GSL.LinearAlgebra=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.LinearAlgebra,Numeric.GSL.Minimization=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Minimization,Numeric.GSL.ODE=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.ODE,Numeric.GSL.Polynomials=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Polynomials,Numeric.GSL.Root=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.Root,Numeric.GSL.SimulatedAnnealing=hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT:Numeric.GSL.SimulatedAnnealing
6678Ready component graph:
6679 definite hmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT
6680 depends base-4.10.1.0
6681 depends hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf
6682 depends array-0.5.2.0
6683 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
6684 depends process-1.6.1.0
6685 depends random-1.1-LLUGZ7T9DqQ5vN0Jbcd0We
6686Using Cabal-2.0.1.0 compiled by ghc-8.2
6687Using compiler: ghc-8.2.2
6688Using install prefix:
6689/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0
6690Executables installed in:
6691/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/bin
6692Libraries installed in:
6693/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/hmatrix-gsl-0.18.0.1
6694Dynamic Libraries installed in:
6695/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2
6696Private executables installed in:
6697/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/libexec/x86_64-osx-ghc-8.2.2/hmatrix-gsl-0.18.0.1
6698Data files installed in:
6699/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/share/x86_64-osx-ghc-8.2.2/hmatrix-gsl-0.18.0.1
6700Documentation installed in:
6701/nix/store/w2pd2c6xp8sllhwaq2hdyd6bdwp6lp8s-hmatrix-gsl-0.18.2.0-doc/share/doc
6702Configuration files installed in:
6703/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/etc
6704No alex found
6705Using ar found on system at:
6706/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/ar
6707No c2hs found
6708No cpphs found
6709No doctest found
6710Using gcc version 4.2.1 given by user at:
6711/nix/store/53h1zds6q5k4ab4l7430fbddn0l0iq1c-clang-wrapper-5.0.1/bin/clang
6712Using ghc version 8.2.2 found on system at:
6713/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc
6714Using ghc-pkg version 8.2.2 found on system at:
6715/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc-pkg
6716No ghcjs found
6717No ghcjs-pkg found
6718No greencard found
6719Using haddock version 2.18.1 found on system at:
6720/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/haddock
6721No happy found
6722Using haskell-suite found on system at: haskell-suite-dummy-location
6723Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
6724No hmake found
6725Using hpc version 0.67 found on system at:
6726/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hpc
6727Using hsc2hs version 0.68.2 found on system at:
6728/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hsc2hs
6729Using hscolour version 1.24 found on system at:
6730/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2/bin/HsColour
6731No jhc found
6732Using ld found on system at:
6733/nix/store/cjhrjh6brgy1wahgbh5wqrflnb447bf8-cctools-binutils-darwin-wrapper/bin/ld
6734No lhc found
6735No lhc-pkg found
6736Using pkg-config version 0.29.2 found on system at:
6737/nix/store/j2zsla2jd1kmh67n95di6v8769jynwp8-pkg-config-0.29.2/bin/pkg-config
6738Using runghc version 8.2.2 found on system at:
6739/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/runghc
6740Using strip found on system at:
6741/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
6742Using tar found on system at:
6743/nix/store/nwj6x1d0bz45nzsch3rhnfa5wi4kf4nk-gnutar-1.30/bin/tar
6744No uhc found
6745building
6746
6747*** Downloading ‘https://cache.nixos.org/nar/0rkx7nx1r6kbc2z8x5ihlihplvijkiw9p83gbiv95yf4m6h9s6gf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q8aqpnvjh465x5aarf8h5wjwqqim3d7q-tasty-0.11.3’...
6748 % Total % Received % Xferd Average Speed Time Time Time Current
6749 Dload Upload Total Spent Left Speed
6750 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0[ 1 of 27] Compiling Internal.Vector ( src/Internal/Vector.hs, dist/build/Internal/Vector.o )
6751Preprocessing library for hmatrix-gsl-0.18.0.1..
6752Building library for hmatrix-gsl-0.18.0.1..
6753100 247k 100 247k 0 0 247k 0 0:00:01 --:--:-- 0:00:01 1047k
6754
6755fetching path ‘/nix/store/l993h9hlgr4v9r7pdfb72v71rdwanwh9-tasty-expected-failure-0.11.0.4’...
6756fetching path ‘/nix/store/q6lqnir49nv0p7brygicf3z6s9q2qf6h-tasty-hunit-0.9.2’...
6757fetching path ‘/nix/store/ldjcbgcwi7vqsh3mw7adb6b82j7n8385-tasty-smallcheck-0.8.1’...
6758 0 63744 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0
6759*** Downloading ‘https://cache.nixos.org/nar/05bpq68fk9zv2rha1ib4dr9hyhwpn33vca7dy4iwvglvvs2g75gw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q6lqnir49nv0p7brygicf3z6s9q2qf6h-tasty-hunit-0.9.2’...
6760
6761*** Downloading ‘https://cache.nixos.org/nar/1x49ky3faikbvyd32q0lzlf41jfg5gki3xw1g7v9cfq3cq5wgdr0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l993h9hlgr4v9r7pdfb72v71rdwanwh9-tasty-expected-failure-0.11.0.4’...
6762
6763*** Downloading ‘https://cache.nixos.org/nar/0xdrcc213b966lsg65b80zwa5rdb2imc5ng159dp0gqz975czd2m.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ldjcbgcwi7vqsh3mw7adb6b82j7n8385-tasty-smallcheck-0.8.1’...
6764 % Total % Received % Xferd Average Speed Time Time Time Current
6765 Dload Upload Total Spent Left Speed
6766 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6767 Dload Upload Total Spent Left Speed
6768 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6769 Dload Upload Total Spent Left Speed
6770100 63744 100 63744 0 0 21248 0 0:00:03 0:00:03 --:--:-- 15943
6771
6772fetching path ‘/nix/store/dbaq1pk33sig9i9v7871nq4yww99jln2-monad-par-0.3.4.8’...
6773[ 1 of 17] Compiling Graphics.Plot ( src/Graphics/Plot.hs, dist/build/Graphics/Plot.o )
6774100 29488 100 29488 0 0 29488 0 0:00:01 --:--:-- 0:00:01 173k
6775100 21364 100 21364 0 0 21364 0 0:00:01 --:--:-- 0:00:01 133k
6776
6777
6778fetching path ‘/nix/store/s481zd8cqx2sqfmdjmg789qwx1vd4354-tasty-quickcheck-0.9.1’...
6779
6780*** Downloading ‘https://cache.nixos.org/nar/14270zq0x7ssxppp2ci2h3lf13s56n5xhbk7l4g6dymbw2l9j9dq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dbaq1pk33sig9i9v7871nq4yww99jln2-monad-par-0.3.4.8’...
6781100 15312 100 15312 0 0 15312 0 0:00:01 --:--:-- 0:00:01 76179
6782 % Total % Received % Xferd Average Speed Time Time Time Current
6783 Dload Upload Total Spent Left Speed
6784 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6785
6786*** Downloading ‘https://cache.nixos.org/nar/1dina6p6vjjbk23yvvxag1ss18sh0zhndlssg0zpvrhxwczywvi9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s481zd8cqx2sqfmdjmg789qwx1vd4354-tasty-quickcheck-0.9.1’...
6787 % Total % Received % Xferd Average Speed Time Time Time Current
6788 Dload Upload Total Spent Left Speed
6789100 40200 100 40200 0 0 40200 0 0:00:01 --:--:-- 0:00:01 236k
6790
6791fetching path ‘/nix/store/4x4my0ax3jfygz5bfkwi26wd1snlwaw7-uuid-types-1.0.3’...
6792fetching path ‘/nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4’...
6793
6794*** Downloading ‘https://cache.nixos.org/nar/189cqlmhdbr241xzl84ji5r2f120b2gp3pjcdwq8ixcc7756gakw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4’...
6795
6796*** Downloading ‘https://cache.nixos.org/nar/14crskh0y1vyg43bjbd6l8l22bzvr64p3v6cmgq0y5zw0pnqy5i3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4x4my0ax3jfygz5bfkwi26wd1snlwaw7-uuid-types-1.0.3’...
6797 % Total % Received % Xferd Average Speed Time Time Time Current
6798 Dload Upload Total Spent Left Speed
6799 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6800 Dload Upload Total Spent Left Speed
6801100 122k 100 122k 0 0 122k 0 0:00:01 --:--:-- 0:00:01 210k
6802100 88584 100 88584 0 0 88584 0 0:00:01 --:--:-- 0:00:01 491k
6803
6804
6805[ 2 of 17] Compiling Numeric.GSL.Internal ( src/Numeric/GSL/Internal.hs, dist/build/Numeric/GSL/Internal.o )
6806100 32772 100 32772 0 0 32772 0 0:00:01 --:--:-- 0:00:01 45963
6807
6808clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6809clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6810clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6811clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6812[ 3 of 17] Compiling Numeric.GSL.Integration ( src/Numeric/GSL/Integration.hs, dist/build/Numeric/GSL/Integration.o )
6813 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6814clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6815[ 2 of 27] Compiling Internal.Devel ( src/Internal/Devel.hs, dist/build/Internal/Devel.o )
6816clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6817[ 3 of 27] Compiling Internal.Vectorized ( src/Internal/Vectorized.hs, dist/build/Internal/Vectorized.o )
6818clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6819[ 4 of 17] Compiling Numeric.GSL.Fourier ( src/Numeric/GSL/Fourier.hs, dist/build/Numeric/GSL/Fourier.o )
6820 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0[ 5 of 17] Compiling Numeric.GSL.Fitting ( src/Numeric/GSL/Fitting.hs, dist/build/Numeric/GSL/Fitting.o )
6821100 385k 100 385k 0 0 65728 0 0:00:06 0:00:06 --:--:-- 99313
6822
6823fetching path ‘/nix/store/f99mi34pgfzbcmy3pg4s64dkc17yds1j-hspec-2.4.4’...
6824
6825*** Downloading ‘https://cache.nixos.org/nar/1izhl07mdlsg1512a0169skhqacvy4ag0276h4h3fl7q2yg8vdlm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f99mi34pgfzbcmy3pg4s64dkc17yds1j-hspec-2.4.4’...
6826 % Total % Received % Xferd Average Speed Time Time Time Current
6827 Dload Upload Total Spent Left Speed
6828 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0[ 6 of 17] Compiling Numeric.GSL.Differentiation ( src/Numeric/GSL/Differentiation.hs, dist/build/Numeric/GSL/Differentiation.o )
6829clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6830100 45036 100 45036 0 0 45036 0 0:00:01 0:00:01 --:--:-- 42247
6831
6832fetching path ‘/nix/store/zlvc7nj6f0zlsiz4v2i7xqblxfp71ypm-base-compat-0.9.3’...
6833fetching path ‘/nix/store/wf6s78cwilnjk5jds2wfi0jfydz8p1sy-base-orphans-0.6’...
6834fetching path ‘/nix/store/xmd37s91chhb6wng94vzmpc5lzn753am-generic-deriving-1.12.1’...
6835fetching path ‘/nix/store/5lkgxraw06ca7lbkg1dwhxjgb1hpdckb-logging-facade-0.3.0’...
6836fetching path ‘/nix/store/3i4r6m8vwkzjj32f95zcl5f8v3f2l0qn-newtype-generics-0.5.2.1’...
6837fetching path ‘/nix/store/9b3ixrhf8r4dm26mpz2jgagfrzpgn0qd-quickcheck-assertions-0.3.0’...
6838clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6839
6840*** Downloading ‘https://cache.nixos.org/nar/1jdfk08yaa5xwfzf6989cnwsby1ssvy2n1zq8mxgp9y6z8gjqgcy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zlvc7nj6f0zlsiz4v2i7xqblxfp71ypm-base-compat-0.9.3’...
6841
6842*** Downloading ‘https://cache.nixos.org/nar/1d3dd2xrl1n30m7312wgidz2l5n8qm81fczfp8sqzppcwrwvqyl0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wf6s78cwilnjk5jds2wfi0jfydz8p1sy-base-orphans-0.6’...
6843
6844*** Downloading ‘https://cache.nixos.org/nar/0b256y3v41v3hvxczsg3v38xv6sjiympm0hwsiqqvjfsyh8wakbj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xmd37s91chhb6wng94vzmpc5lzn753am-generic-deriving-1.12.1’...
6845 % Total % Received % Xferd Average Speed Time Time Time Current
6846 Dload Upload Total Spent Left Speed
6847 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6848*** Downloading ‘https://cache.nixos.org/nar/0d2rqjrbj0dbbxrprga0nzpw9a66cp7fanxxwrc4sp13v05ma24c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5lkgxraw06ca7lbkg1dwhxjgb1hpdckb-logging-facade-0.3.0’...
6849 % Total % Received % Xferd Average Speed Time Time Time Current
6850 Dload Upload Total Spent Left Speed
6851 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6852*** Downloading ‘https://cache.nixos.org/nar/1q6x3clnxrrfjl9caphl4bph8hjmgcgd18ny2pa9d8wy9bksq2j7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3i4r6m8vwkzjj32f95zcl5f8v3f2l0qn-newtype-generics-0.5.2.1’...
6853 % Total % Received % Xferd Average Speed Time Time Time Current
6854 Dload Upload Total Spent Left Speed
6855 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6856 Dload Upload Total Spent Left Speed
6857 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6858 Dload Upload Total Spent Left Speed
6859 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6860*** Downloading ‘https://cache.nixos.org/nar/1acxpk4szlkva3i2fcawdz5mc3q5jgvb302f1vbyil063a1w0ln0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9b3ixrhf8r4dm26mpz2jgagfrzpgn0qd-quickcheck-assertions-0.3.0’...
6861 % Total % Received % Xferd Average Speed Time Time Time Current
6862 Dload Upload Total Spent Left Speed
6863 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6864clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
6865[ 7 of 17] Compiling Numeric.GSL.Interpolation ( src/Numeric/GSL/Interpolation.hs, dist/build/Numeric/GSL/Interpolation.o )
6866100 5196 100 5196 0 0 5196 0 0:00:01 --:--:-- 0:00:01 10148
6867
6868fetching path ‘/nix/store/5glr4dq393jpl7wh8ygn7gyidgvdssvp-stringbuilder-0.5.1’...
6869100 30716 100 30716 0 0 30716 0 0:00:01 --:--:-- 0:00:01 55745
6870
6871fetching path ‘/nix/store/406ias819m5r0nk37a3v0hri7y8r8amd-th-orphans-0.13.5’...
6872100 77568 100 77568 0 0 77568 0 0:00:01 --:--:-- 0:00:01 130k
6873
6874fetching path ‘/nix/store/n38ypfnnkih9g3kyzg6sizqp2p30l7aj-temporary-1.2.1.1’...
6875
6876*** Downloading ‘https://cache.nixos.org/nar/0iwn2p4wp8vyzbbdqiv9rh2g2m2b7v970nzm9m9rnb5lvs2hlzw0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5glr4dq393jpl7wh8ygn7gyidgvdssvp-stringbuilder-0.5.1’...
6877100 21188 100 21188 0 0 21188 0 0:00:01 --:--:-- 0:00:01 32798
6878100 15372 100 15372 0 0 15372 0 0:00:01 --:--:-- 0:00:01 23795
6879
6880 % Total % Received % Xferd Average Speed Time Time Time Current
6881 Dload Upload Total Spent Left Speed
6882 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6883fetching path ‘/nix/store/9jlxg24j8i02qgzkjv4rwmffvv5kn961-with-location-0.1.0’...
6884100 820k 100 820k 0 0 820k 0 0:00:01 --:--:-- 0:00:01 1181k
6885
6886fetching path ‘/nix/store/6gac7yh0cx5ix1sy7jmqnk2c6wfw3k33-tasty-ant-xml-1.1.3’...
6887
6888*** Downloading ‘https://cache.nixos.org/nar/117vqvlnsrgizy8qp5khn8n4rvrpls0viv3cy9nd6gv1k43ls7yf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/406ias819m5r0nk37a3v0hri7y8r8amd-th-orphans-0.13.5’...
6889 % Total % Received % Xferd Average Speed Time Time Time Current
6890 Dload Upload Total Spent Left Speed
6891 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6892*** Downloading ‘https://cache.nixos.org/nar/1jb4ksqrnp0hiy6j4zlh136l4f5vlwdpdzdpd278wyck6c20ja7l.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n38ypfnnkih9g3kyzg6sizqp2p30l7aj-temporary-1.2.1.1’...
6893 % Total % Received % Xferd Average Speed Time Time Time Current
6894 Dload Upload Total Spent Left Speed
6895 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6896*** Downloading ‘https://cache.nixos.org/nar/0qkyfjfliw5x771lyyl3mnzhrc1dasglqjfwagzj9pgq8cc8qf4w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9jlxg24j8i02qgzkjv4rwmffvv5kn961-with-location-0.1.0’...
6897 % Total % Received % Xferd Average Speed Time Time Time Current
6898 Dload Upload Total Spent Left Speed
6899 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6900*** Downloading ‘https://cache.nixos.org/nar/19r3amy140pxni8aj0rilsnk10d2hsbsf4471hnq7m2xr7yh3j67.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6gac7yh0cx5ix1sy7jmqnk2c6wfw3k33-tasty-ant-xml-1.1.3’...
6901 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6902 Dload Upload Total Spent Left Speed
6903100 16060 100 16060 0 0 16060 0 0:00:01 --:--:-- 0:00:01 98k
6904
6905fetching path ‘/nix/store/0fmh02khm96ppk5ffladybs4w7g5f4br-mockery-0.3.5’...
6906fetching path ‘/nix/store/3jj2k2w0c2k5p95b5mn0xfw1nv71plsg-silently-1.2.5’...
6907 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6908*** Downloading ‘https://cache.nixos.org/nar/0lrpnk7r7cdbvhl8w5mwsg5kpif94sw7h371xql79pn39j3psdfc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/0fmh02khm96ppk5ffladybs4w7g5f4br-mockery-0.3.5’...
6909100 30884 100 30884 0 0 30884 0 0:00:01 --:--:-- 0:00:01 188k
6910100 118k 100 118k 0 0 118k 0 0:00:01 --:--:-- 0:00:01 377k
6911
6912*** Downloading ‘https://cache.nixos.org/nar/08y6z67yws4a34prd9g1mwqjaf5fd6lm13a16lhm319mkawqzibs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3jj2k2w0c2k5p95b5mn0xfw1nv71plsg-silently-1.2.5’...
6913
6914 % Total % Received % Xferd Average Speed Time Time Time Current
6915 Dload Upload Total Spent Left Speed
6916 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/a1lb1fj4h06yspyqxwn1jkwn73dvymqp-tasty-golden-2.3.1.2’...
6917
6918fetching path ‘/nix/store/5nqfwms9n2rrxf0ccbrn2ihfadv9k48f-scientific-0.3.5.2’...
6919 % Total % Received % Xferd Average Speed Time Time Time Current
6920 Dload Upload Total Spent Left Speed
6921 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6922*** Downloading ‘https://cache.nixos.org/nar/1vw90aq7mbmx12r2c6a8755l70jz9z4aqy7446gd0hlk7vcabgy5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a1lb1fj4h06yspyqxwn1jkwn73dvymqp-tasty-golden-2.3.1.2’...
6923 % Total % Received % Xferd Average Speed Time Time Time Current
6924 Dload Upload Total Spent Left Speed
6925 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6926*** Downloading ‘https://cache.nixos.org/nar/0y82hfy8v9bbj8k0yqcshikfcb653d940gy0rlnklgdnl3f4gxc1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5nqfwms9n2rrxf0ccbrn2ihfadv9k48f-scientific-0.3.5.2’...
6927 % Total % Received % Xferd Average Speed Time Time Time Current
6928 Dload Upload Total Spent Left Speed
6929100 11420 100 11420 0 0 11420 0 0:00:01 --:--:-- 0:00:01 18599
6930
6931fetching path ‘/nix/store/ay7wlzxfrq487jcsyk8va8fd4d37q6bm-th-desugar-1.7’...
6932100 15436 100 15436 0 0 15436 0 0:00:01 --:--:-- 0:00:01 59369
6933100 16780 100 16780 0 0 16780 0 0:00:01 --:--:-- 0:00:01 31541
6934
6935
6936100 33584 100 33584 0 0 33584 0 0:00:01 --:--:-- 0:00:01 107k
6937
6938fetching path ‘/nix/store/c9ysjnfm24hrmjcnjf7xhzgsmkq1ibp2-doctest-0.13.0’...
6939100 46172 100 46172 0 0 46172 0 0:00:01 --:--:-- 0:00:01 222k
6940
6941*** Downloading ‘https://cache.nixos.org/nar/1m5mlz899kl5l56kgl7gxcwcknx7ah4lzjj7bia4rv6zck73j2fk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ay7wlzxfrq487jcsyk8va8fd4d37q6bm-th-desugar-1.7’...
6942
6943 % Total % Received % Xferd Average Speed Time Time Time Current
6944 Dload Upload Total Spent Left Speed
6945100 156k 100 156k 0 0 156k 0 0:00:01 --:--:-- 0:00:01 693k
6946
6947fetching path ‘/nix/store/hrn2rz0a6359k91m80mnv6n37appb82x-attoparsec-0.13.2.2’...
6948fetching path ‘/nix/store/9wigxzwpp2vnc1dvwwnrb846xiv7x3h9-quickcheck-instances-0.3.16.1’...
6949
6950*** Downloading ‘https://cache.nixos.org/nar/1kzp3hv27yi2c9cqym2j6lzs0j3l8zqjabkj5iwnqc8nglpyhx3w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/c9ysjnfm24hrmjcnjf7xhzgsmkq1ibp2-doctest-0.13.0’...
6951 % Total % Received % Xferd Average Speed Time Time Time Current
6952 Dload Upload Total Spent Left Speed
6953 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6954*** Downloading ‘https://cache.nixos.org/nar/1ylmy56dl4xwvwgxn1ckw7rrpqgfwhavr44d96az758k4fyjj542.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9wigxzwpp2vnc1dvwwnrb846xiv7x3h9-quickcheck-instances-0.3.16.1’...
6955
6956*** Downloading ‘https://cache.nixos.org/nar/0naxmkp1pg0gvvbci44cz2wmlyln2qgrfq2nibqpi4m42pr90i13.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hrn2rz0a6359k91m80mnv6n37appb82x-attoparsec-0.13.2.2’...
6957 % Total % Received % Xferd Average Speed Time Time Time Current
6958 % Total % Received % Xferd Ave rage Speed Tim Dload Upload Total Spent Left Speed
6959 0 0 0 0 0 0 0 0 e Time Time --:--:-- --:--:Current
6960 -- --:--:-- 0 Dload Upload Total Spent Left Speed
6961 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0[ 8 of 17] Compiling Numeric.GSL.LinearAlgebra ( src/Numeric/GSL/LinearAlgebra.hs, dist/build/Numeric/GSL/LinearAlgebra.o )
6962100 235k 100 235k 0 0 235k 0 0:00:01 --:--:-- 0:00:01 806k
6963
6964fetching path ‘/nix/store/i4mzslx07aa3y81z546ih8cscm8yi0p5-bytes-0.15.3’...
6965fetching path ‘/nix/store/gmpdgfa29kwqq9xkgvnvjshy1xd88gh2-distributive-0.5.3’...
6966100 132k 100 132k 0 0 132k 0 0:00:01 --:--:-- 0:00:01 506k
6967
6968100 655k 100 655k 0 0 655k 0 0:00:01 --:--:-- 0:00:01 2126k
6969
6970fetching path ‘/nix/store/w82d2a5lqw2ykdnf3yligp32zpd7jrx6-aeson-1.2.4.0’...
6971fetching path ‘/nix/store/l60xxc6ycd5qbn0g4ap9dwk3pjx8b1zd-parsers-0.12.8’...
6972
6973*** Downloading ‘https://cache.nixos.org/nar/0j4yiy0mvmmxwawp47pln1nx16d9wgcsiacdivzpx33sk5gf38mj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gmpdgfa29kwqq9xkgvnvjshy1xd88gh2-distributive-0.5.3’...
6974
6975*** Downloading ‘https://cache.nixos.org/nar/064shhl9xjz4pb4vqiqbpqff7w879qpwi1plfdvrq9hgxy9kmz3h.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/i4mzslx07aa3y81z546ih8cscm8yi0p5-bytes-0.15.3’...
6976 % Total % Received % Xferd Average Speed Time Time Time Current
6977 Dload Upload Total Spent Left Speed
6978 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6979 Dload Upload Total Spent Left Speed
6980 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
6981*** Downloading ‘https://cache.nixos.org/nar/1q03a140q10df6hcg8isb51c2r1whqk2ljw9izg329ff97lc2mkv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/w82d2a5lqw2ykdnf3yligp32zpd7jrx6-aeson-1.2.4.0’...
6982
6983*** Downloading ‘https://cache.nixos.org/nar/1chfzvbzmlr2f6ysn523cnp8nymbgshmhsjj7r6pl6qcqlfqp884.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l60xxc6ycd5qbn0g4ap9dwk3pjx8b1zd-parsers-0.12.8’...
6984 % Total % Received % Xferd Average Speed Time Time Time Current
6985 Dload Upload Total Spent Left Speed
6986 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
6987 Dload Upload Total Spent Left Speed
6988100 47696 100 47696 0 0 47696 0 0:00:01 --:--:-- 0:00:01 232k
6989
6990fetching path ‘/nix/store/1as6ird2m1wcyjrlfn1jzj2m0yds6szr-comonad-5.0.3’...
6991fetching path ‘/nix/store/spxds76iy139j5rwhz6n6qg35bpfqgz7-intervals-0.8.1’...
6992[ 9 of 17] Compiling Numeric.GSL.Minimization ( src/Numeric/GSL/Minimization.hs, dist/build/Numeric/GSL/Minimization.o )
6993
6994*** Downloading ‘https://cache.nixos.org/nar/137g6v33cy82dhk6nqf0d571lh1mmf3whjyj6xhifqybh4cv92zf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/spxds76iy139j5rwhz6n6qg35bpfqgz7-intervals-0.8.1’...
6995
6996*** Downloading ‘https://cache.nixos.org/nar/1qizji2z2lpays85jv2mkcpn5rxw76niyqbmjsyh1j2vny3a9m0a.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1as6ird2m1wcyjrlfn1jzj2m0yds6szr-comonad-5.0.3’...
6997 % Total % Received % Xferd Average Speed Time Time Time Current
6998 Dload Upload Total Spent Left Speed
6999 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
7000 Dload Upload Total Spent Left Speed
7001100 130k 100 130k 0 0 130k 0 0:00:01 --:--:-- 0:00:01 570k
7002
7003fetching path ‘/nix/store/b2d4fg7xzljhmf29bpysfdla9kf3jnv9-bifunctors-5.5.2’...
7004
7005*** Downloading ‘https://cache.nixos.org/nar/02dgswk4ga8fq4m67fzxml8ijqdkjqzvbxvr5akc6l68ni07s38s.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/b2d4fg7xzljhmf29bpysfdla9kf3jnv9-bifunctors-5.5.2’...
7006 % Total % Received % Xferd Average Speed Time Time Time Current
7007 Dload Upload Total Spent Left Speed
7008100 682k 100 682k 0 0 682k 0 0:00:01 0:00:01 --:--:-- 487k
7009
7010fetching path ‘/nix/store/7c2zb017gs6sad4hzy5m3skpa6d83had-singletons-2.3.1’...
7011 18 269k 18 50805 0 0 50805 0 0:00:05 --:--:-- 0:00:05 55952
7012*** Downloading ‘https://cache.nixos.org/nar/180xyl4appwlvjf4zfcfk0fj64cjwih74rmg73sw2282sxckciqh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7c2zb017gs6sad4hzy5m3skpa6d83had-singletons-2.3.1’...
7013100 1727k 100 1727k 0 0 1727k 0 0:00:01 --:--:-- 0:00:01 1915k
7014 % Total % Received % Xferd Average Speed Time Time Time Current
7015 Dload Upload Total Spent Left Speed
7016 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
7017fetching path ‘/nix/store/b7fkdx0p7jryq17hy8q731scsyiwhhkw-statistics-0.14.0.2’...
7018
7019*** Downloading ‘https://cache.nixos.org/nar/0fb1a2q3qafd8iv1sc5nclvhwixhpsygrrb636md32q1x5rrld7y.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/b7fkdx0p7jryq17hy8q731scsyiwhhkw-statistics-0.14.0.2’...
7020 % Total % Received % Xferd Average Speed Time Time Time Current
7021 Dload Upload Total Spent Left Speed
7022100 269k 100 269k 0 0 269k 0 0:00:01 0:00:01 --:--:-- 199k
7023
7024100 368k 100 368k 0 0 368k 0 0:00:01 --:--:-- 0:00:01 486k
7025
7026fetching path ‘/nix/store/zps2vh471fb8szkycvpb3agqj1n3zys1-profunctors-5.2.2’...
7027fetching path ‘/nix/store/ibiyyz6q8p01h5s13ghyz9savrxyxxpy-semigroupoids-5.2.1’...
7028100 367k 100 367k 0 0 367k 0 0:00:01 0:00:01 --:--:-- 245k
7029
7030fetching path ‘/nix/store/yb1rwg6lcv172mrsl3dkis0qhkx5pf1p-inline-c-0.6.0.5’...
7031100 303k 100 303k 0 0 303k 0 0:00:01 0:00:01 --:--:-- 231k
7032
7033*** Downloading ‘https://cache.nixos.org/nar/1qnsk43sw9nss6fx27nhycr3zs64zqpi3fym35s3ng9zs0c9y6d8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ibiyyz6q8p01h5s13ghyz9savrxyxxpy-semigroupoids-5.2.1’...
7034
7035*** Downloading ‘https://cache.nixos.org/nar/14mbic21bg21vr8civnb0bs6sflrf5nq23v9jxz327cv0dvgpba4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zps2vh471fb8szkycvpb3agqj1n3zys1-profunctors-5.2.2’...
7036
7037 % Total % Received % Xferd Average Speed Time Time Time Current
7038 Dload Upload Total Spent Left Speed
7039 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
7040 Dload Upload Total Spent Left Speed
7041 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
7042*** Downloading ‘https://cache.nixos.org/nar/0hk2va9dr5v52y528dkvw6wnfx8zy0gjmsqjj5pwz5hsahk8nm0n.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/yb1rwg6lcv172mrsl3dkis0qhkx5pf1p-inline-c-0.6.0.5’...
7043 % Total % Received % Xferd Average Speed Time Time Time Current
7044 Dload Upload Total Spent Left Speed
7045100 354k 100 354k 0 0 354k 0 0:00:01 --:--:-- 0:00:01 750k
7046
7047 24 558k 24 135k 0 0 135k 0 0:00:04 0:00:01 0:00:03 121k[10 of 17] Compiling Numeric.GSL.ODE ( src/Numeric/GSL/ODE.hs, dist/build/Numeric/GSL/ODE.o )
7048100 355k 100 355k 0 0 355k 0 0:00:01 0:00:01 --:--:-- 249k
7049
7050fetching path ‘/nix/store/m1wqyy4izcipv3icjk9km44kp628s2bf-free-4.12.4’...
7051fetching path ‘/nix/store/d91w9x24znzw3z69vjr27ajs397is66c-monoid-extras-0.4.2’...
7052100 2099k 100 2099k 0 0 1049k 0 0:00:02 0:00:02 --:--:-- 949k
7053
7054100 2017k 100 2017k 0 0 1008k 0 0:00:02 0:00:02 --:--:-- 990k
7055
7056
7057*** Downloading ‘https://cache.nixos.org/nar/1hcdkgwbvnzpi19jdr93kisgc7zxpzig6kfwyhllm5cd017kbkg4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m1wqyy4izcipv3icjk9km44kp628s2bf-free-4.12.4’...
7058 % Total % Received % Xferd Average Speed Time Time Time Current
7059 Dload Upload Total Spent Left Speed
7060 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
7061*** Downloading ‘https://cache.nixos.org/nar/1zrfxhc0f8d2lpaz7sr1a5c77npahggkf60assmjwkzf0a4cy5a9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/d91w9x24znzw3z69vjr27ajs397is66c-monoid-extras-0.4.2’...
7062 % Total % Received % Xferd Average Speed Time Time Time Current
7063 Dload Upload Total Spent Left Speed
7064100 558k 100 558k 0 0 558k 0 0:00:01 0:00:01 --:--:-- 338k
7065
7066building path(s) ‘/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1’, ‘/nix/store/bqm893v28p3iqv453icgcv0syvb6p2pw-inline-r-0.9.1-doc’
7067[11 of 17] Compiling Numeric.GSL.Polynomials ( src/Numeric/GSL/Polynomials.hs, dist/build/Numeric/GSL/Polynomials.o )
7068 0 193k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0[12 of 17] Compiling Numeric.GSL.Root ( src/Numeric/GSL/Root.hs, dist/build/Numeric/GSL/Root.o )
7069100 193k 100 193k 0 0 193k 0 0:00:01 0:00:01 --:--:-- 150k
7070
7071fetching path ‘/nix/store/vpzcr8j96z9g0mkxl3f4v1crjsbfhfml-dual-tree-0.2.1’...
7072
7073*** Downloading ‘https://cache.nixos.org/nar/1nf31r75dgi1apzh940yj894wj6mzwp3z65kfgx23k1snxb014qx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vpzcr8j96z9g0mkxl3f4v1crjsbfhfml-dual-tree-0.2.1’...
7074 % Total % Received % Xferd Average Speed Time Time Time Current
7075 Dload Upload Total Spent Left Speed
7076100 553k 100 553k 0 0 553k 0 0:00:01 0:00:01 --:--:-- 324k
7077
7078fetching path ‘/nix/store/8lrqj5i0sn8dmvj1isajvm4hcdw7vkny-Rasterific-0.7.2.1’...
7079fetching path ‘/nix/store/s0r68l954v056qwpjf74bkgvq2bl7dna-ad-4.3.5’...
7080fetching path ‘/nix/store/nzi40591f8lkjpvw0dhzdi12zg01i744-adjunctions-4.3’...
7081[ 4 of 27] Compiling Internal.Matrix ( src/Internal/Matrix.hs, dist/build/Internal/Matrix.o )
7082
7083*** Downloading ‘https://cache.nixos.org/nar/0fas0q57gxmmkcx7pf5am3hwq8mr7wcvbvz51hvn0yb19m4j9pwg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s0r68l954v056qwpjf74bkgvq2bl7dna-ad-4.3.5’...
7084
7085*** Downloading ‘https://cache.nixos.org/nar/012sfjnyy2vp74xpc2khml6bfbwm7rvh6qxi8645g2h7r232v5s5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8lrqj5i0sn8dmvj1isajvm4hcdw7vkny-Rasterific-0.7.2.1’...
7086
7087*** Downloading ‘https://cache.nixos.org/nar/07pfh3q7ac93gzzrxrmrnb36hc1japqkc5r5j5728bkx616yx8vn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/nzi40591f8lkjpvw0dhzdi12zg01i744-adjunctions-4.3’...
7088 % Total % Received % Xferd Average Speed Time Time Time Current
7089 Dload Upload Total Spent Left Speed
7090 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
7091 Dload Upload Total Spent Left Speed
7092 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
7093 Dload Upload Total Spent Left Speed
7094100 51120 100 51120 0 0 51120 0 0:00:01 --:--:-- 0:00:01 69174
7095
7096100 187k 100 187k 0 0 187k 0 0:00:01 0:00:01 --:--:-- 173k
7097
7098fetching path ‘/nix/store/5r7q4zzhgb9lxliw3sg734q7bpvhfmrv-kan-extensions-5.0.2’...
7099
7100*** Downloading ‘https://cache.nixos.org/nar/0vk7d8jy2srbkgazjac10hzwwv291r0wcsz8w3axn95r0xs7r3db.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5r7q4zzhgb9lxliw3sg734q7bpvhfmrv-kan-extensions-5.0.2’...
7101 % Total % Received % Xferd Average Speed Time Time Time Current
7102 Dload Upload Total Spent Left Speed
7103100 931k 100 931k 0 0 931k 0 0:00:01 0:00:01 --:--:-- 489k
7104
7105 0 209k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0[13 of 17] Compiling Numeric.GSL ( src/Numeric/GSL.hs, dist/build/Numeric/GSL.o )
7106[14 of 17] Compiling Numeric.GSL.SimulatedAnnealing ( src/Numeric/GSL/SimulatedAnnealing.hs, dist/build/Numeric/GSL/SimulatedAnnealing.o )
7107100 1080k 100 1080k 0 0 540k 0 0:00:02 0:00:02 --:--:-- 453k
7108
7109100 209k 100 209k 0 0 209k 0 0:00:01 0:00:01 --:--:-- 169k
7110
7111fetching path ‘/nix/store/1693fpv36yp7gd07sbnl1vx820zanic1-lens-4.15.4’...
7112
7113*** Downloading ‘https://cache.nixos.org/nar/06jcsirn8m398pbjmq7h7sl4syj0lv0s0849wa2jp4x0iapyqfn8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1693fpv36yp7gd07sbnl1vx820zanic1-lens-4.15.4’...
7114 % Total % Received % Xferd Average Speed Time Time Time Current
7115 Dload Upload Total Spent Left Speed
7116 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7117clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7118 5 2263k 5 118k 0 0 118k 0 0:00:19 --:--:-- 0:00:19 118kclang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7119clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7120[15 of 17] Compiling Numeric.GSL.Vector ( src/Numeric/GSL/Vector.hs, dist/build/Numeric/GSL/Vector.o )
7121setupCompilerEnvironmentPhase
7122Build with /nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2.
7123[16 of 17] Compiling Numeric.GSL.Random ( src/Numeric/GSL/Random.hs, dist/build/Numeric/GSL/Random.o )
7124100 2263k 100 2263k 0 0 1131k 0 0:00:02 0:00:02 --:--:-- 993k
7125
7126fetching path ‘/nix/store/7gzy1wc78xgdladx8s8nnv25skhyg2li-linear-1.20.7’...
7127[17 of 17] Compiling Numeric.GSL.IO ( src/Numeric/GSL/IO.hs, dist/build/Numeric/GSL/IO.o )
7128
7129*** Downloading ‘https://cache.nixos.org/nar/05vbf87mvxgzv29s6r929phzrb9wqb3c13zvx1yy8fjkkgjdsg6f.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7gzy1wc78xgdladx8s8nnv25skhyg2li-linear-1.20.7’...
7130 % Total % Received % Xferd Average Speed Time Time Time Current
7131 Dload Upload Total Spent Left Speed
7132 1 1251k 1 17036 0 0 17036 0 0:01:15 --:--:-- 0:01:15 35491unpacking sources
7133unpacking source archive /nix/store/wdmn6wmbx713sl38nsjf399bk7ha36dv-inline-r-0.9.1.tar.gz
7134source root is inline-r-0.9.1
7135setting SOURCE_DATE_EPOCH to timestamp 1516963599 of file inline-r-0.9.1/tests/tests.hs
7136patching sources
7137compileBuildDriverPhase
7138setupCompileFlags: -package-db=/private/tmp/nix-build-inline-r-0.9.1.drv-0/package.conf.d -j1 -threaded
7139clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7140[1 of 1] Compiling Main ( Setup.hs, /private/tmp/nix-build-inline-r-0.9.1.drv-0/Main.o )
7141Linking Setup ...
7142clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7143 43 1251k 43 543k 0 0 543k 0 0:00:02 0:00:01 0:00:01 375kclang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7144clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7145100 1251k 100 1251k 0 0 1251k 0 0:00:01 0:00:01 --:--:-- 661k
7146
7147fetching path ‘/nix/store/rf12994pnjqh58yw8wpwb25381v321l1-active-0.2.0.13’...
7148fetching path ‘/nix/store/myxz08k6ssrdg621l4w0b2zmqgybbbq8-diagrams-core-1.4.0.1’...
7149
7150*** Downloading ‘https://cache.nixos.org/nar/1697v2sdqzdcq1jsalcxz98l1j9xbqz0j73i5ijbap0dm0f83di2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/myxz08k6ssrdg621l4w0b2zmqgybbbq8-diagrams-core-1.4.0.1’...
7151
7152*** Downloading ‘https://cache.nixos.org/nar/10948cmp2sb67y4hfxph8qldz8l62yr930d5ck6bh3pfx6vv2mkh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rf12994pnjqh58yw8wpwb25381v321l1-active-0.2.0.13’...
7153 % Total % Received % Xferd Average Speed Time Time Time Current
7154 Dload Upload Total Spent Left Speed
7155 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
7156 Dload Upload Total Spent Left Speed
7157 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0running tests
7158Package has no test suites.
7159haddockPhase
7160 0 88044 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Running hscolour for hmatrix-gsl-0.18.0.1...
7161Preprocessing library for hmatrix-gsl-0.18.0.1..
7162configuring
7163configureFlags: --verbose --prefix=/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --docdir=/nix/store/bqm893v28p3iqv453icgcv0syvb6p2pw-inline-r-0.9.1-doc/share/doc --with-gcc=clang --package-db=/private/tmp/nix-build-inline-r-0.9.1.drv-0/package.conf.d --ghc-option=-optl=-Wl,-headerpad_max_install_names --ghc-option=-j1 --disable-split-objs --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-library-vanilla --enable-executable-dynamic --enable-tests --extra-include-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/include --extra-lib-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/lib --extra-lib-dirs=/nix/store/a67rhbgwb41j11j6mgww3y0gq4pg0lmp-ncurses-6.0-20171125/lib --extra-lib-dirs=/nix/store/lasa9z5jcwhq3djd3mw8q9b0a75da5as-gmp-6.1.2/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-lib-dirs=/nix/store/ahrwr29rdmjzfvn6zxd2wnz14z4l3spx-R-3.4.3/lib
7164100 88044 100 88044 0 0 88044 0 0:00:01 0:00:01 --:--:-- 85396
7165
7166100 414k 100 414k 0 0 414k 0 0:00:01 0:00:01 --:--:-- 284k
7167
7168fetching path ‘/nix/store/3ramz5i22lk30m0q4y1an3khamg3866z-diagrams-lib-1.4.2’...
7169
7170*** Downloading ‘https://cache.nixos.org/nar/0ln41rrlqi0jgzvq9zs00x1hpddkisaadx1mkmn1zsvcj4qfqnxc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3ramz5i22lk30m0q4y1an3khamg3866z-diagrams-lib-1.4.2’...
7171 % Total % Received % Xferd Average Speed Time Time Time Current
7172 Dload Upload Total Spent Left Speed
7173 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Preprocessing library for hmatrix-gsl-0.18.0.1..
7174Running Haddock on library for hmatrix-gsl-0.18.0.1..
7175Configuring inline-r-0.9.1...
7176Dependency aeson >=0.6: using aeson-1.2.4.0
7177Dependency base >=4.7 && <5: using base-4.10.1.0
7178Dependency bytestring >=0.10: using bytestring-0.10.8.2
7179Dependency containers >=0.5: using containers-0.5.10.2
7180Dependency data-default-class -any: using data-default-class-0.1.2.0
7181Dependency deepseq >=1.3: using deepseq-1.4.3.0
7182Dependency directory >=1.2: using directory-1.3.0.2
7183Dependency exceptions >=0.6 && <1.1: using exceptions-0.8.3
7184Dependency filepath >=1.3: using filepath-1.4.1.2
7185Dependency ieee754 >=0.7: using ieee754-0.8.0
7186Dependency inline-c ==0.6.*: using inline-c-0.6.0.5
7187Dependency inline-r -any: using inline-r-0.9.1
7188Dependency mtl >=2.1: using mtl-2.2.2
7189Dependency pretty >=1.1: using pretty-1.1.3.3
7190Dependency primitive >=0.5: using primitive-0.6.3.0
7191Dependency process >=1.2: using process-1.6.1.0
7192Dependency quickcheck-assertions >=0.1.1: using quickcheck-assertions-0.3.0
7193Dependency reflection >=2: using reflection-2.1.3
7194Dependency setenv >=0.1.1: using setenv-0.1.1.3
7195Dependency silently >=1.2: using silently-1.2.5
7196Dependency singletons >=0.10: using singletons-2.3.1
7197Dependency strict >=0.3.2: using strict-0.3.2
7198Dependency tasty >=0.11: using tasty-0.11.3
7199Dependency tasty-expected-failure >=0.11: using
7200tasty-expected-failure-0.11.0.4
7201Dependency tasty-golden >=2.3: using tasty-golden-2.3.1.2
7202Dependency tasty-hunit >=0.4.1: using tasty-hunit-0.9.2
7203Dependency tasty-quickcheck >=0.4.1: using tasty-quickcheck-0.9.1
7204Dependency template-haskell >=2.8: using template-haskell-2.12.0.0
7205Dependency temporary >=1.2: using temporary-1.2.1.1
7206Dependency text >=0.11: using text-1.2.2.2
7207Dependency th-lift >=0.6: using th-lift-0.7.8
7208Dependency th-orphans >=0.8: using th-orphans-0.13.5
7209Dependency transformers >=0.3: using transformers-0.5.2.0
7210Dependency unix >=2.6: using unix-2.7.2.2
7211Dependency vector >=0.10 && <0.13: using vector-0.12.0.1
7212clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7213 0 1736k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Dependency libR >=3.0: using version 3.4.3
7214Source component graph:
7215 component lib
7216 component test:test-qq dependency lib
7217 component test:test-shootout dependency lib
7218 component test:tests dependency lib
7219Configured component graph:
7220 component inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7221 include base-4.10.1.0
7222 include aeson-1.2.4.0-Eos80jdFJ2vJTUCBOqB8px
7223 include bytestring-0.10.8.2
7224 include containers-0.5.10.2
7225 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
7226 include deepseq-1.4.3.0
7227 include exceptions-0.8.3-GWfu4VLKe6i7axYr3kaJRB
7228 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7229 include pretty-1.1.3.3
7230 include primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
7231 include process-1.6.1.0
7232 include reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
7233 include setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
7234 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7235 include template-haskell-2.12.0.0
7236 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7237 include th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
7238 include th-orphans-0.13.5-Avlu69hrL7k6W9EcxdWfcC
7239 include transformers-0.5.2.0
7240 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
7241 include inline-c-0.6.0.5-DNPv1t5vrCeDYELb3oVtSr
7242 include unix-2.7.2.2
7243 component inline-r-0.9.1-15akVb6fluM75whvp7roW7-test-qq
7244 include inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7245 include base-4.10.1.0
7246 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7247 include process-1.6.1.0
7248 include tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7249 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7250 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7251 component inline-r-0.9.1-K1dUrStL74UAzcm3XcpUbP-test-shootout
7252 include inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7253 include base-4.10.1.0
7254 include filepath-1.4.1.2
7255 include process-1.6.1.0
7256 include silently-1.2.5-cMv6O7xJ8fAZFNRn8vxF4
7257 include tasty-0.11.3-5BwYJcpf0xwIDs6STw6B6f
7258 include tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7259 include template-haskell-2.12.0.0
7260 component inline-r-0.9.1-6J0o55f3DfN9VOqRwyTZmY-tests
7261 include inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7262 include base-4.10.1.0
7263 include bytestring-0.10.8.2
7264 include directory-1.3.0.2
7265 include filepath-1.4.1.2
7266 include ieee754-0.8.0-B9FdsnFZjDO5G55ttUSqU0
7267 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7268 include process-1.6.1.0
7269 include quickcheck-assertions-0.3.0-DLcuoyWizu1EgVt1YAkeck
7270 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7271 include strict-0.3.2-8X7gei2OShnI8D6awEvqNq
7272 include tasty-0.11.3-5BwYJcpf0xwIDs6STw6B6f
7273 include tasty-expected-failure-0.11.0.4-4dzZyV420dEIWPa6i6XQD
7274 include tasty-golden-2.3.1.2-2VWe0KfAoFI4L5lknADoyM
7275 include tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7276 include tasty-quickcheck-0.9.1-GZxCiGHBGWcKIDEsreEHqJ
7277 include temporary-1.2.1.1-JwdSvV4OXhILg7KYo89LLV
7278 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7279 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
7280 include unix-2.7.2.2
7281Linked component graph:
7282 unit inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7283 include base-4.10.1.0
7284 include aeson-1.2.4.0-Eos80jdFJ2vJTUCBOqB8px
7285 include bytestring-0.10.8.2
7286 include containers-0.5.10.2
7287 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
7288 include deepseq-1.4.3.0
7289 include exceptions-0.8.3-GWfu4VLKe6i7axYr3kaJRB
7290 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7291 include pretty-1.1.3.3
7292 include primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
7293 include process-1.6.1.0
7294 include reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
7295 include setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
7296 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7297 include template-haskell-2.12.0.0
7298 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7299 include th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
7300 include th-orphans-0.13.5-Avlu69hrL7k6W9EcxdWfcC
7301 include transformers-0.5.2.0
7302 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
7303 include inline-c-0.6.0.5-DNPv1t5vrCeDYELb3oVtSr
7304 include unix-2.7.2.2
7305 Control.Memory.Region=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Control.Memory.Region,Data.Vector.SEXP=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Data.Vector.SEXP,Data.Vector.SEXP.Base=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Data.Vector.SEXP.Base,Data.Vector.SEXP.Mutable=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Data.Vector.SEXP.Mutable,Foreign.R=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R,Foreign.R.Constraints=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Constraints,Foreign.R.Context=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Context,Foreign.R.Embedded=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Embedded,Foreign.R.Error=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Error,Foreign.R.EventLoop=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.EventLoop,Foreign.R.Internal=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Internal,Foreign.R.Parse=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Parse,Foreign.R.Type=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Foreign.R.Type,H.Prelude=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:H.Prelude,H.Prelude.Interactive=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:H.Prelude.Interactive,Language.R=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R,Language.R.Debug=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Debug,Language.R.Event=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Event,Language.R.GC=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.GC,Language.R.Globals=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Globals,Language.R.HExp=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.HExp,Language.R.Instance=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Instance,Language.R.Internal=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Internal,Language.R.Internal.FunWrappers=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Internal.FunWrappers,Language.R.Internal.FunWrappers.TH=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Internal.FunWrappers.TH,Language.R.Literal=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Literal,Language.R.Matcher=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.Matcher,Language.R.QQ=inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0:Language.R.QQ
7306 unit inline-r-0.9.1-15akVb6fluM75whvp7roW7-test-qq
7307 include inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7308 include base-4.10.1.0
7309 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7310 include process-1.6.1.0
7311 include tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7312 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7313 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7314 unit inline-r-0.9.1-K1dUrStL74UAzcm3XcpUbP-test-shootout
7315 include inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7316 include base-4.10.1.0
7317 include filepath-1.4.1.2
7318 include process-1.6.1.0
7319 include silently-1.2.5-cMv6O7xJ8fAZFNRn8vxF4
7320 include tasty-0.11.3-5BwYJcpf0xwIDs6STw6B6f
7321 include tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7322 include template-haskell-2.12.0.0
7323 unit inline-r-0.9.1-6J0o55f3DfN9VOqRwyTZmY-tests
7324 include inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7325 include base-4.10.1.0
7326 include bytestring-0.10.8.2
7327 include directory-1.3.0.2
7328 include filepath-1.4.1.2
7329 include ieee754-0.8.0-B9FdsnFZjDO5G55ttUSqU0
7330 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7331 include process-1.6.1.0
7332 include quickcheck-assertions-0.3.0-DLcuoyWizu1EgVt1YAkeck
7333 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7334 include strict-0.3.2-8X7gei2OShnI8D6awEvqNq
7335 include tasty-0.11.3-5BwYJcpf0xwIDs6STw6B6f
7336 include tasty-expected-failure-0.11.0.4-4dzZyV420dEIWPa6i6XQD
7337 include tasty-golden-2.3.1.2-2VWe0KfAoFI4L5lknADoyM
7338 include tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7339 include tasty-quickcheck-0.9.1-GZxCiGHBGWcKIDEsreEHqJ
7340 include temporary-1.2.1.1-JwdSvV4OXhILg7KYo89LLV
7341 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7342 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
7343 include unix-2.7.2.2
7344Ready component graph:
7345 definite inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7346 depends base-4.10.1.0
7347 depends aeson-1.2.4.0-Eos80jdFJ2vJTUCBOqB8px
7348 depends bytestring-0.10.8.2
7349 depends containers-0.5.10.2
7350 depends data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
7351 depends deepseq-1.4.3.0
7352 depends exceptions-0.8.3-GWfu4VLKe6i7axYr3kaJRB
7353 depends mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7354 depends pretty-1.1.3.3
7355 depends primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
7356 depends process-1.6.1.0
7357 depends reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
7358 depends setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
7359 depends singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7360 depends template-haskell-2.12.0.0
7361 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7362 depends th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
7363 depends th-orphans-0.13.5-Avlu69hrL7k6W9EcxdWfcC
7364 depends transformers-0.5.2.0
7365 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
7366 depends inline-c-0.6.0.5-DNPv1t5vrCeDYELb3oVtSr
7367 depends unix-2.7.2.2
7368 definite inline-r-0.9.1-6J0o55f3DfN9VOqRwyTZmY-tests
7369 depends inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7370 depends base-4.10.1.0
7371 depends bytestring-0.10.8.2
7372 depends directory-1.3.0.2
7373 depends filepath-1.4.1.2
7374 depends ieee754-0.8.0-B9FdsnFZjDO5G55ttUSqU0
7375 depends mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7376 depends process-1.6.1.0
7377 depends quickcheck-assertions-0.3.0-DLcuoyWizu1EgVt1YAkeck
7378 depends singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7379 depends strict-0.3.2-8X7gei2OShnI8D6awEvqNq
7380 depends tasty-0.11.3-5BwYJcpf0xwIDs6STw6B6f
7381 depends tasty-expected-failure-0.11.0.4-4dzZyV420dEIWPa6i6XQD
7382 depends tasty-golden-2.3.1.2-2VWe0KfAoFI4L5lknADoyM
7383 depends tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7384 depends tasty-quickcheck-0.9.1-GZxCiGHBGWcKIDEsreEHqJ
7385 depends temporary-1.2.1.1-JwdSvV4OXhILg7KYo89LLV
7386 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7387 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
7388 depends unix-2.7.2.2
7389 definite inline-r-0.9.1-K1dUrStL74UAzcm3XcpUbP-test-shootout
7390 depends inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7391 depends base-4.10.1.0
7392 depends filepath-1.4.1.2
7393 depends process-1.6.1.0
7394 depends silently-1.2.5-cMv6O7xJ8fAZFNRn8vxF4
7395 depends tasty-0.11.3-5BwYJcpf0xwIDs6STw6B6f
7396 depends tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7397 depends template-haskell-2.12.0.0
7398 definite inline-r-0.9.1-15akVb6fluM75whvp7roW7-test-qq
7399 depends inline-r-0.9.1-1dU7w9S88t0935SbqLAyI0
7400 depends base-4.10.1.0
7401 depends mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7402 depends process-1.6.1.0
7403 depends tasty-hunit-0.9.2-AUaR4Bh7pLHEfIMaJojSaZ
7404 depends singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
7405 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
7406Using Cabal-2.0.1.0 compiled by ghc-8.2
7407Using compiler: ghc-8.2.2
7408Using install prefix:
7409/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1
7410Executables installed in:
7411/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1/bin
7412Libraries installed in:
7413/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1/lib/ghc-8.2.2/inline-r-0.9.1
7414Dynamic Libraries installed in:
7415/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2
7416Private executables installed in:
7417/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1/libexec/x86_64-osx-ghc-8.2.2/inline-r-0.9.1
7418Data files installed in:
7419/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1/share/x86_64-osx-ghc-8.2.2/inline-r-0.9.1
7420Documentation installed in:
7421/nix/store/bqm893v28p3iqv453icgcv0syvb6p2pw-inline-r-0.9.1-doc/share/doc
7422Configuration files installed in:
7423/nix/store/b389kw0inljscrw92lp9418a0jh16m2j-inline-r-0.9.1/etc
7424No alex found
7425Using ar found on system at:
7426/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/ar
7427No c2hs found
7428No cpphs found
7429No doctest found
7430Using gcc version 4.2.1 given by user at:
7431/nix/store/53h1zds6q5k4ab4l7430fbddn0l0iq1c-clang-wrapper-5.0.1/bin/clang
7432Using ghc version 8.2.2 found on system at:
7433/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc
7434Using ghc-pkg version 8.2.2 found on system at:
7435/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc-pkg
7436No ghcjs found
7437No ghcjs-pkg found
7438No greencard found
7439Using haddock version 2.18.1 found on system at:
7440/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/haddock
7441No happy found
7442Using haskell-suite found on system at: haskell-suite-dummy-location
7443Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
7444No hmake found
7445Using hpc version 0.67 found on system at:
7446/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hpc
7447Using hsc2hs version 0.68.2 found on system at:
7448/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hsc2hs
7449Using hscolour version 1.24 found on system at:
7450/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2/bin/HsColour
7451No jhc found
7452Using ld found on system at:
7453/nix/store/cjhrjh6brgy1wahgbh5wqrflnb447bf8-cctools-binutils-darwin-wrapper/bin/ld
7454No lhc found
7455No lhc-pkg found
7456Using pkg-config version 0.29.2 found on system at:
7457/nix/store/j2zsla2jd1kmh67n95di6v8769jynwp8-pkg-config-0.29.2/bin/pkg-config
7458Using runghc version 8.2.2 found on system at:
7459/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/runghc
7460Using strip found on system at:
7461/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7462Using tar found on system at:
7463/nix/store/nwj6x1d0bz45nzsch3rhnfa5wi4kf4nk-gnutar-1.30/bin/tar
7464No uhc found
7465building
7466Preprocessing library for inline-r-0.9.1..
7467 33 1736k 33 577k 0 0 577k 0 0:00:03 0:00:01 0:00:02 346kHaddock coverage:
7468 75% ( 9 / 12) in 'Graphics.Plot'
7469 Missing documentation for:
7470 gnuplotX (src/Graphics/Plot.hs:122)
7471 gnuplotpdf (src/Graphics/Plot.hs:131)
7472 gnuplotWin (src/Graphics/Plot.hs:170)
7473 17% ( 4 / 23) in 'Numeric.GSL.Internal'
7474 Missing documentation for:
7475 iv (src/Numeric/GSL/Internal.hs:43)
7476 mkVecVecfun (src/Numeric/GSL/Internal.hs:54)
7477 mkDoubleVecVecfun (src/Numeric/GSL/Internal.hs:57)
7478 mkDoublefun (src/Numeric/GSL/Internal.hs:60)
7479 aux_vTov (src/Numeric/GSL/Internal.hs:63)
7480 mkVecMatfun (src/Numeric/GSL/Internal.hs:73)
7481 mkDoubleVecMatfun (src/Numeric/GSL/Internal.hs:76)
7482 aux_vTom (src/Numeric/GSL/Internal.hs:79)
7483 createV (src/Numeric/GSL/Internal.hs:89)
7484 createMIO (src/Numeric/GSL/Internal.hs:94)
7485 # (src/Numeric/GSL/Internal.hs:137)
7486 #! (src/Numeric/GSL/Internal.hs:144)
7487 vec (src/Numeric/GSL/Internal.hs:130)
7488 ww2 (src/Numeric/GSL/Internal.hs:128)
7489 Res (src/Numeric/GSL/Internal.hs:119)
7490 TV (src/Numeric/GSL/Internal.hs:120)
7491 TM (src/Numeric/GSL/Internal.hs:121)
7492 TCV (src/Numeric/GSL/Internal.hs:122)
7493 TCM (src/Numeric/GSL/Internal.hs:123)
7494 100% ( 7 / 7) in 'Numeric.GSL.Integration'
7495 100% ( 3 / 3) in 'Numeric.GSL.Fourier'
7496 86% ( 6 / 7) in 'Numeric.GSL.Fitting'
7497 Missing documentation for:
7498 FittingMethod (src/Numeric/GSL/Fitting.hs:71)
7499 100% ( 4 / 4) in 'Numeric.GSL.Differentiation'
7500 93% ( 13 / 14) in 'Numeric.GSL.Interpolation'
7501 Missing documentation for:
7502 InterpolationMethod (src/Numeric/GSL/Interpolation.hs:49)
7503 91% ( 10 / 11) in 'Numeric.GSL.LinearAlgebra'
7504 Missing documentation for:
7505 RandDist (src/Numeric/GSL/LinearAlgebra.hs:32)
7506 50% ( 6 / 12) in 'Numeric.GSL.Minimization'
7507 Missing documentation for:
7508 MinimizeMethod (src/Numeric/GSL/Minimization.hs:115)
7509 MinimizeMethodD (src/Numeric/GSL/Minimization.hs:162)
7510 UniMinimizeMethod (src/Numeric/GSL/Minimization.hs:82)
7511 minimizeNMSimplex (src/Numeric/GSL/Minimization.hs:72)
7512 minimizeConjugateGradient (src/Numeric/GSL/Minimization.hs:75)
7513 minimizeVectorBFGS2 (src/Numeric/GSL/Minimization.hs:78)
7514 86% ( 6 / 7) in 'Numeric.GSL.ODE'
7515 Missing documentation for:
7516 Jacobian (src/Numeric/GSL/ODE.hs:52)
7517 100% ( 2 / 2) in 'Numeric.GSL.Polynomials'
7518 33% ( 3 / 9) in 'Numeric.GSL.Root'
7519 Missing documentation for:
7520 uniRoot (src/Numeric/GSL/Root.hs:60)
7521 UniRootMethod (src/Numeric/GSL/Root.hs:55)
7522 uniRootJ (src/Numeric/GSL/Root.hs:89)
7523 UniRootMethodJ (src/Numeric/GSL/Root.hs:84)
7524 RootMethod (src/Numeric/GSL/Root.hs:117)
7525 RootMethodJ (src/Numeric/GSL/Root.hs:155)
7526 100% ( 12 / 12) in 'Numeric.GSL'
7527 100% ( 5 / 5) in 'Numeric.GSL.SimulatedAnnealing'
7528 100% ( 7 / 7) in 'Numeric.GSL.Vector'
7529 75% ( 6 / 8) in 'Numeric.GSL.Random'
7530 Missing documentation for:
7531 Seed (src/Numeric/GSL/Random.hs:38)
7532 RandDist
7533 100% ( 9 / 9) in 'Numeric.GSL.IO'
7534Warning: Numeric.GSL.Fitting: could not find link destinations for:
7535 resMs resM
7536Documentation created: dist/doc/html/hmatrix-gsl/index.html,
7537dist/doc/html/hmatrix-gsl/hmatrix-gsl.txt
7538installing
7539Installing library in /nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/hmatrix-gsl-0.18.0.1
7540100 1736k 100 1736k 0 0 868k 0 0:00:02 0:00:02 --:--:-- 774k
7541
7542fetching path ‘/nix/store/3ym2da7f2hlxb5szhnla4q7248s92d5a-plots-0.1.0.2’...
7543building path(s) ‘/nix/store/3vx3kcpayzl79sj8g3j10n5w4iqdk61h-diagrams-rasterific-1.4-doc’, ‘/nix/store/av1v3qbmkhinsmxqanfc65r2smaqyh08-diagrams-rasterific-1.4-data’, ‘/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4’
7544
7545*** Downloading ‘https://cache.nixos.org/nar/0b810raj9cpa0xb04w9nvnqy9li4x48njg9c2yf44x68k0lixgks.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3ym2da7f2hlxb5szhnla4q7248s92d5a-plots-0.1.0.2’...
7546 % Total % Received % Xferd Average Speed Time Time Time Current
7547 Dload Upload Total Spent Left Speed
7548 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0post-installation fixup
7549strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7550stripping (with command strip and flags -S) in /nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib
7551patching script interpreter paths in /nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0
7552/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT-ghc8.2.2.dylib: fixing dylib
7553/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT-ghc8.2.2.dylib: fixing dylib
7554/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT-ghc8.2.2.dylib: fixing dylib
7555/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT-ghc8.2.2.dylib: fixing dylib
7556/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-gsl-0.18.0.1-HKJMyTMffjr1vvXD2DdboT-ghc8.2.2.dylib: fixing dylib
7557strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7558patching script interpreter paths in /nix/store/w2pd2c6xp8sllhwaq2hdyd6bdwp6lp8s-hmatrix-gsl-0.18.2.0-doc
7559 13 1341k 13 186k 0 0 186k 0 0:00:07 0:00:01 0:00:06 154k[ 5 of 27] Compiling Internal.ST ( src/Internal/ST.hs, dist/build/Internal/ST.o )
7560100 1341k 100 1341k 0 0 670k 0 0:00:02 0:00:02 --:--:-- 652k
7561
7562[ 6 of 27] Compiling Internal.IO ( src/Internal/IO.hs, dist/build/Internal/IO.o )
7563[ 7 of 27] Compiling Internal.Element ( src/Internal/Element.hs, dist/build/Internal/Element.o )
7564HExp.hsc:80:9: warning: 'hsc_alignment' macro redefined [-Wmacro-redefined]
7565#define hsc_alignment(t ) hsc_printf ( "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__));
7566 ^
7567/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/lib/ghc-8.2.2/template-hsc.h:91:9: note: previous definition is here
7568#define hsc_alignment(x...) \
7569 ^
75701 warning generated.
7571In file included from EventLoop.hsc:29:
7572/nix/store/ahrwr29rdmjzfvn6zxd2wnz14z4l3spx-R-3.4.3/lib/R/include/R_ext/eventloop.h:87:35: warning: declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
7573 fd_set *exceptfds, struct timeval *timeout,
7574 ^
7575EventLoop.hsc:30:9: warning: 'hsc_alignment' macro redefined [-Wmacro-redefined]
7576#define hsc_alignment(t ) hsc_printf ( "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__));
7577 ^
7578/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/lib/ghc-8.2.2/template-hsc.h:91:9: note: previous definition is here
7579#define hsc_alignment(x...) \
7580 ^
75812 warnings generated.
7582Building library for inline-r-0.9.1..
7583[ 8 of 27] Compiling Internal.Conversion ( src/Internal/Conversion.hs, dist/build/Internal/Conversion.o )
7584[ 1 of 35] Compiling Control.Memory.Region ( src/Control/Memory/Region.hs, dist/build/Control/Memory/Region.o )
7585[ 9 of 27] Compiling Internal.LAPACK ( src/Internal/LAPACK.hs, dist/build/Internal/LAPACK.o )
7586[ 2 of 35] Compiling Foreign.R.Embedded ( dist/build/Foreign/R/Embedded.hs, dist/build/Foreign/R/Embedded.o )
7587[ 3 of 35] Compiling Foreign.R.Error ( dist/build/Foreign/R/Error.hs, dist/build/Foreign/R/Error.o )
7588[ 4 of 35] Compiling Foreign.R.EventLoop ( dist/build/Foreign/R/EventLoop.hs, dist/build/Foreign/R/EventLoop.o )
7589[ 5 of 35] Compiling Foreign.R.Type[boot] ( dist/build/Foreign/R/Type.hs-boot, dist/build/Foreign/R/Type.o-boot )
7590[ 6 of 35] Compiling Foreign.R.Constraints ( src/Foreign/R/Constraints.hs, dist/build/Foreign/R/Constraints.o )
7591[ 7 of 35] Compiling Internal.Error ( src/Internal/Error.hs, dist/build/Internal/Error.o )
7592[ 8 of 35] Compiling Foreign.R.Context ( dist/build/Foreign/R/Context.hs, dist/build/Foreign/R/Context.o )
7593[ 9 of 35] Compiling Foreign.R.Type ( dist/build/Foreign/R/Type.hs, dist/build/Foreign/R/Type.o )
7594[10 of 35] Compiling Language.R.HExp[boot] ( dist/build/Language/R/HExp.hs-boot, dist/build/Language/R/HExp.o-boot )
7595[11 of 35] Compiling Foreign.R.Internal ( dist/build/Foreign/R/Internal.hs, dist/build/Foreign/R/Internal.o )
7596clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7597clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7598clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7599clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7600[12 of 35] Compiling Foreign.R ( dist/build/Foreign/R.hs, dist/build/Foreign/R.o )
7601clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7602
7603/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc14493_0/ghc_99.c:89:8: error:
7604 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
7605 |
760689 | return ( RAW(s_inline_c_0) );
7607 | ^
7608return ( RAW(s_inline_c_0) );
7609 ^~~~~~~~~~~~~~~~~~~~~
76101 warning generated.
7611clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7612clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7613
7614/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc14493_0/ghc_108.c:89:8: error:
7615 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
7616 |
761789 | return ( RAW(s_inline_c_0) );
7618 | ^
7619return ( RAW(s_inline_c_0) );
7620 ^~~~~~~~~~~~~~~~~~~~~
76211 warning generated.
7622clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7623[13 of 35] Compiling Language.R.Globals ( src/Language/R/Globals.hs, dist/build/Language/R/Globals.o )
7624[14 of 35] Compiling Foreign.R.Parse ( dist/build/Foreign/R/Parse.hs, dist/build/Foreign/R/Parse.o )
7625[10 of 27] Compiling Internal.Numeric ( src/Internal/Numeric.hs, dist/build/Internal/Numeric.o )
7626[15 of 35] Compiling Data.Vector.SEXP.Base ( src/Data/Vector/SEXP/Base.hs, dist/build/Data/Vector/SEXP/Base.o )
7627[16 of 35] Compiling Control.Monad.R.Class ( src/Control/Monad/R/Class.hs, dist/build/Control/Monad/R/Class.o )
7628[17 of 35] Compiling Language.R.GC ( src/Language/R/GC.hs, dist/build/Language/R/GC.o )
7629[18 of 35] Compiling Language.R.Event ( src/Language/R/Event.hs, dist/build/Language/R/Event.o )
7630[19 of 35] Compiling Control.Monad.R.Internal ( src/Control/Monad/R/Internal.hs, dist/build/Control/Monad/R/Internal.o )
7631[20 of 35] Compiling Data.Vector.SEXP.Mutable.Internal ( src/Data/Vector/SEXP/Mutable/Internal.hs, dist/build/Data/Vector/SEXP/Mutable/Internal.o )
7632[21 of 35] Compiling Data.Vector.SEXP.Mutable ( src/Data/Vector/SEXP/Mutable.hs, dist/build/Data/Vector/SEXP/Mutable.o )
7633[22 of 35] Compiling Data.Vector.SEXP ( src/Data/Vector/SEXP.hs, dist/build/Data/Vector/SEXP.o )
7634setupCompilerEnvironmentPhase
7635Build with /nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2.
7636unpacking sources
7637unpacking source archive /nix/store/439rrx26wyydb90hvrxj806vgiykqz0r-diagrams-rasterific-1.4.tar.gz
7638source root is diagrams-rasterific-1.4
7639setting SOURCE_DATE_EPOCH to timestamp 1477545423 of file diagrams-rasterific-1.4/src/Diagrams/Backend/Rasterific/Text.hs
7640patching sources
7641Replace Cabal file with edited version from http://hackage.haskell.org/package/diagrams-rasterific-1.4/revision/1.cabal.
7642compileBuildDriverPhase
7643setupCompileFlags: -package-db=/private/tmp/nix-build-diagrams-rasterific-1.4.drv-0/package.conf.d -j1 -threaded
7644[1 of 1] Compiling Main ( Setup.hs, /private/tmp/nix-build-diagrams-rasterific-1.4.drv-0/Main.o )
7645Linking Setup ...
7646clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7647clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7648configuring
7649configureFlags: --verbose --prefix=/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --datadir=/nix/store/av1v3qbmkhinsmxqanfc65r2smaqyh08-diagrams-rasterific-1.4-data/share/ghc-8.2.2 --docdir=/nix/store/3vx3kcpayzl79sj8g3j10n5w4iqdk61h-diagrams-rasterific-1.4-doc/share/doc --with-gcc=clang --package-db=/private/tmp/nix-build-diagrams-rasterific-1.4.drv-0/package.conf.d --ghc-option=-optl=-Wl,-headerpad_max_install_names --ghc-option=-j1 --disable-split-objs --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-library-vanilla --enable-executable-dynamic --enable-tests --extra-include-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/include --extra-lib-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/lib --extra-lib-dirs=/nix/store/a67rhbgwb41j11j6mgww3y0gq4pg0lmp-ncurses-6.0-20171125/lib --extra-lib-dirs=/nix/store/lasa9z5jcwhq3djd3mw8q9b0a75da5as-gmp-6.1.2/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/zfrk1wjzzhg36jmhgmmbg3y1qfzf2hs2-apple-lib-xpc/include --extra-include-dirs=/nix/store/r5vgpicc9m7niyjxa0rc30raxyd58dsl-objc4-osx-10.11.6/include --extra-lib-dirs=/nix/store/r5vgpicc9m7niyjxa0rc30raxyd58dsl-objc4-osx-10.11.6/lib
7650Configuring diagrams-rasterific-1.4...
7651Dependency FontyFruity ==0.5.*: using FontyFruity-0.5.3.3
7652Dependency JuicyPixels >=3.1.5 && <3.3: using JuicyPixels-3.2.9.4
7653Dependency Rasterific >=0.6.1 && <0.8: using Rasterific-0.7.2.1
7654Dependency base >=4.2 && <4.11: using base-4.10.1.0
7655Dependency bytestring >=0.9 && <0.11: using bytestring-0.10.8.2
7656Dependency containers ==0.5.*: using containers-0.5.10.2
7657Dependency data-default-class >=0.0 && <0.2: using data-default-class-0.1.2.0
7658Dependency diagrams-core ==1.4.*: using diagrams-core-1.4.0.1
7659Dependency diagrams-lib ==1.4.*: using diagrams-lib-1.4.2
7660Dependency file-embed ==0.0.*: using file-embed-0.0.10.1
7661Dependency filepath >=1.2 && <1.5: using filepath-1.4.1.2
7662Dependency hashable >=1.1 && <1.3: using hashable-1.2.6.1
7663Dependency lens >=4.0 && <4.16: using lens-4.15.4
7664Dependency mtl >=2.1 && <2.3: using mtl-2.2.2
7665Dependency optparse-applicative >=0.13 && <0.15: using
7666optparse-applicative-0.14.2.0
7667clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7668Source component graph: component lib
7669Configured component graph:
7670 component diagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb
7671 include base-4.10.1.0
7672 include diagrams-core-1.4.0.1-H7RLfQGJXcE28ihDdzaKRC
7673 include diagrams-lib-1.4.2-3Lx6QF8jpH6LfIgSJCiHhq
7674 include hashable-1.2.6.1-IUPEWTVnKt9bEbAonnzII
7675 include Rasterific-0.7.2.1-EsBvOJ9gJqiEkfDurPG22S
7676 include FontyFruity-0.5.3.3-Hcq2HVqYpAf488Uvc3O4bA
7677 include JuicyPixels-3.2.9.4-8Y8ACAO6yKU77PmhzW1mCN
7678 include lens-4.15.4-AU6vXSagCAtFqwebslwbgU
7679 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7680 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
7681 include containers-0.5.10.2
7682 include filepath-1.4.1.2
7683 include optparse-applicative-0.14.2.0-Axz31IUiWuIDkdwAcX32vd
7684 include bytestring-0.10.8.2
7685 include file-embed-0.0.10.1-dHJWrXRvu59h2yyMVhlwG
7686Linked component graph:
7687 unit diagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb
7688 include base-4.10.1.0
7689 include diagrams-core-1.4.0.1-H7RLfQGJXcE28ihDdzaKRC
7690 include diagrams-lib-1.4.2-3Lx6QF8jpH6LfIgSJCiHhq
7691 include hashable-1.2.6.1-IUPEWTVnKt9bEbAonnzII
7692 include Rasterific-0.7.2.1-EsBvOJ9gJqiEkfDurPG22S
7693 include FontyFruity-0.5.3.3-Hcq2HVqYpAf488Uvc3O4bA
7694 include JuicyPixels-3.2.9.4-8Y8ACAO6yKU77PmhzW1mCN
7695 include lens-4.15.4-AU6vXSagCAtFqwebslwbgU
7696 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7697 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
7698 include containers-0.5.10.2
7699 include filepath-1.4.1.2
7700 include optparse-applicative-0.14.2.0-Axz31IUiWuIDkdwAcX32vd
7701 include bytestring-0.10.8.2
7702 include file-embed-0.0.10.1-dHJWrXRvu59h2yyMVhlwG
7703 Diagrams.Backend.Rasterific=diagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb:Diagrams.Backend.Rasterific,Diagrams.Backend.Rasterific.CmdLine=diagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb:Diagrams.Backend.Rasterific.CmdLine,Diagrams.Backend.Rasterific.Text=diagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb:Diagrams.Backend.Rasterific.Text
7704Ready component graph:
7705 definite diagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb
7706 depends base-4.10.1.0
7707 depends diagrams-core-1.4.0.1-H7RLfQGJXcE28ihDdzaKRC
7708 depends diagrams-lib-1.4.2-3Lx6QF8jpH6LfIgSJCiHhq
7709 depends hashable-1.2.6.1-IUPEWTVnKt9bEbAonnzII
7710 depends Rasterific-0.7.2.1-EsBvOJ9gJqiEkfDurPG22S
7711 depends FontyFruity-0.5.3.3-Hcq2HVqYpAf488Uvc3O4bA
7712 depends JuicyPixels-3.2.9.4-8Y8ACAO6yKU77PmhzW1mCN
7713 depends lens-4.15.4-AU6vXSagCAtFqwebslwbgU
7714 depends mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
7715 depends data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
7716 depends containers-0.5.10.2
7717 depends filepath-1.4.1.2
7718 depends optparse-applicative-0.14.2.0-Axz31IUiWuIDkdwAcX32vd
7719 depends bytestring-0.10.8.2
7720 depends file-embed-0.0.10.1-dHJWrXRvu59h2yyMVhlwG
7721Using Cabal-2.0.1.0 compiled by ghc-8.2
7722Using compiler: ghc-8.2.2
7723Using install prefix:
7724/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4
7725Executables installed in:
7726/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/bin
7727Libraries installed in:
7728/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/diagrams-rasterific-1.4
7729Dynamic Libraries installed in:
7730/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2
7731Private executables installed in:
7732/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/libexec/x86_64-osx-ghc-8.2.2/diagrams-rasterific-1.4
7733Data files installed in:
7734/nix/store/av1v3qbmkhinsmxqanfc65r2smaqyh08-diagrams-rasterific-1.4-data/share/ghc-8.2.2/x86_64-osx-ghc-8.2.2/diagrams-rasterific-1.4
7735Documentation installed in:
7736/nix/store/3vx3kcpayzl79sj8g3j10n5w4iqdk61h-diagrams-rasterific-1.4-doc/share/doc
7737Configuration files installed in:
7738/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/etc
7739No alex found
7740Using ar found on system at:
7741/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/ar
7742No c2hs found
7743No cpphs found
7744No doctest found
7745Using gcc version 4.2.1 given by user at:
7746/nix/store/53h1zds6q5k4ab4l7430fbddn0l0iq1c-clang-wrapper-5.0.1/bin/clang
7747Using ghc version 8.2.2 found on system at:
7748/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc
7749Using ghc-pkg version 8.2.2 found on system at:
7750/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc-pkg
7751No ghcjs found
7752No ghcjs-pkg found
7753No greencard found
7754Using haddock version 2.18.1 found on system at:
7755/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/haddock
7756No happy found
7757Using haskell-suite found on system at: haskell-suite-dummy-location
7758Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
7759No hmake found
7760Using hpc version 0.67 found on system at:
7761/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hpc
7762Using hsc2hs version 0.68.2 found on system at:
7763/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hsc2hs
7764Using hscolour version 1.24 found on system at:
7765/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2/bin/HsColour
7766No jhc found
7767Using ld found on system at:
7768/nix/store/cjhrjh6brgy1wahgbh5wqrflnb447bf8-cctools-binutils-darwin-wrapper/bin/ld
7769No lhc found
7770No lhc-pkg found
7771No pkg-config found
7772Using runghc version 8.2.2 found on system at:
7773/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/runghc
7774Using strip found on system at:
7775/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7776Using tar found on system at:
7777/nix/store/nwj6x1d0bz45nzsch3rhnfa5wi4kf4nk-gnutar-1.30/bin/tar
7778No uhc found
7779building
7780Preprocessing library for diagrams-rasterific-1.4..
7781Building library for diagrams-rasterific-1.4..
7782[1 of 4] Compiling Diagrams.Backend.Rasterific.Text ( src/Diagrams/Backend/Rasterific/Text.hs, dist/build/Diagrams/Backend/Rasterific/Text.o )
7783[11 of 27] Compiling Internal.Sparse ( src/Internal/Sparse.hs, dist/build/Internal/Sparse.o )
7784[12 of 27] Compiling Internal.Chain ( src/Internal/Chain.hs, dist/build/Internal/Chain.o )
7785[13 of 27] Compiling Internal.Algorithms ( src/Internal/Algorithms.hs, dist/build/Internal/Algorithms.o )
7786[2 of 4] Compiling Diagrams.Backend.Rasterific ( src/Diagrams/Backend/Rasterific.hs, dist/build/Diagrams/Backend/Rasterific.o )
7787[14 of 27] Compiling Internal.Random ( src/Internal/Random.hs, dist/build/Internal/Random.o )
7788[23 of 35] Compiling Language.R.HExp ( dist/build/Language/R/HExp.hs, dist/build/Language/R/HExp.o )
7789[15 of 27] Compiling Internal.Container ( src/Internal/Container.hs, dist/build/Internal/Container.o )
7790
7791src/Internal/Container.hs:185:10: warning: [-Wsimplifiable-class-constraints]
7792 • The constraint ‘Container Matrix e’
7793 matches an instance declaration
7794 instance (Num a, Element a, Container Vector a) =>
7795 Container Matrix a
7796 -- Defined at src/Internal/Numeric.hs:324:10
7797 This makes type inference for inner bindings fragile;
7798 either use MonoLocalBinds, or simplify it using the instance
7799 • In the context: Container Matrix e
7800 While checking an instance declaration
7801 In the instance declaration for
7802 ‘Build (Int, Int) (e -> e -> e) Matrix e’
7803 |
7804185 | instance Container Matrix e => Build (Int,Int) (e -> e -> e) Matrix e
7805 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7806[16 of 27] Compiling Internal.Convolution ( src/Internal/Convolution.hs, dist/build/Internal/Convolution.o )
7807[3 of 4] Compiling Diagrams.Backend.Rasterific.CmdLine ( src/Diagrams/Backend/Rasterific/CmdLine.hs, dist/build/Diagrams/Backend/Rasterific/CmdLine.o )
7808[17 of 27] Compiling Numeric.LinearAlgebra.Devel ( src/Numeric/LinearAlgebra/Devel.hs, dist/build/Numeric/LinearAlgebra/Devel.o )
7809[18 of 27] Compiling Numeric.Matrix ( src/Numeric/Matrix.hs, dist/build/Numeric/Matrix.o )
7810[4 of 4] Compiling Paths_diagrams_rasterific ( dist/build/autogen/Paths_diagrams_rasterific.hs, dist/build/Paths_diagrams_rasterific.o )
7811[24 of 35] Compiling Language.R.Debug ( src/Language/R/Debug.hs, dist/build/Language/R/Debug.o )
7812running tests
7813[19 of 27] Compiling Numeric.Vector ( src/Numeric/Vector.hs, dist/build/Numeric/Vector.o )
7814Package has no test suites.
7815haddockPhase
7816Running hscolour for diagrams-rasterific-1.4...
7817Preprocessing library for diagrams-rasterific-1.4..
7818Preprocessing library for diagrams-rasterific-1.4..
7819Running Haddock on library for diagrams-rasterific-1.4..
7820Warning: The documentation for the following packages are not installed. No
7821links will be generated to these packages: JuicyPixels-3.2.9.4, fail-4.9.0.0
7822[25 of 35] Compiling Language.R.Instance ( src/Language/R/Instance.hs, dist/build/Language/R/Instance.o )
7823[26 of 35] Compiling Language.R.Internal[boot] ( src/Language/R/Internal.hs-boot, dist/build/Language/R/Internal.o-boot )
7824[27 of 35] Compiling Language.R.Internal.FunWrappers.TH ( src/Language/R/Internal/FunWrappers/TH.hs, dist/build/Language/R/Internal/FunWrappers/TH.o )
7825[28 of 35] Compiling Language.R.Internal.FunWrappers ( src/Language/R/Internal/FunWrappers.hs, dist/build/Language/R/Internal/FunWrappers.o )
7826clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7827clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7828clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7829clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7830[29 of 35] Compiling Language.R.Literal ( src/Language/R/Literal.hs, dist/build/Language/R/Literal.o )
7831[20 of 27] Compiling Internal.Util ( src/Internal/Util.hs, dist/build/Internal/Util.o )
7832[30 of 35] Compiling Language.R ( src/Language/R.hs, dist/build/Language/R.o )
7833[31 of 35] Compiling Language.R.Internal ( src/Language/R/Internal.hs, dist/build/Language/R/Internal.o )
7834[32 of 35] Compiling Language.R.QQ ( src/Language/R/QQ.hs, dist/build/Language/R/QQ.o )
7835[33 of 35] Compiling H.Prelude ( src/H/Prelude.hs, dist/build/H/Prelude.o )
7836[34 of 35] Compiling Language.R.Matcher ( src/Language/R/Matcher.hs, dist/build/Language/R/Matcher.o )
7837Haddock coverage:
7838 100% ( 5 / 5) in 'Diagrams.Backend.Rasterific.Text'
7839Warning: Couldn't find .haddock for export GifDelay
7840Warning: Couldn't find .haddock for export GifLooping
7841Warning: Couldn't find .haddock for export PaletteOptions
7842Warning: Couldn't find .haddock for export defaultPaletteOptions
7843 77% ( 17 / 22) in 'Diagrams.Backend.Rasterific'
7844 Missing documentation for:
7845 B (src/Diagrams/Backend/Rasterific.hs:150)
7846 GifDelay
7847 GifLooping
7848 PaletteOptions
7849 defaultPaletteOptions
7850Cannot find documentation for: $mainwith
7851 86% ( 12 / 14) in 'Diagrams.Backend.Rasterific.CmdLine'
7852 Missing documentation for:
7853 multiMain (src/Diagrams/Backend/Rasterific/CmdLine.hs:132)
7854 B (src/Diagrams/Backend/Rasterific.hs:150)
7855 0% ( 0 / 9) in 'Paths_diagrams_rasterific'
7856 Missing documentation for:
7857 Module header
7858 version (dist/build/autogen/Paths_diagrams_rasterific.hs:28)
7859 getBinDir (dist/build/autogen/Paths_diagrams_rasterific.hs:39)
7860 getLibDir (dist/build/autogen/Paths_diagrams_rasterific.hs:39)
7861 getDynLibDir (dist/build/autogen/Paths_diagrams_rasterific.hs:39)
7862 getDataDir (dist/build/autogen/Paths_diagrams_rasterific.hs:39)
7863 getLibexecDir (dist/build/autogen/Paths_diagrams_rasterific.hs:39)
7864 getDataFileName (dist/build/autogen/Paths_diagrams_rasterific.hs:47)
7865 getSysconfDir (dist/build/autogen/Paths_diagrams_rasterific.hs:39)
7866Warning: Diagrams.Backend.Rasterific: could not find link destinations for:
7867 D:R:OptionsRasterificV2n0 RasterificOptions _sizeSpec D:R:RenderRasterificV2n0 R RenderM Image PixelRGBA8 D:R:OptionsNullBackendvn0 ~ PaletteCreationMethod PixelRGB8
7868Warning: Diagrams.Backend.Rasterific.CmdLine: could not find link destinations for:
7869 D:R:OptionsRasterificV2n0 RasterificOptions _sizeSpec D:R:RenderRasterificV2n0 R RenderM Image PixelRGBA8
7870[21 of 27] Compiling Internal.Modular ( src/Internal/Modular.hs, dist/build/Internal/Modular.o )
7871[35 of 35] Compiling H.Prelude.Interactive ( src/H/Prelude/Interactive.hs, dist/build/H/Prelude/Interactive.o )
7872Documentation created: dist/doc/html/diagrams-rasterific/index.html,
7873dist/doc/html/diagrams-rasterific/diagrams-rasterific.txt
7874
7875src/Internal/Modular.hs:135:10: warning: [-Wmissing-methods]
7876 • No explicit implementation for
7877 ‘reorderV’
7878 • In the instance declaration for ‘Element (Mod m I)’
7879 |
7880135 | instance KnownNat m => Element (Mod m I)
7881 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7882
7883src/Internal/Modular.hs:152:10: warning: [-Wmissing-methods]
7884 • No explicit implementation for
7885 ‘reorderV’
7886 • In the instance declaration for ‘Element (Mod m Z)’
7887 |
7888152 | instance KnownNat m => Element (Mod m Z)
7889 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7890installing
7891Installing library in /nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/diagrams-rasterific-1.4
7892clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7893post-installation fixup
7894strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7895stripping (with command strip and flags -S) in /nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib
7896patching script interpreter paths in /nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4
7897/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7898/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7899clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7900/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7901/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7902/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7903/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7904/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7905/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7906/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7907/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7908/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7909/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7910/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7911/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7912/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7913/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7914/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7915/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7916/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7917/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7918/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7919/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7920/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7921/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7922/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7923/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7924/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7925/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7926/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7927/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHSdiagrams-rasterific-1.4-AgKIfVeDBu9KevV3kOt0cb-ghc8.2.2.dylib: fixing dylib
7928strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7929patching script interpreter paths in /nix/store/av1v3qbmkhinsmxqanfc65r2smaqyh08-diagrams-rasterific-1.4-data
7930strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
7931patching script interpreter paths in /nix/store/3vx3kcpayzl79sj8g3j10n5w4iqdk61h-diagrams-rasterific-1.4-doc
7932Preprocessing test suite 'tests' for inline-r-0.9.1..
7933Building test suite 'tests' for inline-r-0.9.1..
7934[1 of 8] Compiling Test.Constraints ( tests/Test/Constraints.hs, dist/build/tests/tests-tmp/Test/Constraints.dyn_o )
7935[2 of 8] Compiling Test.Event ( tests/Test/Event.hs, dist/build/tests/tests-tmp/Test/Event.dyn_o )
7936clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7937clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7938[3 of 8] Compiling Test.FunPtr ( tests/Test/FunPtr.hs, dist/build/tests/tests-tmp/Test/FunPtr.dyn_o )
7939[4 of 8] Compiling Test.GC ( tests/Test/GC.hs, dist/build/tests/tests-tmp/Test/GC.dyn_o )
7940[5 of 8] Compiling Test.Matcher ( tests/Test/Matcher.hs, dist/build/tests/tests-tmp/Test/Matcher.dyn_o )
7941[6 of 8] Compiling Test.Regions ( tests/Test/Regions.hs, dist/build/tests/tests-tmp/Test/Regions.dyn_o )
7942[7 of 8] Compiling Test.Vector ( tests/Test/Vector.hs, dist/build/tests/tests-tmp/Test/Vector.dyn_o )
7943[8 of 8] Compiling Main ( tests/tests.hs, dist/build/tests/tests-tmp/Main.dyn_o )
7944Linking dist/build/tests/tests ...
7945clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7946clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7947Preprocessing test suite 'test-shootout' for inline-r-0.9.1..
7948Building test suite 'test-shootout' for inline-r-0.9.1..
7949[1 of 2] Compiling Test.Scripts ( tests/Test/Scripts.hs, dist/build/test-shootout/test-shootout-tmp/Test/Scripts.dyn_o )
7950[2 of 2] Compiling Main ( tests/test-shootout.hs, dist/build/test-shootout/test-shootout-tmp/Main.dyn_o )
7951Linking dist/build/test-shootout/test-shootout ...
7952clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7953clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
7954Preprocessing test suite 'test-qq' for inline-r-0.9.1..
7955Building test suite 'test-qq' for inline-r-0.9.1..
7956[1 of 1] Compiling Main ( tests/test-qq.hs, dist/build/test-qq/test-qq-tmp/Main.dyn_o )
7957[22 of 27] Compiling Numeric.LinearAlgebra.Data ( src/Numeric/LinearAlgebra/Data.hs, dist/build/Numeric/LinearAlgebra/Data.o )
7958[23 of 27] Compiling Internal.CG ( src/Internal/CG.hs, dist/build/Internal/CG.o )
7959[24 of 27] Compiling Numeric.LinearAlgebra ( src/Numeric/LinearAlgebra.hs, dist/build/Numeric/LinearAlgebra.o )
7960[25 of 27] Compiling Numeric.LinearAlgebra.HMatrix ( src/Numeric/LinearAlgebra/HMatrix.hs, dist/build/Numeric/LinearAlgebra/HMatrix.o )
7961[26 of 27] Compiling Internal.Static ( src/Internal/Static.hs, dist/build/Internal/Static.o )
7962
7963src/Internal/Static.hs:367:10: warning: [-Wsimplifiable-class-constraints]
7964 • The constraint ‘Num (Matrix t)’ matches an instance declaration
7965 instance (Container Matrix a, Num a, Num (Vector a)) =>
7966 Num (Matrix a)
7967 -- Defined at src/Numeric/Matrix.hs:45:10
7968 This makes type inference for inner bindings fragile;
7969 either use MonoLocalBinds, or simplify it using the instance
7970 • In the context: (Num (Vector t), Num (Matrix t), Fractional t,
7971 Numeric t)
7972 While checking an instance declaration
7973 In the instance declaration for ‘Fractional (Dim n (Vector t))’
7974 |
7975367 | instance (Num (Vector t), Num (Matrix t), Fractional t, Numeric t) => Fractional (Dim n (Vector t))
7976 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7977
7978src/Internal/Static.hs:392:10: warning: [-Wsimplifiable-class-constraints]
7979 • The constraint ‘Num (Matrix t)’ matches an instance declaration
7980 instance (Container Matrix a, Num a, Num (Vector a)) =>
7981 Num (Matrix a)
7982 -- Defined at src/Numeric/Matrix.hs:45:10
7983 This makes type inference for inner bindings fragile;
7984 either use MonoLocalBinds, or simplify it using the instance
7985 • In the context: (Num (Matrix t), Numeric t)
7986 While checking an instance declaration
7987 In the instance declaration for ‘Num (Dim m (Dim n (Matrix t)))’
7988 |
7989392 | instance (Num (Matrix t), Numeric t) => Num (Dim m (Dim n (Matrix t)))
7990 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7991
7992src/Internal/Static.hs:402:10: warning: [-Wsimplifiable-class-constraints]
7993 • The constraint ‘Num (Matrix t)’ matches an instance declaration
7994 instance (Container Matrix a, Num a, Num (Vector a)) =>
7995 Num (Matrix a)
7996 -- Defined at src/Numeric/Matrix.hs:45:10
7997 This makes type inference for inner bindings fragile;
7998 either use MonoLocalBinds, or simplify it using the instance
7999 • In the context: (Num (Vector t), Num (Matrix t), Fractional t,
8000 Numeric t)
8001 While checking an instance declaration
8002 In the instance declaration for
8003 ‘Fractional (Dim m (Dim n (Matrix t)))’
8004 |
8005402 | instance (Num (Vector t), Num (Matrix t), Fractional t, Numeric t) => Fractional (Dim m (Dim n (Matrix t)))
8006 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8007
8008src/Internal/Static.hs:407:10: warning: [-Wsimplifiable-class-constraints]
8009 • The constraint ‘Floating (Matrix t)’
8010 matches an instance declaration
8011 instance (Floating a, Container Vector a, Floating (Vector a),
8012 Fractional (Matrix a)) =>
8013 Floating (Matrix a)
8014 -- Defined at src/Numeric/Matrix.hs:62:10
8015 This makes type inference for inner bindings fragile;
8016 either use MonoLocalBinds, or simplify it using the instance
8017 • In the context: (Num (Vector t), Floating (Matrix t),
8018 Fractional t, Numeric t)
8019 While checking an instance declaration
8020 In the instance declaration for
8021 ‘Floating (Dim m (Dim n (Matrix t)))’
8022 |
8023407 | instance (Num (Vector t), Floating (Matrix t), Fractional t, Numeric t) => Floating (Dim m (Dim n (Matrix t))) where
8024 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8025Linking dist/build/test-qq/test-qq ...
8026clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
8027clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
8028running tests
8029Running 3 test suites...
8030Test suite tests: RUNNING...
8031Unit tests
8032 fromSEXP . mkSEXP: OK
8033 HEq HExp: OK
8034 Haskell function from R: Error: C stack usage 17587148116832 is too close to the limit
8035Execution halted
8036Test suite tests: FAIL
8037Test suite logged to: dist/test/inline-r-0.9.1-tests.log
8038Test suite test-shootout: RUNNING...
8039[27 of 27] Compiling Numeric.LinearAlgebra.Static ( src/Numeric/LinearAlgebra/Static.hs, dist/build/Numeric/LinearAlgebra/Static.o )
8040clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
8041clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
8042Quoted shootout programs
8043 tests/shootout/binarytrees.R: Error: C stack usage 17587583808352 is too close to the limit
8044Execution halted
8045Test suite test-shootout: FAIL
8046Test suite logged to: dist/test/inline-r-0.9.1-test-shootout.log
8047Test suite test-qq: RUNNING...
8048clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
8049
8050src/Internal/C/vector-aux.c:574:14: error:
8051 warning: absolute value function 'abs' given an argument of type 'const int64_t' (aka 'const long long') but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value]
8052 OP(3,abs)
8053 ^
8054 |
8055574 | OP(3,abs)
8056 | ^
8057
8058src/Internal/C/vector-aux.c:574:14: error:
8059 note: use function 'labs' instead
8060 OP(3,abs)
8061 ^~~
8062 labs
8063 |
8064574 | OP(3,abs)
8065 | ^
8066
8067src/Internal/C/vector-aux.c:504:53: error:
8068 note: expanded from macro 'OP'
8069 |
8070504 | #define OP(C,F) case C: { for(k=0;k<xn;k++) rp[k] = F(xp[k]); OK }
8071 | ^
8072#define OP(C,F) case C: { for(k=0;k<xn;k++) rp[k] = F(xp[k]); OK }
8073 ^
8074
8075src/Internal/C/vector-aux.c:941:9: error:
8076 warning: randomVector is not thread-safe in OSX and FreeBSD [-W#pragma-messages]
8077 |
8078941 | #pragma message "randomVector is not thread-safe in OSX and FreeBSD"
8079 | ^
8080#pragma message "randomVector is not thread-safe in OSX and FreeBSD"
8081 ^
80822 warnings generated.
8083clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
8084
8085src/Internal/C/vector-aux.c:574:14: error:
8086 warning: absolute value function 'abs' given an argument of type 'const int64_t' (aka 'const long long') but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value]
8087 OP(3,abs)
8088 ^
8089 |
8090574 | OP(3,abs)
8091 | ^
8092
8093src/Internal/C/vector-aux.c:574:14: error:
8094 note: use function 'labs' instead
8095 OP(3,abs)
8096 ^~~
8097 labs
8098 |
8099574 | OP(3,abs)
8100 | ^
8101
8102src/Internal/C/vector-aux.c:504:53: error:
8103 note: expanded from macro 'OP'
8104 |
8105504 | #define OP(C,F) case C: { for(k=0;k<xn;k++) rp[k] = F(xp[k]); OK }
8106 | ^
8107#define OP(C,F) case C: { for(k=0;k<xn;k++) rp[k] = F(xp[k]); OK }
8108 ^
8109
8110src/Internal/C/vector-aux.c:941:9: error:
8111 warning: randomVector is not thread-safe in OSX and FreeBSD [-W#pragma-messages]
8112 |
8113941 | #pragma message "randomVector is not thread-safe in OSX and FreeBSD"
8114 | ^
8115#pragma message "randomVector is not thread-safe in OSX and FreeBSD"
8116 ^
81172 warnings generated.
8118running tests
8119Package has no test suites.
8120haddockPhase
8121Running hscolour for hmatrix-0.18.2.0...
8122Preprocessing library for hmatrix-0.18.2.0..
8123Preprocessing library for hmatrix-0.18.2.0..
8124Running Haddock on library for hmatrix-0.18.2.0..
8125Haddock coverage:
8126 65% ( 28 / 43) in 'Internal.Vector'
8127 Missing documentation for:
8128 I (src/Internal/Vector.hs:47)
8129 Z (src/Internal/Vector.hs:48)
8130 R (src/Internal/Vector.hs:49)
8131 C (src/Internal/Vector.hs:50)
8132 createVector (src/Internal/Vector.hs:74)
8133 avec (src/Internal/Vector.hs:70)
8134 inlinePerformIO (src/Internal/Vector.hs:98)
8135 toList (src/Internal/Vector.hs:108)
8136 toByteString (src/Internal/Vector.hs:401)
8137 fromByteString (src/Internal/Vector.hs:408)
8138 foldVector (src/Internal/Vector.hs:267)
8139 foldVectorG (src/Internal/Vector.hs:291)
8140 foldVectorWithIndex (src/Internal/Vector.hs:277)
8141 foldLoop (src/Internal/Vector.hs:286)
8142 mapVectorWithIndex (src/Internal/Vector.hs:365)
8143 41% ( 7 / 17) in 'Internal.Devel'
8144 Missing documentation for:
8145 CM (src/Internal/Devel.hs:67)
8146 CV (src/Internal/Devel.hs:68)
8147 OM (src/Internal/Devel.hs:69)
8148 CIdxs (src/Internal/Devel.hs:71)
8149 Ok (src/Internal/Devel.hs:72)
8150 :> (src/Internal/Devel.hs:75)
8151 ::> (src/Internal/Devel.hs:76)
8152 ..> (src/Internal/Devel.hs:77)
8153 TransArray (src/Internal/Devel.hs:79)
8154 (src/Internal/Devel.hs:87)
8155 25% ( 35 /142) in 'Internal.Vectorized'
8156 Missing documentation for:
8157 # (src/Internal/Vectorized.hs:31)
8158 #! (src/Internal/Vectorized.hs:34)
8159 fromei (src/Internal/Vectorized.hs:37)
8160 FunCodeV (src/Internal/Vectorized.hs:39)
8161 FunCodeSV (src/Internal/Vectorized.hs:58)
8162 FunCodeVV (src/Internal/Vectorized.hs:68)
8163 FunCodeS (src/Internal/Vectorized.hs:77)
8164 sumI (src/Internal/Vectorized.hs:103)
8165 sumL (src/Internal/Vectorized.hs:105)
8166 sumg (src/Internal/Vectorized.hs:107)
8167 TVV (src/Internal/Vectorized.hs:112)
8168 c_sumF (src/Internal/Vectorized.hs:114)
8169 c_sumR (src/Internal/Vectorized.hs:115)
8170 c_sumQ (src/Internal/Vectorized.hs:116)
8171 c_sumC (src/Internal/Vectorized.hs:117)
8172 c_sumI (src/Internal/Vectorized.hs:118)
8173 c_sumL (src/Internal/Vectorized.hs:119)
8174 prodI (src/Internal/Vectorized.hs:137)
8175 prodL (src/Internal/Vectorized.hs:140)
8176 prodg (src/Internal/Vectorized.hs:143)
8177 c_prodF (src/Internal/Vectorized.hs:149)
8178 c_prodR (src/Internal/Vectorized.hs:150)
8179 c_prodQ (src/Internal/Vectorized.hs:151)
8180 c_prodC (src/Internal/Vectorized.hs:152)
8181 c_prodI (src/Internal/Vectorized.hs:153)
8182 c_prodL (src/Internal/Vectorized.hs:154)
8183 toScalarAux (src/Internal/Vectorized.hs:158)
8184 vectorMapAux (src/Internal/Vectorized.hs:163)
8185 vectorMapValAux (src/Internal/Vectorized.hs:168)
8186 vectorZipAux (src/Internal/Vectorized.hs:175)
8187 c_toScalarR (src/Internal/Vectorized.hs:186)
8188 c_toScalarF (src/Internal/Vectorized.hs:192)
8189 c_toScalarC (src/Internal/Vectorized.hs:198)
8190 c_toScalarQ (src/Internal/Vectorized.hs:204)
8191 c_toScalarI (src/Internal/Vectorized.hs:210)
8192 c_toScalarL (src/Internal/Vectorized.hs:216)
8193 c_vectorMapR (src/Internal/Vectorized.hs:225)
8194 c_vectorMapC (src/Internal/Vectorized.hs:231)
8195 c_vectorMapF (src/Internal/Vectorized.hs:237)
8196 c_vectorMapQ (src/Internal/Vectorized.hs:243)
8197 c_vectorMapI (src/Internal/Vectorized.hs:249)
8198 c_vectorMapL (src/Internal/Vectorized.hs:255)
8199 c_vectorMapValR (src/Internal/Vectorized.hs:263)
8200 c_vectorMapValC (src/Internal/Vectorized.hs:269)
8201 c_vectorMapValF (src/Internal/Vectorized.hs:275)
8202 c_vectorMapValQ (src/Internal/Vectorized.hs:281)
8203 c_vectorMapValI (src/Internal/Vectorized.hs:287)
8204 c_vectorMapValL (src/Internal/Vectorized.hs:293)
8205 TVVV (src/Internal/Vectorized.hs:298)
8206 c_vectorZipR (src/Internal/Vectorized.hs:304)
8207 c_vectorZipC (src/Internal/Vectorized.hs:310)
8208 c_vectorZipF (src/Internal/Vectorized.hs:316)
8209 c_vectorZipQ (src/Internal/Vectorized.hs:322)
8210 c_vectorZipI (src/Internal/Vectorized.hs:328)
8211 c_vectorZipL (src/Internal/Vectorized.hs:334)
8212 c_vectorScan (src/Internal/Vectorized.hs:338)
8213 vectorScan (src/Internal/Vectorized.hs:341)
8214 Seed (src/Internal/Vectorized.hs:361)
8215 RandDist (src/Internal/Vectorized.hs:363)
8216 c_random_vector (src/Internal/Vectorized.hs:377)
8217 roundVector (src/Internal/Vectorized.hs:381)
8218 c_round_vector (src/Internal/Vectorized.hs:386)
8219 c_range_vector (src/Internal/Vectorized.hs:400)
8220 float2DoubleV (src/Internal/Vectorized.hs:403)
8221 double2FloatV (src/Internal/Vectorized.hs:406)
8222 double2IntV (src/Internal/Vectorized.hs:409)
8223 int2DoubleV (src/Internal/Vectorized.hs:412)
8224 double2longV (src/Internal/Vectorized.hs:415)
8225 long2DoubleV (src/Internal/Vectorized.hs:418)
8226 float2IntV (src/Internal/Vectorized.hs:422)
8227 int2floatV (src/Internal/Vectorized.hs:425)
8228 int2longV (src/Internal/Vectorized.hs:428)
8229 long2intV (src/Internal/Vectorized.hs:431)
8230 tog (src/Internal/Vectorized.hs:435)
8231 c_float2double (src/Internal/Vectorized.hs:440)
8232 c_double2float (src/Internal/Vectorized.hs:441)
8233 c_int2double (src/Internal/Vectorized.hs:442)
8234 c_double2int (src/Internal/Vectorized.hs:443)
8235 c_long2double (src/Internal/Vectorized.hs:444)
8236 c_double2long (src/Internal/Vectorized.hs:445)
8237 c_int2float (src/Internal/Vectorized.hs:446)
8238 c_float2int (src/Internal/Vectorized.hs:447)
8239 c_int2long (src/Internal/Vectorized.hs:448)
8240 c_long2int (src/Internal/Vectorized.hs:449)
8241 stepg (src/Internal/Vectorized.hs:454)
8242 stepD (src/Internal/Vectorized.hs:459)
8243 stepF (src/Internal/Vectorized.hs:462)
8244 stepI (src/Internal/Vectorized.hs:465)
8245 stepL (src/Internal/Vectorized.hs:468)
8246 c_stepF (src/Internal/Vectorized.hs:472)
8247 c_stepD (src/Internal/Vectorized.hs:473)
8248 c_stepI (src/Internal/Vectorized.hs:474)
8249 c_stepL (src/Internal/Vectorized.hs:475)
8250 conjugateAux (src/Internal/Vectorized.hs:479)
8251 conjugateQ (src/Internal/Vectorized.hs:484)
8252 c_conjugateQ (src/Internal/Vectorized.hs:486)
8253 conjugateC (src/Internal/Vectorized.hs:488)
8254 c_conjugateC (src/Internal/Vectorized.hs:490)
8255 cloneVector (src/Internal/Vectorized.hs:494)
8256 constantAux (src/Internal/Vectorized.hs:504)
8257 TConst (src/Internal/Vectorized.hs:511)
8258 cconstantF (src/Internal/Vectorized.hs:513)
8259 cconstantR (src/Internal/Vectorized.hs:514)
8260 cconstantQ (src/Internal/Vectorized.hs:515)
8261 cconstantC (src/Internal/Vectorized.hs:516)
8262 cconstantI (src/Internal/Vectorized.hs:517)
8263 cconstantL (src/Internal/Vectorized.hs:518)
8264 12% ( 18 /156) in 'Internal.Matrix'
8265 Missing documentation for:
8266 MatrixOrder (src/Internal/Matrix.hs:39)
8267 rows (src/Internal/Matrix.hs:52)
8268 cols (src/Internal/Matrix.hs:56)
8269 size (src/Internal/Matrix.hs:60)
8270 rowOrder (src/Internal/Matrix.hs:63)
8271 colOrder (src/Internal/Matrix.hs:66)
8272 is1d (src/Internal/Matrix.hs:69)
8273 isSlice (src/Internal/Matrix.hs:73)
8274 orderOf (src/Internal/Matrix.hs:76)
8275 showInternal (src/Internal/Matrix.hs:80)
8276 cmat (src/Internal/Matrix.hs:99)
8277 fmat (src/Internal/Matrix.hs:105)
8278 amatr (src/Internal/Matrix.hs:113)
8279 amat (src/Internal/Matrix.hs:120)
8280 (src/Internal/Matrix.hs:129)
8281 # (src/Internal/Matrix.hs:139)
8282 #! (src/Internal/Matrix.hs:142)
8283 copy (src/Internal/Matrix.hs:147)
8284 extractAll (src/Internal/Matrix.hs:149)
8285 atM' (src/Internal/Matrix.hs:226)
8286 matrixFromVector (src/Internal/Matrix.hs:231)
8287 createMatrix (src/Internal/Matrix.hs:241)
8288 (src/Internal/Matrix.hs:291)
8289 (src/Internal/Matrix.hs:304)
8290 (src/Internal/Matrix.hs:317)
8291 (src/Internal/Matrix.hs:330)
8292 (src/Internal/Matrix.hs:343)
8293 (src/Internal/Matrix.hs:356)
8294 maxZ (src/Internal/Matrix.hs:390)
8295 conformMs (src/Internal/Matrix.hs:392)
8296 conformVs (src/Internal/Matrix.hs:398)
8297 conformMTo (src/Internal/Matrix.hs:402)
8298 conformVTo (src/Internal/Matrix.hs:409)
8299 repRows (src/Internal/Matrix.hs:414)
8300 repCols (src/Internal/Matrix.hs:415)
8301 shSize (src/Internal/Matrix.hs:417)
8302 shDim (src/Internal/Matrix.hs:419)
8303 emptyM (src/Internal/Matrix.hs:421)
8304 (src/Internal/Matrix.hs:425)
8305 extractAux (src/Internal/Matrix.hs:435)
8306 Extr (src/Internal/Matrix.hs:443)
8307 c_extractD (src/Internal/Matrix.hs:445)
8308 c_extractF (src/Internal/Matrix.hs:446)
8309 c_extractC (src/Internal/Matrix.hs:447)
8310 c_extractQ (src/Internal/Matrix.hs:448)
8311 c_extractI (src/Internal/Matrix.hs:449)
8312 c_extractL (src/Internal/Matrix.hs:450)
8313 setRectAux (src/Internal/Matrix.hs:454)
8314 SetRect (src/Internal/Matrix.hs:456)
8315 c_setRectD (src/Internal/Matrix.hs:458)
8316 c_setRectF (src/Internal/Matrix.hs:459)
8317 c_setRectC (src/Internal/Matrix.hs:460)
8318 c_setRectQ (src/Internal/Matrix.hs:461)
8319 c_setRectI (src/Internal/Matrix.hs:462)
8320 c_setRectL (src/Internal/Matrix.hs:463)
8321 sortG (src/Internal/Matrix.hs:467)
8322 sortIdxD (src/Internal/Matrix.hs:472)
8323 sortIdxF (src/Internal/Matrix.hs:473)
8324 sortIdxI (src/Internal/Matrix.hs:474)
8325 sortIdxL (src/Internal/Matrix.hs:475)
8326 sortValD (src/Internal/Matrix.hs:477)
8327 sortValF (src/Internal/Matrix.hs:478)
8328 sortValI (src/Internal/Matrix.hs:479)
8329 sortValL (src/Internal/Matrix.hs:480)
8330 c_sort_indexD (src/Internal/Matrix.hs:482)
8331 c_sort_indexF (src/Internal/Matrix.hs:483)
8332 c_sort_indexI (src/Internal/Matrix.hs:484)
8333 c_sort_indexL (src/Internal/Matrix.hs:485)
8334 c_sort_valD (src/Internal/Matrix.hs:487)
8335 c_sort_valF (src/Internal/Matrix.hs:488)
8336 c_sort_valI (src/Internal/Matrix.hs:489)
8337 c_sort_valL (src/Internal/Matrix.hs:490)
8338 compareG (src/Internal/Matrix.hs:494)
8339 compareD (src/Internal/Matrix.hs:499)
8340 compareF (src/Internal/Matrix.hs:500)
8341 compareI (src/Internal/Matrix.hs:501)
8342 compareL (src/Internal/Matrix.hs:502)
8343 c_compareD (src/Internal/Matrix.hs:504)
8344 c_compareF (src/Internal/Matrix.hs:505)
8345 c_compareI (src/Internal/Matrix.hs:506)
8346 c_compareL (src/Internal/Matrix.hs:507)
8347 selectG (src/Internal/Matrix.hs:511)
8348 selectD (src/Internal/Matrix.hs:516)
8349 selectF (src/Internal/Matrix.hs:517)
8350 selectI (src/Internal/Matrix.hs:518)
8351 selectL (src/Internal/Matrix.hs:519)
8352 selectC (src/Internal/Matrix.hs:520)
8353 selectQ (src/Internal/Matrix.hs:521)
8354 Sel (src/Internal/Matrix.hs:523)
8355 c_selectD (src/Internal/Matrix.hs:525)
8356 c_selectF (src/Internal/Matrix.hs:526)
8357 c_selectI (src/Internal/Matrix.hs:527)
8358 c_selectC (src/Internal/Matrix.hs:528)
8359 c_selectQ (src/Internal/Matrix.hs:529)
8360 c_selectL (src/Internal/Matrix.hs:530)
8361 remapG (src/Internal/Matrix.hs:534)
8362 remapD (src/Internal/Matrix.hs:539)
8363 remapF (src/Internal/Matrix.hs:540)
8364 remapI (src/Internal/Matrix.hs:541)
8365 remapL (src/Internal/Matrix.hs:542)
8366 remapC (src/Internal/Matrix.hs:543)
8367 remapQ (src/Internal/Matrix.hs:544)
8368 Rem (src/Internal/Matrix.hs:546)
8369 c_remapD (src/Internal/Matrix.hs:548)
8370 c_remapF (src/Internal/Matrix.hs:549)
8371 c_remapI (src/Internal/Matrix.hs:550)
8372 c_remapC (src/Internal/Matrix.hs:551)
8373 c_remapQ (src/Internal/Matrix.hs:552)
8374 c_remapL (src/Internal/Matrix.hs:553)
8375 rowOpAux (src/Internal/Matrix.hs:557)
8376 RowOp (src/Internal/Matrix.hs:562)
8377 c_rowOpD (src/Internal/Matrix.hs:564)
8378 c_rowOpF (src/Internal/Matrix.hs:565)
8379 c_rowOpC (src/Internal/Matrix.hs:566)
8380 c_rowOpQ (src/Internal/Matrix.hs:567)
8381 c_rowOpI (src/Internal/Matrix.hs:568)
8382 c_rowOpL (src/Internal/Matrix.hs:569)
8383 c_rowOpMI (src/Internal/Matrix.hs:570)
8384 c_rowOpML (src/Internal/Matrix.hs:571)
8385 gemmg (src/Internal/Matrix.hs:575)
8386 Tgemm (src/Internal/Matrix.hs:577)
8387 c_gemmD (src/Internal/Matrix.hs:579)
8388 c_gemmF (src/Internal/Matrix.hs:580)
8389 c_gemmC (src/Internal/Matrix.hs:581)
8390 c_gemmQ (src/Internal/Matrix.hs:582)
8391 c_gemmI (src/Internal/Matrix.hs:583)
8392 c_gemmL (src/Internal/Matrix.hs:584)
8393 c_gemmMI (src/Internal/Matrix.hs:585)
8394 c_gemmML (src/Internal/Matrix.hs:586)
8395 reorderAux (src/Internal/Matrix.hs:590)
8396 Reorder (src/Internal/Matrix.hs:596)
8397 c_reorderD (src/Internal/Matrix.hs:598)
8398 c_reorderF (src/Internal/Matrix.hs:599)
8399 c_reorderI (src/Internal/Matrix.hs:600)
8400 c_reorderC (src/Internal/Matrix.hs:601)
8401 c_reorderQ (src/Internal/Matrix.hs:602)
8402 c_reorderL (src/Internal/Matrix.hs:603)
8403 c_saveMatrix (src/Internal/Matrix.hs:617)
8404 16% ( 7 / 43) in 'Internal.ST'
8405 Missing documentation for:
8406 STVector (src/Internal/ST.hs:51)
8407 newVector (src/Internal/ST.hs:101)
8408 thawVector (src/Internal/ST.hs:53)
8409 freezeVector (src/Internal/ST.hs:77)
8410 runSTVector (src/Internal/ST.hs:59)
8411 readVector (src/Internal/ST.hs:90)
8412 writeVector (src/Internal/ST.hs:94)
8413 modifyVector (src/Internal/ST.hs:71)
8414 liftSTVector (src/Internal/ST.hs:74)
8415 STMatrix (src/Internal/ST.hs:120)
8416 newMatrix (src/Internal/ST.hs:177)
8417 thawMatrix (src/Internal/ST.hs:122)
8418 freezeMatrix (src/Internal/ST.hs:150)
8419 runSTMatrix (src/Internal/ST.hs:128)
8420 readMatrix (src/Internal/ST.hs:163)
8421 writeMatrix (src/Internal/ST.hs:167)
8422 modifyMatrix (src/Internal/ST.hs:140)
8423 liftSTMatrix (src/Internal/ST.hs:143)
8424 mutable (src/Internal/ST.hs:243)
8425 extractMatrix (src/Internal/ST.hs:226)
8426 setMatrix (src/Internal/ST.hs:170)
8427 rowOper (src/Internal/ST.hs:206)
8428 RowOper (src/Internal/ST.hs:202)
8429 RowRange (src/Internal/ST.hs:192)
8430 ColRange (src/Internal/ST.hs:182)
8431 gemmm (src/Internal/ST.hs:236)
8432 newUndefinedVector (src/Internal/ST.hs:97)
8433 unsafeReadVector (src/Internal/ST.hs:63)
8434 unsafeWriteVector (src/Internal/ST.hs:67)
8435 unsafeThawVector (src/Internal/ST.hs:56)
8436 unsafeFreezeVector (src/Internal/ST.hs:80)
8437 newUndefinedMatrix (src/Internal/ST.hs:173)
8438 unsafeReadMatrix (src/Internal/ST.hs:132)
8439 unsafeWriteMatrix (src/Internal/ST.hs:136)
8440 unsafeThawMatrix (src/Internal/ST.hs:125)
8441 unsafeFreezeMatrix (src/Internal/ST.hs:146)
8442 90% ( 9 / 10) in 'Internal.IO'
8443 Missing documentation for:
8444 loadMatrix' (src/Internal/IO.hs:172)
8445 56% ( 30 / 54) in 'Internal.Element'
8446 Missing documentation for:
8447 (src/Internal/Element.hs:40)
8448 (src/Internal/Element.hs:52)
8449 sizes (src/Internal/Element.hs:56)
8450 dsp (src/Internal/Element.hs:58)
8451 (src/Internal/Element.hs:68)
8452 breakAt (src/Internal/Element.hs:76)
8453 ppext (src/Internal/Element.hs:92)
8454 minEl (src/Internal/Element.hs:131)
8455 maxEl (src/Internal/Element.hs:132)
8456 cmodi (src/Internal/Element.hs:133)
8457 extractError (src/Internal/Element.hs:135)
8458 fromBlocksRaw (src/Internal/Element.hs:235)
8459 adaptBlocks (src/Internal/Element.hs:237)
8460 takeRows (src/Internal/Element.hs:353)
8461 dropRows (src/Internal/Element.hs:360)
8462 takeColumns (src/Internal/Element.hs:367)
8463 dropColumns (src/Internal/Element.hs:374)
8464 fromArray2D (src/Internal/Element.hs:440)
8465 lM (src/Internal/Element.hs:489)
8466 compat' (src/Internal/Element.hs:499)
8467 toBlockRows (src/Internal/Element.hs:507)
8468 toBlockCols (src/Internal/Element.hs:516)
8469 mk (src/Internal/Element.hs:546)
8470 mapMatrix (src/Internal/Element.hs:599)
8471 100% ( 4 / 4) in 'Internal.Conversion'
8472 42% ( 62 /149) in 'Internal.LAPACK'
8473 Missing documentation for:
8474 # (src/Internal/LAPACK.hs:32)
8475 #! (src/Internal/LAPACK.hs:35)
8476 TMMM (src/Internal/LAPACK.hs:40)
8477 F (src/Internal/LAPACK.hs:42)
8478 Q (src/Internal/LAPACK.hs:43)
8479 dgemmc (src/Internal/LAPACK.hs:45)
8480 zgemmc (src/Internal/LAPACK.hs:46)
8481 sgemmc (src/Internal/LAPACK.hs:47)
8482 cgemmc (src/Internal/LAPACK.hs:48)
8483 c_multiplyI (src/Internal/LAPACK.hs:49)
8484 c_multiplyL (src/Internal/LAPACK.hs:50)
8485 isT (src/Internal/LAPACK.hs:52)
8486 tt (src/Internal/LAPACK.hs:55)
8487 multiplyAux (src/Internal/LAPACK.hs:58)
8488 multiplyI (src/Internal/LAPACK.hs:81)
8489 multiplyL (src/Internal/LAPACK.hs:89)
8490 TSVD (src/Internal/LAPACK.hs:99)
8491 dgesvd (src/Internal/LAPACK.hs:101)
8492 zgesvd (src/Internal/LAPACK.hs:102)
8493 dgesdd (src/Internal/LAPACK.hs:103)
8494 zgesdd (src/Internal/LAPACK.hs:104)
8495 svdAux (src/Internal/LAPACK.hs:122)
8496 thinSVDAux (src/Internal/LAPACK.hs:150)
8497 svAux (src/Internal/LAPACK.hs:179)
8498 rightSVAux (src/Internal/LAPACK.hs:199)
8499 leftSVAux (src/Internal/LAPACK.hs:220)
8500 dgeev (src/Internal/LAPACK.hs:234)
8501 zgeev (src/Internal/LAPACK.hs:235)
8502 dsyev (src/Internal/LAPACK.hs:236)
8503 zheev (src/Internal/LAPACK.hs:237)
8504 eigAux (src/Internal/LAPACK.hs:239)
8505 eigOnlyAux (src/Internal/LAPACK.hs:255)
8506 eigRaux (src/Internal/LAPACK.hs:278)
8507 fixeig1 (src/Internal/LAPACK.hs:289)
8508 fixeig (src/Internal/LAPACK.hs:292)
8509 eigSHAux (src/Internal/LAPACK.hs:308)
8510 vrev (src/Internal/LAPACK.hs:352)
8511 dgesv
8512src/Internal/Container.hs:185:10: warning: [-Wsimplifiable-class-constraints]
8513 • The constraint ‘Container Matrix e’
8514 matches an instance declaration
8515 instance (Num a, Element a, Container Vector a) =>
8516 Container Matrix a
8517 -- Defined at src/Internal/Numeric.hs:324:10
8518 This makes type inference for inner bindings fragile;
8519 either use MonoLocalBinds, or simplify it using the instance
8520 • In the context: Container Matrix e
8521 While checking an instance declaration
8522 In the instance declaration for
8523 ‘Build (Int, Int) (e -> e -> e) Matrix e’
8524 |
8525185 | instance Container Matrix e => Build (Int,Int) (e -> e -> e) Matrix e
8526 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8527(src/Internal/LAPACK.hs:355)
8528 zgesv (src/Internal/LAPACK.hs:356)
8529 linearSolveSQAux (src/Internal/LAPACK.hs:358)
8530 mbLinearSolveR (src/Internal/LAPACK.hs:374)
8531 mbLinearSolveC (src/Internal/LAPACK.hs:382)
8532 dpotrs (src/Internal/LAPACK.hs:386)
8533 zpotrs (src/Internal/LAPACK.hs:387)
8534 linearSolveSQAux2 (src/Internal/LAPACK.hs:390)
8535 dtrtrs_u (src/Internal/LAPACK.hs:410)
8536 ztrtrs_u (src/Internal/LAPACK.hs:411)
8537 dtrtrs_l (src/Internal/LAPACK.hs:412)
8538 ztrtrs_l (src/Internal/LAPACK.hs:413)
8539 linearSolveTRAux2 (src/Internal/LAPACK.hs:416)
8540 UpLo (src/Internal/LAPACK.hs:427)
8541 dgttrs (src/Internal/LAPACK.hs:440)
8542 zgttrs (src/Internal/LAPACK.hs:441)
8543 linearSolveGTAux2 (src/Internal/LAPACK.hs:443)
8544 triDiagSolveC (src/Internal/LAPACK.hs:459)
8545 dgels (src/Internal/LAPACK.hs:463)
8546 zgels (src/Internal/LAPACK.hs:464)
8547 dgelss (src/Internal/LAPACK.hs:465)
8548 zgelss (src/Internal/LAPACK.hs:466)
8549 linearSolveAux (src/Internal/LAPACK.hs:468)
8550 zpotrf (src/Internal/LAPACK.hs:511)
8551 dpotrf (src/Internal/LAPACK.hs:512)
8552 cholAux (src/Internal/LAPACK.hs:514)
8553 TMVM (src/Internal/LAPACK.hs:537)
8554 dgeqr2 (src/Internal/LAPACK.hs:539)
8555 zgeqr2 (src/Internal/LAPACK.hs:540)
8556 qrAux (src/Internal/LAPACK.hs:550)
8557 dorgqr (src/Internal/LAPACK.hs:560)
8558 zungqr (src/Internal/LAPACK.hs:561)
8559 qrgrAux (src/Internal/LAPACK.hs:570)
8560 dgehrd (src/Internal/LAPACK.hs:578)
8561 zgehrd (src/Internal/LAPACK.hs:579)
8562 hessAux (src/Internal/LAPACK.hs:589)
8563 dgees (src/Internal/LAPACK.hs:600)
8564 zgees (src/Internal/LAPACK.hs:601)
8565 schurAux (src/Internal/LAPACK.hs:611)
8566 dgetrf (src/Internal/LAPACK.hs:620)
8567 zgetrf (src/Internal/LAPACK.hs:621)
8568 luAux (src/Internal/LAPACK.hs:631)
8569 dgetrs (src/Internal/LAPACK.hs:642)
8570 zgetrs (src/Internal/LAPACK.hs:643)
8571 lusAux (src/Internal/LAPACK.hs:653)
8572 dsytrf (src/Internal/LAPACK.hs:666)
8573 zhetrf (src/Internal/LAPACK.hs:667)
8574 ldlAux (src/Internal/LAPACK.hs:677)
8575 dsytrs (src/Internal/LAPACK.hs:685)
8576 zsytrs (src/Internal/LAPACK.hs:686)
8577 25% ( 25 / 99) in 'Internal.Numeric'
8578 Missing documentation for:
8579 IndexOf (src/Internal/Numeric.hs:32)
8580 ArgOf (src/Internal/Numeric.hs:37)
8581 (src/Internal/Numeric.hs:97)
8582 (src/Internal/Numeric.hs:136)
8583 (src/Internal/Numeric.hs:176)
8584 (src/Internal/Numeric.hs:213)
8585 (src/Internal/Numeric.hs:250)
8586 (src/Internal/Numeric.hs:286)
8587 (src/Internal/Numeric.hs:324)
8588 emptyErrorV (src/Internal/Numeric.hs:365)
8589 emptyErrorM (src/Internal/Numeric.hs:370)
8590 arctan2 (src/Internal/Numeric.hs:391)
8591 toInt (src/Internal/Numeric.hs:410)
8592 fromZ (src/Internal/Numeric.hs:413)
8593 toZ (src/Internal/Numeric.hs:416)
8594 Konst (src/Internal/Numeric.hs:551)
8595 (src/Internal/Numeric.hs:565)
8596 (src/Internal/Numeric.hs:569)
8597 Numeric (src/Internal/Numeric.hs:575)
8598 (src/Internal/Numeric.hs:587)
8599 (src/Internal/Numeric.hs:588)
8600 (src/Internal/Numeric.hs:589)
8601 (src/Internal/Numeric.hs:590)
8602 (src/Internal/Numeric.hs:591)
8603 (src/Internal/Numeric.hs:592)
8604 (src/Internal/Numeric.hs:611)
8605 (src/Internal/Numeric.hs:618)
8606 (src/Internal/Numeric.hs:625)
8607 (src/Internal/Numeric.hs:632)
8608 (src/Internal/Numeric.hs:639)
8609 (src/Internal/Numeric.hs:646)
8610 emptyMul (src/Internal/Numeric.hs:654)
8611 emptyVal (src/Internal/Numeric.hs:663)
8612 mXm (src/Internal/Numeric.hs:681)
8613 mXv (src/Internal/Numeric.hs:685)
8614 vXm (src/Internal/Numeric.hs:689)
8615 Convert (src/Internal/Numeric.hs:737)
8616 (src/Internal/Numeric.hs:746)
8617 (src/Internal/Numeric.hs:754)
8618 (src/Internal/Numeric.hs:762)
8619 (src/Internal/Numeric.hs:770)
8620 RealOf (src/Internal/Numeric.hs:780)
8621 ComplexOf (src/Internal/Numeric.hs:791)
8622 SingleOf (src/Internal/Numeric.hs:799)
8623 DoubleOf (src/Internal/Numeric.hs:806)
8624 ElementOf (src/Internal/Numeric.hs:813)
8625 buildM (src/Internal/Numeric.hs:820)
8626 buildV (src/Internal/Numeric.hs:824)
8627 findV (src/Internal/Numeric.hs:839)
8628 findM (src/Internal/Numeric.hs:842)
8629 assocV (src/Internal/Numeric.hs:844)
8630 assocM (src/Internal/Numeric.hs:849)
8631 accumV (src/Internal/Numeric.hs:854)
8632 accumM (src/Internal/Numeric.hs:859)
8633 compareM (src/Internal/Numeric.hs:866)
8634 compareCV (src/Internal/Numeric.hs:871)
8635 selectM (src/Internal/Numeric.hs:875)
8636 selectCV (src/Internal/Numeric.hs:880)
8637 CTrans (src/Internal/Numeric.hs:886)
8638 (src/Internal/Numeric.hs:891)
8639 (src/Internal/Numeric.hs:892)
8640 (src/Internal/Numeric.hs:893)
8641 (src/Internal/Numeric.hs:894)
8642 (src/Internal/Numeric.hs:896)
8643 (src/Internal/Numeric.hs:900)
8644 Transposable (src/Internal/Numeric.hs:904)
8645 (src/Internal/Numeric.hs:911)
8646 Additive (src/Internal/Numeric.hs:916)
8647 Linear (src/Internal/Numeric.hs:920)
8648 (src/Internal/Numeric.hs:925)
8649 (src/Internal/Numeric.hs:929)
8650 (src/Internal/Numeric.hs:933)
8651 (src/Internal/Numeric.hs:937)
8652 Testable (src/Internal/Numeric.hs:942)
8653 17% ( 2 / 12) in 'Internal.Sparse'
8654 Missing documentation for:
8655 Module header
8656 CSR (src/Internal/Sparse.hs:33)
8657 mkCSR (src/Internal/Sparse.hs:50)
8658 fromCSR (src/Internal/Sparse.hs:122)
8659 mkSparse (src/Internal/Sparse.hs:119)
8660 mkDiagR (src/Internal/Sparse.hs:130)
8661 mkDense (src/Internal/Sparse.hs:112)
8662 AssocMatrix (src/Internal/Sparse.hs:31)
8663 toDense (src/Internal/Sparse.hs:191)
8664 gmXv (src/Internal/Sparse.hs:143)
8665 100% ( 2 / 2) in 'Internal.Chain'
8666 63% ( 71 /113) in 'Internal.Algorithms'
8667 Missing documentation for:
8668 (src/Internal/Algorithms.hs:82)
8669 (src/Internal/Algorithms.hs:108)
8670 square (src/Internal/Algorithms.hs:141)
8671 vertical (src/Internal/Algorithms.hs:143)
8672 exactHermitian (src/Internal/Algorithms.hs:145)
8673 (src/Internal/Algorithms.hs:331)
8674 (src/Internal/Algorithms.hs:449)
8675 (src/Internal/Algorithms.hs:557)
8676 rqFromQR (src/Internal/Algorithms.hs:597)
8677 haussholder (src/Internal/Algorithms.hs:804)
8678 zh (src/Internal/Algorithms.hs:809)
8679 zt (src/Internal/Algorithms.hs:812)
8680 unpackQR (src/Internal/Algorithms.hs:816)
8681 thinUnpackQR (src/Internal/Algorithms.hs:827)
8682 unpackHess (src/Internal/Algorithms.hs:833)
8683 uH (src/Internal/Algorithms.hs:838)
8684 diagonalize (src/Internal/Algorithms.hs:866)
8685 golubeps (src/Internal/Algorithms.hs:885)
8686 epslist (src/Internal/Algorithms.hs:892)
8687 geps (src/Internal/Algorithms.hs:895)
8688 expGolub (src/Internal/Algorithms.hs:904)
8689 sqrtmInv (src/Internal/Algorithms.hs:949)
8690 signlp (src/Internal/Algorithms.hs:961)
8691 fixPerm (src/Internal/Algorithms.hs:965)
8692 fixPerm' (src/Internal/Algorithms.hs:974)
8693 triang (src/Internal/Algorithms.hs:983)
8694 NormType (src/Internal/Algorithms.hs:1006)
8695 Normed (src/Internal/Algorithms.hs:1008)
8696 (src/Internal/Algorithms.hs:1011)
8697 (src/Internal/Algorithms.hs:1017)
8698 (src/Internal/Algorithms.hs:1023)
8699 (src/Internal/Algorithms.hs:1029)
8700 (src/Internal/Algorithms.hs:1036)
8701 (src/Internal/Algorithms.hs:1042)
8702 (src/Internal/Algorithms.hs:1048)
8703 (src/Internal/Algorithms.hs:1054)
8704 relativeError (src/Internal/Algorithms.hs:1067)
8705 geigSH' (src/Internal/Algorithms.hs:1090)
8706 (src/Internal/Algorithms.hs:1110)
8707 (src/Internal/Algorithms.hs:1126)
8708 (src/Internal/Algorithms.hs:1129)
8709 UpLo (src/Internal/LAPACK.hs:427)
8710 75% ( 6 / 8) in 'Internal.Random'
8711 Missing documentation for:
8712 Seed (src/Internal/Vectorized.hs:361)
8713 RandDist (src/Internal/Vectorized.hs:363)
8714 40% ( 10 / 25) in 'Internal.Container'
8715 Missing documentation for:
8716 Mul (src/Internal/Container.hs:106)
8717 (src/Internal/Container.hs:111)
8718 (src/Internal/Container.hs:114)
8719 (src/Internal/Container.hs:117)
8720 LSDiv (src/Internal/Container.hs:149)
8721 (src/Internal/Container.hs:153)
8722 (src/Internal/Container.hs:157)
8723 Build (src/Internal/Container.hs:164)
8724 (src/Internal/Container.hs:181)
8725 (src/Internal/Container.hs:185)
8726 dot (src/Internal/Container.hs:192)
8727 optimiseMult (src/Internal/Container.hs:197)
8728 sortVector (src/Internal/Container.hs:223)
8729 ccompare (src/Internal/Container.hs:247)
8730 cselect (src/Internal/Container.hs:250)
8731 100% ( 7 / 7) in 'Interna
8732src/Internal/Modular.hs:135:10: warning: [-Wmissing-methods]
8733 • No explicit implementation for
8734 ‘reorderV’
8735 • In the instance declaration for ‘Element (Mod m I)’
8736 |
8737135 | instance KnownNat m => Element (Mod m I)
8738 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8739
8740src/Internal/Modular.hs:152:10: warning: [-Wmissing-methods]
8741 • No explicit implementation for
8742 ‘reorderV’
8743 • In the instance declaration for ‘Element (Mod m Z)’
8744 |
8745152 | instance KnownNat m => Element (Mod m Z)
8746 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8747
8748src/Internal/Static.hs:367:10: warning: [-Wsimplifiable-class-constraints]
8749 • The constraint ‘Num (Matrix t)’ matches an instance declaration
8750 instance (Container Matrix a, Num a, Num (Vector a)) =>
8751 Num (Matrix a)
8752 -- Defined at src/Numeric/Matrix.hs:45:10
8753 This makes type inference for inner bindings fragile;
8754 either use MonoLocalBinds, or simplify it using the instance
8755 • In the context: (Num (Vector t), Num (Matrix t), Fractional t,
8756 Numeric t)
8757 While checking an instance declaration
8758 In the instance declaration for ‘Fractional (Dim n (Vector t))’
8759 |
8760367 | instance (Num (Vector t), Num (Matrix t), Fractional t, Numeric t) => Fractional (Dim n (Vector t))
8761 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8762
8763src/Internal/Static.hs:392:10: warning: [-Wsimplifiable-class-constraints]
8764 • The constraint ‘Num (Matrix t)’ matches an instance declaration
8765 instance (Container Matrix a, Num a, Num (Vector a)) =>
8766 Num (Matrix a)
8767 -- Defined at src/Numeric/Matrix.hs:45:10
8768 This makes type inference for inner bindings fragile;
8769 either use MonoLocalBinds, or simplify it using the instance
8770 • In the context: (Num (Matrix t), Numeric t)
8771 While checking an instance declaration
8772 In the instance declaration for ‘Num (Dim m (Dim n (Matrix t)))’
8773 |
8774392 | instance (Num (Matrix t), Numeric t) => Num (Dim m (Dim n (Matrix t)))
8775 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8776
8777src/Internal/Static.hs:402:10: warning: [-Wsimplifiable-class-constraints]
8778 • The constraint ‘Num (Matrix t)’ matches an instance declaration
8779 instance (Container Matrix a, Num a, Num (Vector a)) =>
8780 Num (Matrix a)
8781 -- Defined at src/Numeric/Matrix.hs:45:10
8782 This makes type inference for inner bindings fragile;
8783 either use MonoLocalBinds, or simplify it using the instance
8784 • In the context: (Num (Vector t), Num (Matrix t), Fractional t,
8785 Numeric t)
8786 While checking an instance declaration
8787 In the instance declaration for
8788 ‘Fractional (Dim m (Dim n (Matrix t)))’
8789 |
8790402 | instance (Num (Vector t), Num (Matrix t), Fractional t, Numeric t) => Fractional (Dim m (Dim n (Matrix t)))
8791 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8792
8793src/Internal/Static.hs:407:10: warning: [-Wsimplifiable-class-constraints]
8794 • The constraint ‘Floating (Matrix t)’
8795 matches an instance declaration
8796 instance (Floating a, Container Vector a, Floating (Vector a),
8797 Fractional (Matrix a)) =>
8798 Floating (Matrix a)
8799 -- Defined at src/Numeric/Matrix.hs:62:10
8800 This makes type inference for inner bindings fragile;
8801 either use MonoLocalBinds, or simplify it using the instance
8802 • In the context: (Num (Vector t), Floating (Matrix t),
8803 Fractional t, Numeric t)
8804 While checking an instance declaration
8805 In the instance declaration for
8806 ‘Floating (Dim m (Dim n (Matrix t)))’
8807 |
8808407 | instance (Num (Vector t), Floating (Matrix t), Fractional t, Numeric t) => Floating (Dim m (Dim n (Matrix t))) where
8809 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8810l.Convolution'
8811 39% ( 36 / 92) in 'Numeric.LinearAlgebra.Devel'
8812 Missing documentation for:
8813 createVector (src/Internal/Vector.hs:74)
8814 createMatrix (src/Internal/Matrix.hs:241)
8815 TransArray (src/Internal/Devel.hs:79)
8816 MatrixOrder (src/Internal/Matrix.hs:39)
8817 orderOf (src/Internal/Matrix.hs:76)
8818 cmat (src/Internal/Matrix.hs:99)
8819 fmat (src/Internal/Matrix.hs:105)
8820 matrixFromVector (src/Internal/Matrix.hs:231)
8821 atM' (src/Internal/Matrix.hs:226)
8822 STVector (src/Internal/ST.hs:51)
8823 newVector (src/Internal/ST.hs:101)
8824 thawVector (src/Internal/ST.hs:53)
8825 freezeVector (src/Internal/ST.hs:77)
8826 runSTVector (src/Internal/ST.hs:59)
8827 readVector (src/Internal/ST.hs:90)
8828 writeVector (src/Internal/ST.hs:94)
8829 modifyVector (src/Internal/ST.hs:71)
8830 liftSTVector (src/Internal/ST.hs:74)
8831 STMatrix (src/Internal/ST.hs:120)
8832 newMatrix (src/Internal/ST.hs:177)
8833 thawMatrix (src/Internal/ST.hs:122)
8834 freezeMatrix (src/Internal/ST.hs:150)
8835 runSTMatrix (src/Internal/ST.hs:128)
8836 readMatrix (src/Internal/ST.hs:163)
8837 writeMatrix (src/Internal/ST.hs:167)
8838 modifyMatrix (src/Internal/ST.hs:140)
8839 liftSTMatrix (src/Internal/ST.hs:143)
8840 mutable (src/Internal/ST.hs:243)
8841 extractMatrix (src/Internal/ST.hs:226)
8842 setMatrix (src/Internal/ST.hs:170)
8843 rowOper (src/Internal/ST.hs:206)
8844 RowOper (src/Internal/ST.hs:202)
8845 RowRange (src/Internal/ST.hs:192)
8846 ColRange (src/Internal/ST.hs:182)
8847 gemmm (src/Internal/ST.hs:236)
8848 newUndefinedVector (src/Internal/ST.hs:97)
8849 unsafeReadVector (src/Internal/ST.hs:63)
8850 unsafeWriteVector (src/Internal/ST.hs:67)
8851 unsafeThawVector (src/Internal/ST.hs:56)
8852 unsafeFreezeVector (src/Internal/ST.hs:80)
8853 newUndefinedMatrix (src/Internal/ST.hs:173)
8854 unsafeReadMatrix (src/Internal/ST.hs:132)
8855 unsafeWriteMatrix (src/Internal/ST.hs:136)
8856 unsafeThawMatrix (src/Internal/ST.hs:125)
8857 unsafeFreezeMatrix (src/Internal/ST.hs:146)
8858 mapVectorWithIndex (src/Internal/Vector.hs:365)
8859 foldLoop (src/Internal/Vector.hs:286)
8860 foldVector (src/Internal/Vector.hs:267)
8861 foldVectorG (src/Internal/Vector.hs:291)
8862 foldVectorWithIndex (src/Internal/Vector.hs:277)
8863 CSR (src/Internal/Sparse.hs:33)
8864 fromCSR (src/Internal/Sparse.hs:122)
8865 mkCSR (src/Internal/Sparse.hs:50)
8866 toByteString (src/Internal/Vector.hs:401)
8867 fromByteString (src/Internal/Vector.hs:408)
8868 showInternal (src/Internal/Matrix.hs:80)
8869 100% ( 1 / 1) in 'Numeric.Matrix'
8870 100% ( 1 / 1) in 'Numeric.Vector'
8871 67% ( 46 / 69) in 'Internal.Util'
8872 Missing documentation for:
8873 formatSparse (src/Internal/Util.hs:482)
8874 approxInt (src/Internal/Util.hs:496)
8875 dispDots (src/Internal/Util.hs:503)
8876 dispBlanks (src/Internal/Util.hs:505)
8877 formatShort (src/Internal/Util.hs:507)
8878 dispShort (src/Internal/Util.hs:537)
8879 Numeric (src/Internal/Numeric.hs:575)
8880 ℕ (src/Internal/Util.hs:89)
8881 ℤ (src/Internal/Util.hs:90)
8882 ℝ (src/Internal/Util.hs:88)
8883 ℂ (src/Internal/Util.hs:91)
8884 ~!~ (src/Internal/Util.hs:478)
8885 block2x2 (src/Internal/Util.hs:547)
8886 block3x3 (src/Internal/Util.hs:554)
8887 view1 (src/Internal/Util.hs:559)
8888 unView1 (src/Internal/Util.hs:567)
8889 foldMatrix (src/Internal/Util.hs:572)
8890 gaussElim_1 (src/Internal/Util.hs:611)
8891 gaussElim (src/Internal/Util.hs:662)
8892 luST (src/Internal/Util.hs:685)
8893 luSolve'' (src/Internal/Util.hs:802)
8894 luPacked'' (src/Internal/Util.hs:754)
8895 invershur (src/Internal/Util.hs:875)
8896 67% ( 2 / 3) in 'Internal.Modular'
8897 Missing documentation for:
8898 ./. (src/Internal/Modular.hs:68)
8899 75% ( 98 /131) in 'Numeric.LinearAlgebra.Data'
8900 Missing documentation for:
8901 R (src/Internal/Vector.hs:49)
8902 C (src/Internal/Vector.hs:50)
8903 I (src/Internal/Vector.hs:47)
8904 Z (src/Internal/Vector.hs:48)
8905 ./. (src/Internal/Modular.hs:68)
8906 toList (src/Internal/Vector.hs:108)
8907 rows (src/Internal/Matrix.hs:52)
8908 cols (src/Internal/Matrix.hs:56)
8909 Konst (src/Internal/Numeric.hs:551)
8910 Build (src/Internal/Container.hs:164)
8911 takeRows (src/Internal/Element.hs:353)
8912 dropRows (src/Internal/Element.hs:360)
8913 takeColumns (src/Internal/Element.hs:367)
8914 dropColumns (src/Internal/Element.hs:374)
8915 sortVector (src/Internal/Container.hs:223)
8916 AssocMatrix (src/Internal/Sparse.hs:31)
8917 toDense (src/Internal/Sparse.hs:191)
8918 mkSparse (src/Internal/Sparse.hs:119)
8919 mkDiagR (src/Internal/Sparse.hs:130)
8920 mkDense (src/Internal/Sparse.hs:112)
8921 loadMatrix' (src/Internal/IO.hs:172)
8922 dispDots (src/Internal/Util.hs:503)
8923 dispBlanks (src/Internal/Util.hs:505)
8924 dispShort (src/Internal/Util.hs:537)
8925 Convert (src/Internal/Numeric.hs:737)
8926 roundVector (src/Internal/Vectorized.hs:381)
8927 toInt (src/Internal/Numeric.hs:410)
8928 fromZ (src/Internal/Numeric.hs:413)
8929 toZ (src/Internal/Numeric.hs:416)
8930 arctan2 (src/Internal/Numeric.hs:391)
8931 fromArray2D (src/Internal/Element.hs:440)
8932 nRows (src/Internal/Sparse.hs:90)
8933 nCols (src/Internal/Sparse.hs:91)
8934 33% ( 2 / 6) in 'Internal.CG'
8935 Missing documentation for:
8936 Module header
8937 CGState (src/Internal/CG.hs:34)
8938 R (src/Internal/Vector.hs:49)
8939 V (src/Internal/CG.hs:32)
8940 87% (139 /160) in 'Numeric.LinearAlgebra'
8941 Missing documentation for:
8942 dot (src/Internal/Container.hs:192)
8943 scale (src/Internal/Numeric.hs:922)
8944 add (src/Internal/Numeric.hs:918)
8945 UpLo (src/Internal/LAPACK.hs:427)
8946 Seed (src/Internal/Vectorized.hs:361)
8947 RandDist (src/Internal/Vectorized.hs:363)
8948 relativeError (src/Internal/Algorithms.hs:1067)
8949 haussholder (src/Internal/Algorithms.hs:804)
8950 optimiseMult (src/Internal/Container.hs:197)
8951 Numeric (src/Internal/Numeric.hs:575)
8952 LSDiv (src/Internal/Container.hs:149)
8953 RealOf (src/Internal/Numeric.hs:780)
8954 ComplexOf (src/Internal/Numeric.hs:791)
8955 SingleOf (src/Internal/Numeric.hs:799)
8956 DoubleOf (src/Internal/Numeric.hs:806)
8957 IndexOf (src/Internal/Numeric.hs:32)
8958 Linear (src/Internal/Numeric.hs:920)
8959 Additive (src/Internal/Numeric.hs:916)
8960 Transposable (src/Internal/Numeric.hs:904)
8961 CGState (src/Internal/CG.hs:34)
8962 Testable (src/Internal/Numeric.hs:942)
8963 57% ( 8 / 14) in 'Numeric.LinearAlgebra.HMatrix'
8964 Missing documentation for:
8965 ℝ (src/Internal/Util.hs:88)
8966 ℂ (src/Internal/Util.hs:91)
8967 <·> (src/Numeric/LinearAlgebra/HMatrix.hs:28)
8968 app (src/Numeric/LinearAlgebra/HMatrix.hs:31)
8969 mul (src/Numeric/LinearAlgebra/HMatrix.hs:33)
8970 geigSH' (src/Internal/Algorithms.hs:1090)
8971 1% ( 1 / 79) in 'Internal.Static'
8972 Missing documentation for:
8973 ℝ (src/Internal/Static.hs:45)
8974 ℂ (src/Internal/Static.hs:46)
8975 Dim (src/Internal/Static.hs:48)
8976 (src/Internal/Static.hs:51)
8977 lift1F (src/Internal/Static.hs:63)
8978 lift2F (src/Internal/Static.hs:68)
8979 (src/Internal/Static.hs:73)
8980 R (src/Internal/Static.hs:78)
8981 C (src/Internal/Static.hs:81)
8982 L (src/Internal/Static.hs:84)
8983 M (src/Internal/Static.hs:87)
8984 mkR (src/Internal/Static.hs:90)
8985 mkC (src/Internal/Static.hs:93)
8986 mkL (src/Internal/Static.hs:96)
8987 mkM (src/Internal/Static.hs:99)
8988 (src/Internal/Static.hs:102)
8989 (src/Internal/Static.hs:105)
8990 (src/Internal/Static.hs:108)
8991 (src/Internal/Static.hs:111)
8992 V (src/Internal/Static.hs:116)
8993 ud (src/Internal/Static.hs:118)
8994 mkV (src/Internal/Static.hs:121)
8995 vconcat (src/Internal/Static.hs:125)
8996 gvec2 (src/Internal/Static.hs:137)
8997 gvec3 (src/Internal/Static.hs:144)
8998 gvec4 (src/Internal/Static.hs:153)
8999 gvect (src/Internal/Static.hs:163)
9000 GM (src/Internal/Static.hs:179)
9001 gmat (src/Internal/Static.hs:182)
9002 Sized (src/Internal/Static.hs:199)
9003 singleV (src/Internal/Static.hs:208)
9004 singleM (src/Internal/Static.hs:209)
9005 (src/Internal/Static.hs:212)
9006 (src/Internal/Static.hs:228)
9007 (src/Internal/Static.hs:245)
9008 (src/Internal/Static.hs:263)
9009 (src/Internal/Static.hs:282)
9010 (src/Internal/Static.hs:288)
9011 isDiag (src/Internal/Static.hs:297)
9012 isDiagC (src/Internal/Static.hs:300)
9013 isDiagg (src/Internal/Static.hs:304)
9014 (src/Internal/Static.hs:321)
9015 (src/Internal/Static.hs:329)
9016 (src/Internal/Static.hs:337)
9017 (src/Internal/Static.hs:346)
9018 (src/Internal/Static.hs:357)
9019 (src/Internal/Static.hs:367)
9020 (src/Internal/Static.hs:372)
9021 (src/Internal/Static.hs:392)
9022 (src/Internal/Static.hs:402)
9023 (src/Internal/Static.hs:407)
9024 adaptDiag (src/Internal/Static.hs:429)
9025 isFull (src/Internal/Static.hs:433)
9026 lift1L (src/Internal/Static.hs:436)
9027 lift2L (src/Internal/Static.hs:437)
9028 lift2LD (src/Internal/Static.hs:438)
9029 (src/Internal/Static.hs:441)
9030 (src/Internal/Static.hs:451)
9031 (src/Internal/Static.hs:456)
9032 adaptDiagC (src/Internal/Static.hs:477)
9033 isFullC (src/Internal/Static.hs:481)
9034 lift1M (src/Internal/Static.hs:483)
9035 lift2M (src/Internal/Static.hs:484)
9036 lift2MD (src/Internal/Static.hs:485)
9037 (src/Internal/Static.hs:487)
9038 (src/Internal/Static.hs:497)
9039 (src/Internal/Static.hs:502)
9040 (src/Internal/Static.hs:521)
9041 (src/Internal/Static.hs:524)
9042 (src/Internal/Static.hs:527)
9043 (src/Internal/Static.hs:530)
9044 Disp (src/Internal/Static.hs:536)
9045 (src/Internal/Static.hs:541)
9046 (src/Internal/Static.hs:548)
9047 (src/Internal/Static.hs:556)
9048 (src/Internal/Static.hs:562)
9049 overMatL' (src/Internal/Static.hs:570)
9050 overMatM' (src/Internal/Static.hs:575)
9051 16% ( 14 / 86) in 'Numeric.LinearAlgebra.Static'
9052 Missing documentation for:
9053 ℝ (src/Internal/Static.hs:45)
9054 R (src/Internal/Static.hs:78)
9055 vec2 (src/Numeric/LinearAlgebra/Static.hs:104)
9056 vec3 (src/Numeric/LinearAlgebra/Static.hs:107)
9057 vec4 (src/Numeric/LinearAlgebra/Static.hs:111)
9058 & (src/Numeric/LinearAlgebra/Static.hs:93)
9059 # (src/Numeric/LinearAlgebra/Static.hs:98)
9060 split (src/Numeric/LinearAlgebra/Static.hs:376)
9061 headTail (src/Numeric/LinearAlgebra/Static.hs:383)
9062 vector (src/Numeric/LinearAlgebra/Static.hs:114)
9063 linspace (src/Numeric/LinearAlgebra/Static.hs:120)
9064 range (src/Numeric/LinearAlgebra/Static.hs:125)
9065 dim (src/Numeric/LinearAlgebra/Static.hs:131)
9066 L (src/Internal/Static.hs:84)
9067 Sq (src/Numeric/LinearAlgebra/Static.hs:191)
9068 build (src/Numeric/LinearAlgebra/Static.hs:427)
9069 row (src/Numeric/LinearAlgebra/Static.hs:168)
9070 col (src/Numeric/LinearAlgebra/Static.hs:172)
9071 ||| (src/Numeric/LinearAlgebra/Static.hs:188)
9072 === (src/Numeric/LinearAlgebra/Static.hs:182)
9073 splitRows (src/Numeric/LinearAlgebra/Static.hs:387)
9074 splitCols (src/Numeric/LinearAlgebra/Static.hs:393)
9075 unrow (src/Numeric/LinearAlgebra/Static.hs:174)
9076 uncol (src/Numeric/LinearAlgebra/Static.hs:178)
9077 eye (src/Numeric/LinearAlgebra/Static.hs:148)
9078 diag (src/Numeric/LinearAlgebra/Static.hs:145)
9079 blockAt (src/Numeric/LinearAlgebra/Static.hs:153)
9080 matrix (src/Numeric/LinearAlgebra/Static.hs:117)
9081 ℂ (src/Internal/Static.hs:46)
9082 C (src/Internal/Static.hs:81)
9083 M (src/Internal/Static.hs:87)
9084 Her (src/Numeric/LinearAlgebra/Static.hs:295)
9085 her (src/Numeric/LinearAlgebra/Static.hs:297)
9086 𝑖 (src/Numeric/LinearAlgebra/Static.hs:292)
9087 <> (src/Numeric/LinearAlgebra/Static.hs:211)
9088 #> (src/Numeric/LinearAlgebra/Static.hs:216)
9089 <.> (src/Numeric/LinearAlgebra/Static.hs:225)
9090 linSolve (src/Numeric/LinearAlgebra/Static.hs:247)
9091 <\> (src/Numeric/LinearAlgebra/Static.hs:250)
9092 svd (src/Numeric/LinearAlgebra/Static.hs:253)
9093 withCompactSVD (src/Numeric/LinearAlgebra/Static.hs:355)
9094 svdTall (src/Numeric/LinearAlgebra/Static.hs:261)
9095 svdFlat (src/Numeric/LinearAlgebra/Static.hs:267)
9096 Eigen (src/Numeric/LinearAlgebra/Static.hs:274)
9097 withNullspace (src/Numeric/LinearAlgebra/Static.hs:335)
9098 withOrth (src/Numeric/LinearAlgebra/Static.hs:345)
9099 qr (src/Numeric/LinearAlgebra/Static.hs:367)
9100 chol (src/Numeric/LinearAlgebra/Static.hs:330)
9101 Seed (src/Internal/Vectorized.hs:361)
9102 RandDist (src/Internal/Vectorized.hs:363)
9103 randomVector (src/Numeric/LinearAlgebra/Static.hs:482)
9104 rand (src/Numeric/LinearAlgebra/Static.hs:491)
9105 randn (src/Numeric/LinearAlgebra/Static.hs:497)
9106 gaussianSample (src/Numeric/LinearAlgebra/Static.hs:503)
9107 uniformSample (src/Numeric/LinearAlgebra/Static.hs:513)
9108 mean (src/Numeric/LinearAlgebra/Static.hs:736)
9109 meanCov (src/Numeric/LinearAlgebra/Static.hs:523)
9110 Disp (src/Internal/Static.hs:536)
9111 Domain (src/Numeric/LinearAlgebra/Static.hs:531)
9112 withVector (src/Numeric/LinearAlgebra/Static.hs:437)
9113 withMatrix (src/Numeric/LinearAlgebra/Static.hs:457)
9114 toRows (src/Numeric/LinearAlgebra/Static.hs:397)
9115 toColumns (src/Numeric/LinearAlgebra/Static.hs:410)
9116 withRows (src/Numeric/LinearAlgebra/Static.hs:400)
9117 withColumns (src/Numeric/LinearAlgebra/Static.hs:413)
9118 Sized (src/Internal/Static.hs:199)
9119 Diag (src/Numeric/LinearAlgebra/Static.hs:230)
9120 Sym (src/Numeric/LinearAlgebra/Static.hs:279)
9121 sym (src/Numeric/LinearAlgebra/Static.hs:282)
9122 mTm (src/Numeric/LinearAlgebra/Static.hs:285)
9123 unSym (src/Numeric/LinearAlgebra/Static.hs:288)
9124 <·> (src/Numeric/LinearAlgebra/Static.hs:221)
9125Warning: Numeric.LinearAlgebra.Devel: could not find link destinations for:
9126 CSC
9127Warning: Numeric.LinearAlgebra.Data: could not find link destinations for:
9128 conj' size' scalar' scale' addConstant add' sub mul equal cmap' konst' build' ArgOf atIndex' minIndex' maxIndex' minElement' maxElement' sumElements' prodElements' step' ccompare' cselect' find' assoc' accum' scaleRecip divide arctan2' cmod' fromInt' toInt' fromZ' toZ' constantD extractR setRect sortI sortV compareV selectV remapM rowOp gemm reorderV multiply absSum norm1 norm2 normInf toComplex' fromComplex' comp' single' Precision double' linSolve CTrans
9129Warning: Numeric.LinearAlgebra: could not find link destinations for:
9130 eps Mod constantD extractR setRect sortI sortV compareV selectV remapM rowOp gemm reorderV conj' size' scalar' scale' addConstant add' sub mul equal cmap' konst' build' atIndex' minIndex' maxIndex' minElement' maxElement' sumElements' prodElements' step' ccompare' cselect' find' assoc' accum' scaleRecip divide arctan2' cmod' fromInt' toInt' fromZ' toZ' ArgOf multiply absSum norm1 norm2 normInf CTrans linSolve toComplex' fromComplex' comp' single' double' Precision Normed ~ svd' thinSVD' sv' luPacked' luSolve' mbLinearSolve' linearSolve' cholSolve' triSolve' triDiagSolve' ldlPacked' ldlSolve' linearSolveSVD' linearSolveLS' eig' eigSH'' eigOnly eigOnlySH cholSH' mbCholSH' qr' qrgr' hess' schur'
9131Documentation created: dist/doc/html/hmatrix/index.html,
9132dist/doc/html/hmatrix/hmatrix.txt
9133installing
9134Installing library in /nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0
9135post-installation fixup
9136strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
9137stripping (with command strip and flags -S) in /nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib
9138patching script interpreter paths in /nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0
9139/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: fixing dylib
9140/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: fixing dylib
9141/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: fixing dylib
9142/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: fixing dylib
9143/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: fixing dylib
9144strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
9145patching script interpreter paths in /nix/store/zy63c20iybz79vlgkr3rsrb5mxikvj9z-hmatrix-0.18.2.0-doc
9146Test suite test-qq: PASS
9147Test suite logged to: dist/test/inline-r-0.9.1-test-qq.log
91481 of 3 test suites (1 of 3 test cases) passed.
9149builder for ‘/nix/store/b4a5jmpbc1rzf1vyfw6ilhdc8ym2xlxh-inline-r-0.9.1.drv’ failed with exit code 1
9150cannot build derivation ‘/nix/store/x3q2i9vr8s56w9wl1h0g0z8rn36fhr8q-ghc-8.2.2-with-packages.drv’: 1 dependencies couldn't be built
9151error: build of ‘/nix/store/x3q2i9vr8s56w9wl1h0g0z8rn36fhr8q-ghc-8.2.2-with-packages.drv’ failed
9152/nix/var/nix/profiles/default/bin/nix-shell: failed to build all dependencies
9153bash-3.2$ nix-shell shell.nix -I nixpkgs=/Users/dom/nixpkgs
9154these derivations will be built:
9155 /nix/store/mjixi9js45jzzdqb6xd8q0gjdqi1qkam-inline-r-0.9.1.drv
9156 /nix/store/jdq930yp7rvy578bf7z5pmw8i75k320v-ghc-8.2.2-with-packages.drv
9157building path(s) ‘/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1’, ‘/nix/store/s0pv76s90a05g1arkarw138z2fyvy93c-inline-r-0.9.1-doc’
9158setupCompilerEnvironmentPhase
9159Build with /nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2.
9160unpacking sources
9161unpacking source archive /nix/store/wdmn6wmbx713sl38nsjf399bk7ha36dv-inline-r-0.9.1.tar.gz
9162source root is inline-r-0.9.1
9163setting SOURCE_DATE_EPOCH to timestamp 1516963599 of file inline-r-0.9.1/tests/tests.hs
9164patching sources
9165compileBuildDriverPhase
9166setupCompileFlags: -package-db=/private/tmp/nix-build-inline-r-0.9.1.drv-0/package.conf.d -j1 -threaded
9167[1 of 1] Compiling Main ( Setup.hs, /private/tmp/nix-build-inline-r-0.9.1.drv-0/Main.o )
9168Linking Setup ...
9169clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9170clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9171configuring
9172configureFlags: --verbose --prefix=/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --docdir=/nix/store/s0pv76s90a05g1arkarw138z2fyvy93c-inline-r-0.9.1-doc/share/doc --with-gcc=clang --package-db=/private/tmp/nix-build-inline-r-0.9.1.drv-0/package.conf.d --ghc-option=-optl=-Wl,-headerpad_max_install_names --ghc-option=-j1 --disable-split-objs --disable-library-profiling --disable-profiling --enable-shared --disable-coverage --enable-library-vanilla --enable-executable-dynamic --disable-tests --extra-include-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/include --extra-lib-dirs=/nix/store/j6ifwrr83k1c5nmjfx1p63nydpqsbqd6-libc++-5.0.1/lib --extra-lib-dirs=/nix/store/a67rhbgwb41j11j6mgww3y0gq4pg0lmp-ncurses-6.0-20171125/lib --extra-lib-dirs=/nix/store/lasa9z5jcwhq3djd3mw8q9b0a75da5as-gmp-6.1.2/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-include-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/include --extra-lib-dirs=/nix/store/5hymrhfv7zm20ackp3i3di2n7amnlvva-libiconv-osx-10.11.6/lib --extra-lib-dirs=/nix/store/ahrwr29rdmjzfvn6zxd2wnz14z4l3spx-R-3.4.3/lib
9173Configuring inline-r-0.9.1...
9174Dependency aeson >=0.6: using aeson-1.2.4.0
9175Dependency base >=4.7 && <5: using base-4.10.1.0
9176Dependency bytestring >=0.10: using bytestring-0.10.8.2
9177Dependency containers >=0.5: using containers-0.5.10.2
9178Dependency data-default-class -any: using data-default-class-0.1.2.0
9179Dependency deepseq >=1.3: using deepseq-1.4.3.0
9180Dependency exceptions >=0.6 && <1.1: using exceptions-0.8.3
9181Dependency inline-c ==0.6.*: using inline-c-0.6.0.5
9182Dependency mtl >=2.1: using mtl-2.2.2
9183Dependency pretty >=1.1: using pretty-1.1.3.3
9184Dependency primitive >=0.5: using primitive-0.6.3.0
9185Dependency process >=1.2: using process-1.6.1.0
9186Dependency reflection >=2: using reflection-2.1.3
9187Dependency setenv >=0.1.1: using setenv-0.1.1.3
9188Dependency singletons >=0.9: using singletons-2.3.1
9189Dependency template-haskell >=2.8: using template-haskell-2.12.0.0
9190Dependency text >=0.11: using text-1.2.2.2
9191Dependency th-lift >=0.6: using th-lift-0.7.8
9192Dependency th-orphans >=0.8: using th-orphans-0.13.5
9193Dependency transformers >=0.3: using transformers-0.5.2.0
9194Dependency unix >=2.6: using unix-2.7.2.2
9195Dependency vector >=0.10 && <0.13: using vector-0.12.0.1
9196clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9197Dependency libR >=3.0: using version 3.4.3
9198Source component graph: component lib
9199Configured component graph:
9200 component inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ
9201 include base-4.10.1.0
9202 include aeson-1.2.4.0-Eos80jdFJ2vJTUCBOqB8px
9203 include bytestring-0.10.8.2
9204 include containers-0.5.10.2
9205 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
9206 include deepseq-1.4.3.0
9207 include exceptions-0.8.3-GWfu4VLKe6i7axYr3kaJRB
9208 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
9209 include pretty-1.1.3.3
9210 include primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
9211 include process-1.6.1.0
9212 include reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
9213 include setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
9214 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
9215 include template-haskell-2.12.0.0
9216 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
9217 include th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
9218 include th-orphans-0.13.5-Avlu69hrL7k6W9EcxdWfcC
9219 include transformers-0.5.2.0
9220 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
9221 include inline-c-0.6.0.5-DNPv1t5vrCeDYELb3oVtSr
9222 include unix-2.7.2.2
9223Linked component graph:
9224 unit inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ
9225 include base-4.10.1.0
9226 include aeson-1.2.4.0-Eos80jdFJ2vJTUCBOqB8px
9227 include bytestring-0.10.8.2
9228 include containers-0.5.10.2
9229 include data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
9230 include deepseq-1.4.3.0
9231 include exceptions-0.8.3-GWfu4VLKe6i7axYr3kaJRB
9232 include mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
9233 include pretty-1.1.3.3
9234 include primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
9235 include process-1.6.1.0
9236 include reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
9237 include setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
9238 include singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
9239 include template-haskell-2.12.0.0
9240 include text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
9241 include th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
9242 include th-orphans-0.13.5-Avlu69hrL7k6W9EcxdWfcC
9243 include transformers-0.5.2.0
9244 include vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
9245 include inline-c-0.6.0.5-DNPv1t5vrCeDYELb3oVtSr
9246 include unix-2.7.2.2
9247 Control.Memory.Region=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Control.Memory.Region,Data.Vector.SEXP=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Data.Vector.SEXP,Data.Vector.SEXP.Base=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Data.Vector.SEXP.Base,Data.Vector.SEXP.Mutable=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Data.Vector.SEXP.Mutable,Foreign.R=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R,Foreign.R.Constraints=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Constraints,Foreign.R.Context=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Context,Foreign.R.Embedded=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Embedded,Foreign.R.Error=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Error,Foreign.R.EventLoop=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.EventLoop,Foreign.R.Internal=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Internal,Foreign.R.Parse=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Parse,Foreign.R.Type=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Foreign.R.Type,H.Prelude=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:H.Prelude,H.Prelude.Interactive=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:H.Prelude.Interactive,Language.R=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R,Language.R.Debug=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Debug,Language.R.Event=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Event,Language.R.GC=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.GC,Language.R.Globals=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Globals,Language.R.HExp=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.HExp,Language.R.Instance=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Instance,Language.R.Internal=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Internal,Language.R.Internal.FunWrappers=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Internal.FunWrappers,Language.R.Internal.FunWrappers.TH=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Internal.FunWrappers.TH,Language.R.Literal=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Literal,Language.R.Matcher=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.Matcher,Language.R.QQ=inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ:Language.R.QQ
9248Ready component graph:
9249 definite inline-r-0.9.1-D1HLRo7tDYX5eY3tummOkJ
9250 depends base-4.10.1.0
9251 depends aeson-1.2.4.0-Eos80jdFJ2vJTUCBOqB8px
9252 depends bytestring-0.10.8.2
9253 depends containers-0.5.10.2
9254 depends data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRm
9255 depends deepseq-1.4.3.0
9256 depends exceptions-0.8.3-GWfu4VLKe6i7axYr3kaJRB
9257 depends mtl-2.2.2-8XubxMJDT8QLsstvlNotkc
9258 depends pretty-1.1.3.3
9259 depends primitive-0.6.3.0-CXy1O9sQYlI58rn9KQkFyo
9260 depends process-1.6.1.0
9261 depends reflection-2.1.3-CEHercnb7IRFwaBNsJ9rTU
9262 depends setenv-0.1.1.3-4FEJPUU51wbJmlhCSZScDf
9263 depends singletons-2.3.1-HfpKhoi1oMFI7a5B02T13G
9264 depends template-haskell-2.12.0.0
9265 depends text-1.2.2.2-J0kTo5xltQjAfCz3JZ4Oj0
9266 depends th-lift-0.7.8-9WoT75e11sF5vCUkzmby5Q
9267 depends th-orphans-0.13.5-Avlu69hrL7k6W9EcxdWfcC
9268 depends transformers-0.5.2.0
9269 depends vector-0.12.0.1-JlawpRjIcMJIYPJVsWriIA
9270 depends inline-c-0.6.0.5-DNPv1t5vrCeDYELb3oVtSr
9271 depends unix-2.7.2.2
9272Using Cabal-2.0.1.0 compiled by ghc-8.2
9273Using compiler: ghc-8.2.2
9274Using install prefix:
9275/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1
9276Executables installed in:
9277/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/bin
9278Libraries installed in:
9279/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/lib/ghc-8.2.2/inline-r-0.9.1
9280Dynamic Libraries installed in:
9281/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2
9282Private executables installed in:
9283/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/libexec/x86_64-osx-ghc-8.2.2/inline-r-0.9.1
9284Data files installed in:
9285/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/share/x86_64-osx-ghc-8.2.2/inline-r-0.9.1
9286Documentation installed in:
9287/nix/store/s0pv76s90a05g1arkarw138z2fyvy93c-inline-r-0.9.1-doc/share/doc
9288Configuration files installed in:
9289/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/etc
9290No alex found
9291Using ar found on system at:
9292/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/ar
9293No c2hs found
9294No cpphs found
9295No doctest found
9296Using gcc version 4.2.1 given by user at:
9297/nix/store/53h1zds6q5k4ab4l7430fbddn0l0iq1c-clang-wrapper-5.0.1/bin/clang
9298Using ghc version 8.2.2 found on system at:
9299/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc
9300Using ghc-pkg version 8.2.2 found on system at:
9301/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/ghc-pkg
9302No ghcjs found
9303No ghcjs-pkg found
9304No greencard found
9305Using haddock version 2.18.1 found on system at:
9306/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/haddock
9307No happy found
9308Using haskell-suite found on system at: haskell-suite-dummy-location
9309Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
9310No hmake found
9311Using hpc version 0.67 found on system at:
9312/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hpc
9313Using hsc2hs version 0.68.2 found on system at:
9314/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/hsc2hs
9315Using hscolour version 1.24 found on system at:
9316/nix/store/scxlw5917kx9j76clvz2k0zqn91fs5gh-hscolour-1.24.2/bin/HsColour
9317No jhc found
9318Using ld found on system at:
9319/nix/store/cjhrjh6brgy1wahgbh5wqrflnb447bf8-cctools-binutils-darwin-wrapper/bin/ld
9320No lhc found
9321No lhc-pkg found
9322Using pkg-config version 0.29.2 found on system at:
9323/nix/store/j2zsla2jd1kmh67n95di6v8769jynwp8-pkg-config-0.29.2/bin/pkg-config
9324Using runghc version 8.2.2 found on system at:
9325/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/bin/runghc
9326Using strip found on system at:
9327/nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
9328Using tar found on system at:
9329/nix/store/nwj6x1d0bz45nzsch3rhnfa5wi4kf4nk-gnutar-1.30/bin/tar
9330No uhc found
9331building
9332Preprocessing library for inline-r-0.9.1..
9333HExp.hsc:80:9: warning: 'hsc_alignment' macro redefined [-Wmacro-redefined]
9334#define hsc_alignment(t ) hsc_printf ( "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__));
9335 ^
9336/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/lib/ghc-8.2.2/template-hsc.h:91:9: note: previous definition is here
9337#define hsc_alignment(x...) \
9338 ^
93391 warning generated.
9340In file included from EventLoop.hsc:29:
9341/nix/store/ahrwr29rdmjzfvn6zxd2wnz14z4l3spx-R-3.4.3/lib/R/include/R_ext/eventloop.h:87:35: warning: declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
9342 fd_set *exceptfds, struct timeval *timeout,
9343 ^
9344EventLoop.hsc:30:9: warning: 'hsc_alignment' macro redefined [-Wmacro-redefined]
9345#define hsc_alignment(t ) hsc_printf ( "%lu", (unsigned long)offsetof(struct {char x__; t (y__); }, y__));
9346 ^
9347/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/lib/ghc-8.2.2/template-hsc.h:91:9: note: previous definition is here
9348#define hsc_alignment(x...) \
9349 ^
93502 warnings generated.
9351Building library for inline-r-0.9.1..
9352[ 1 of 35] Compiling Control.Memory.Region ( src/Control/Memory/Region.hs, dist/build/Control/Memory/Region.o )
9353[ 2 of 35] Compiling Foreign.R.Embedded ( dist/build/Foreign/R/Embedded.hs, dist/build/Foreign/R/Embedded.o )
9354[ 3 of 35] Compiling Foreign.R.Error ( dist/build/Foreign/R/Error.hs, dist/build/Foreign/R/Error.o )
9355[ 4 of 35] Compiling Foreign.R.EventLoop ( dist/build/Foreign/R/EventLoop.hs, dist/build/Foreign/R/EventLoop.o )
9356[ 5 of 35] Compiling Foreign.R.Type[boot] ( dist/build/Foreign/R/Type.hs-boot, dist/build/Foreign/R/Type.o-boot )
9357[ 6 of 35] Compiling Foreign.R.Constraints ( src/Foreign/R/Constraints.hs, dist/build/Foreign/R/Constraints.o )
9358[ 7 of 35] Compiling Internal.Error ( src/Internal/Error.hs, dist/build/Internal/Error.o )
9359[ 8 of 35] Compiling Foreign.R.Context ( dist/build/Foreign/R/Context.hs, dist/build/Foreign/R/Context.o )
9360[ 9 of 35] Compiling Foreign.R.Type ( dist/build/Foreign/R/Type.hs, dist/build/Foreign/R/Type.o )
9361[10 of 35] Compiling Language.R.HExp[boot] ( dist/build/Language/R/HExp.hs-boot, dist/build/Language/R/HExp.o-boot )
9362[11 of 35] Compiling Foreign.R.Internal ( dist/build/Foreign/R/Internal.hs, dist/build/Foreign/R/Internal.o )
9363clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9364clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9365clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9366clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9367[12 of 35] Compiling Foreign.R ( dist/build/Foreign/R.hs, dist/build/Foreign/R.o )
9368clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9369
9370/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc28535_0/ghc_99.c:89:8: error:
9371 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
9372 |
937389 | return ( RAW(s_inline_c_0) );
9374 | ^
9375return ( RAW(s_inline_c_0) );
9376 ^~~~~~~~~~~~~~~~~~~~~
93771 warning generated.
9378clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9379clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9380
9381/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc28535_0/ghc_108.c:89:8: error:
9382 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
9383 |
938489 | return ( RAW(s_inline_c_0) );
9385 | ^
9386return ( RAW(s_inline_c_0) );
9387 ^~~~~~~~~~~~~~~~~~~~~
93881 warning generated.
9389clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9390[13 of 35] Compiling Language.R.Globals ( src/Language/R/Globals.hs, dist/build/Language/R/Globals.o )
9391[14 of 35] Compiling Foreign.R.Parse ( dist/build/Foreign/R/Parse.hs, dist/build/Foreign/R/Parse.o )
9392[15 of 35] Compiling Data.Vector.SEXP.Base ( src/Data/Vector/SEXP/Base.hs, dist/build/Data/Vector/SEXP/Base.o )
9393[16 of 35] Compiling Control.Monad.R.Class ( src/Control/Monad/R/Class.hs, dist/build/Control/Monad/R/Class.o )
9394[17 of 35] Compiling Language.R.GC ( src/Language/R/GC.hs, dist/build/Language/R/GC.o )
9395[18 of 35] Compiling Language.R.Event ( src/Language/R/Event.hs, dist/build/Language/R/Event.o )
9396[19 of 35] Compiling Control.Monad.R.Internal ( src/Control/Monad/R/Internal.hs, dist/build/Control/Monad/R/Internal.o )
9397[20 of 35] Compiling Data.Vector.SEXP.Mutable.Internal ( src/Data/Vector/SEXP/Mutable/Internal.hs, dist/build/Data/Vector/SEXP/Mutable/Internal.o )
9398[21 of 35] Compiling Data.Vector.SEXP.Mutable ( src/Data/Vector/SEXP/Mutable.hs, dist/build/Data/Vector/SEXP/Mutable.o )
9399[22 of 35] Compiling Data.Vector.SEXP ( src/Data/Vector/SEXP.hs, dist/build/Data/Vector/SEXP.o )
9400[23 of 35] Compiling Language.R.HExp ( dist/build/Language/R/HExp.hs, dist/build/Language/R/HExp.o )
9401[24 of 35] Compiling Language.R.Debug ( src/Language/R/Debug.hs, dist/build/Language/R/Debug.o )
9402[25 of 35] Compiling Language.R.Instance ( src/Language/R/Instance.hs, dist/build/Language/R/Instance.o )
9403[26 of 35] Compiling Language.R.Internal[boot] ( src/Language/R/Internal.hs-boot, dist/build/Language/R/Internal.o-boot )
9404[27 of 35] Compiling Language.R.Internal.FunWrappers.TH ( src/Language/R/Internal/FunWrappers/TH.hs, dist/build/Language/R/Internal/FunWrappers/TH.o )
9405[28 of 35] Compiling Language.R.Internal.FunWrappers ( src/Language/R/Internal/FunWrappers.hs, dist/build/Language/R/Internal/FunWrappers.o )
9406clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9407clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9408clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9409clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9410[29 of 35] Compiling Language.R.Literal ( src/Language/R/Literal.hs, dist/build/Language/R/Literal.o )
9411[30 of 35] Compiling Language.R ( src/Language/R.hs, dist/build/Language/R.o )
9412[31 of 35] Compiling Language.R.Internal ( src/Language/R/Internal.hs, dist/build/Language/R/Internal.o )
9413[32 of 35] Compiling Language.R.QQ ( src/Language/R/QQ.hs, dist/build/Language/R/QQ.o )
9414[33 of 35] Compiling H.Prelude ( src/H/Prelude.hs, dist/build/H/Prelude.o )
9415[34 of 35] Compiling Language.R.Matcher ( src/Language/R/Matcher.hs, dist/build/Language/R/Matcher.o )
9416[35 of 35] Compiling H.Prelude.Interactive ( src/H/Prelude/Interactive.hs, dist/build/H/Prelude/Interactive.o )
9417clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9418clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9419haddockPhase
9420Running hscolour for inline-r-0.9.1...
9421Preprocessing library for inline-r-0.9.1..
9422Preprocessing library for inline-r-0.9.1..
9423Running Haddock on library for inline-r-0.9.1..
9424
9425<no location info>: warning: [-Wmissing-home-modules]
9426 These modules are needed for compilation but not listed in your .cabal file's other-modules: Foreign.R.Type
9427 Language.R.HExp
9428 Language.R.Internal
9429clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9430clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9431clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9432clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9433clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9434
9435/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc29396_0/ghc_99.c:89:8: error:
9436 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
9437 |
943889 | return ( RAW(s_inline_c_0) );
9439 | ^
9440return ( RAW(s_inline_c_0) );
9441 ^~~~~~~~~~~~~~~~~~~~~
94421 warning generated.
9443clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9444clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9445
9446/private/tmp/nix-build-inline-r-0.9.1.drv-0/ghc29396_0/ghc_108.c:89:8: error:
9447 warning: returning 'Rbyte *' (aka 'unsigned char *') from a function with result type 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
9448 |
944989 | return ( RAW(s_inline_c_0) );
9450 | ^
9451return ( RAW(s_inline_c_0) );
9452 ^~~~~~~~~~~~~~~~~~~~~
94531 warning generated.
9454clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9455clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9456clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9457clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9458clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
9459Haddock coverage:
9460 100% ( 6 / 6) in 'Control.Memory.Region'
9461 67% ( 2 / 3) in 'Foreign.R.Embedded'
9462 Missing documentation for:
9463 endEmbeddedR (src/Foreign/R/Embedded.hsc:30)
9464 50% ( 1 / 2) in 'Foreign.R.Error'
9465 Missing documentation for:
9466 RError (src/Foreign/R/Error.hsc:15)
9467 82% ( 9 / 11) in 'Foreign.R.EventLoop'
9468 Missing documentation for:
9469 checkActivity (src/Foreign/R/EventLoop.hsc:86)
9470 runHandlers (src/Foreign/R/EventLoop.hsc:91)
9471 100% ( 3 / 3) in 'Foreign.R.Constraints'
9472 100% ( 5 / 5) in 'Internal.Error'
9473 40% ( 2 / 5) in 'Foreign.R.Context'
9474 Missing documentation for:
9475 rCtx (src/Foreign/R/Context.hsc:53)
9476 SEXPREC (src/Foreign/R/Context.hsc:26)
9477 SEXP0 (src/Foreign/R/Context.hsc:28)
9478 91% ( 10 / 11) in 'Foreign.R.Type'
9479 Missing documentation for:
9480 SSEXPTYPE (src/Foreign/R/Type.hsc:165)
9481 49% ( 35 / 72) in 'Foreign.R.Internal'
9482 Missing documentation for:
9483 (src/Foreign/R/Internal.hsc:66)
9484 (src/Foreign/R/Internal.hsc:69)
9485 unsafeRelease (src/Foreign/R/Internal.hsc:90)
9486 (src/Foreign/R/Internal.hsc:96)
9487 (src/Foreign/R/Internal.hsc:99)
9488 (src/Foreign/R/Internal.hsc:105)
9489 cIntConv (src/Foreign/R/Internal.hsc:113)
9490 cIntToEnum (src/Foreign/R/Internal.hsc:116)
9491 cUIntFromSingEnum (src/Foreign/R/Internal.hsc:119)
9492 cIntFromEnum (src/Foreign/R/Internal.hsc:122)
9493 cTYPEOF (src/Foreign/R/Internal.hsc:135)
9494 unsafeCast (src/Foreign/R/Internal.hsc:161)
9495 isRInteractive (src/Foreign/R/Internal.hsc:206)
9496 cOBJECT (src/Foreign/R/Internal.hsc:269)
9497 cNAMED (src/Foreign/R/Internal.hsc:270)
9498 cLEVELS (src/Foreign/R/Internal.hsc:271)
9499 cMARK (src/Foreign/R/Internal.hsc:272)
9500 cRDEBUG (src/Foreign/R/Internal.hsc:273)
9501 cRTRACE (src/Foreign/R/Internal.hsc:274)
9502 cRSTEP (src/Foreign/R/Internal.hsc:275)
9503 cGCGEN (src/Foreign/R/Internal.hsc:276)
9504 cGCCLS (src/Foreign/R/Internal.hsc:277)
9505 cSET_TYPEOF (src/Foreign/R/Internal.hsc:293)
9506 cSET_OBJECT (src/Foreign/R/Internal.hsc:294)
9507 cSET_NAMED (src/Foreign/R/Internal.hsc:295)
9508 cSETLEVELS (src/Foreign/R/Internal.hsc:296)
9509 cSET_MARK (src/Foreign/R/Internal.hsc:297)
9510 cSET_RDEBUG (src/Foreign/R/Internal.hsc:298)
9511 cSET_RTRACE (src/Foreign/R/Internal.hsc:299)
9512 cSET_RSTEP (src/Foreign/R/Internal.hsc:300)
9513 cSET_GCGEN (src/Foreign/R/Internal.hsc:301)
9514 cSET_GCCLS (src/Foreign/R/Internal.hsc:302)
9515 named (src/Foreign/R/Internal.hsc:308)
9516 cAttrib (src/Foreign/R/Internal.hsc:336)
9517 csetAttrib (src/Foreign/R/Internal.hsc:337)
9518 cgetAttrib (src/Foreign/R/Internal.hsc:338)
9519 cisS4 (src/Foreign/R/Internal.hsc:339)
9520Cannot find documentation for: $cast-coerce
9521 89% (100 /112) in 'Foreign.R'
9522 Missing documentation for:
9523 allocVectorProtected (src/Foreign/R.hsc:353)
9524 mkWeakRef (src/Foreign/R.hsc:454)
9525 envFrame (src/Foreign/R.hsc:203)
9526 readVector (src/Foreign/R.hsc:286)
9527 writeVector (src/Foreign/R.hsc:294)
9528 isRInteractive (src/Foreign/R/Internal.hsc:206)
9529 printValue (src/Foreign/R.hsc:368)
9530 named (src/Foreign/R/Internal.hsc:308)
9531 SEXPREC (src/Foreign/R/Context.hsc:26)
9532 SEXP0 (src/Foreign/R/Context.hsc:28)
9533 unsafeRelease (src/Foreign/R/Internal.hsc:90)
9534 indexVector (src/Foreign/R.hsc:290)
9535Warning: Couldn't find .haddock for export isRInteractive
9536Warning: Couldn't find .haddock for export signalHandlersPtr
9537 71% ( 10 / 14) in 'Language.R.Globals'
9538 Missing documentation for:
9539 isRInteractive
9540 signalHandlersPtr
9541 inputHandlers (src/Language/R/Globals.hs:118)
9542 pokeRVariables (src/Language/R/Globals.hs:76)
9543 100% ( 3 / 3) in 'Foreign.R.Parse'
9544 100% ( 5 / 5) in 'Data.Vector.SEXP.Base'
9545 75% ( 3 / 4) in 'Control.Monad.R.Class'
9546 Missing documentation for:
9547 Region (src/Control/Monad/R/Class.hs:50)
9548 100% ( 3 / 3) in 'Language.R.GC'
9549 100% ( 7 / 7) in 'Language.R.Event'
9550 33% ( 1 / 3) in 'Control.Monad.R.Internal'
9551 Missing documentation for:
9552 AcquireIO (src/Control/Monad/R/Internal.hs:16)
9553 withAcquire (src/Control/Monad/R/Internal.hs:18)
9554 38% ( 3 / 8) in 'Data.Vector.SEXP.Mutable.Internal'
9555 Missing documentation for:
9556 withW (src/Data/Vector/SEXP/Mutable/Internal.hs:109)
9557 proxyW (src/Data/Vector/SEXP/Mutable/Internal.hs:106)
9558 unsafeToPtr (src/Data/Vector/SEXP/Mutable/Internal.hs:102)
9559 release (src/Data/Vector/SEXP/Mutable/Internal.hs:112)
9560 unsafeRelease (src/Data/Vector/SEXP/Mutable/Internal.hs:115)
9561 77% ( 37 / 48) in 'Data.Vector.SEXP.Mutable'
9562 Missing documentation for:
9563 release (src/Data/Vector/SEXP/Mutable/Internal.hs:112)
9564 unsafeRelease (src/Data/Vector/SEXP/Mutable/Internal.hs:115)
9565 init (src/Data/Vector/SEXP/Mutable.hs:182)
9566 tail (src/Data/Vector/SEXP/Mutable.hs:186)
9567 take (src/Data/Vector/SEXP/Mutable.hs:170)
9568 drop (src/Data/Vector/SEXP/Mutable.hs:174)
9569 splitAt (src/Data/Vector/SEXP/Mutable.hs:178)
9570 unsafeInit (src/Data/Vector/SEXP/Mutable.hs:208)
9571 unsafeTail (src/Data/Vector/SEXP/Mutable.hs:212)
9572 unsafeTake (src/Data/Vector/SEXP/Mutable.hs:200)
9573 unsafeDrop (src/Data/Vector/SEXP/Mutable.hs:204)
9574 97% (181 /187) in 'Data.Vector.SEXP'
9575 Missing documentation for:
9576 zipWith4 (src/Data/Vector/SEXP.hs:1051)
9577 zipWith5 (src/Data/Vector/SEXP.hs:1068)
9578 zipWith6 (src/Data/Vector/SEXP.hs:1088)
9579 izipWith4 (src/Data/Vector/SEXP.hs:1142)
9580 izipWith5 (src/Data/Vector/SEXP.hs:1159)
9581 izipWith6 (src/Data/Vector/SEXP.hs:1179)
9582 100% ( 6 / 6) in 'Language.R.HExp'
9583 50% ( 1 / 2) in 'Language.R.Debug'
9584 Missing documentation for:
9585 inspect (src/Language/R/Debug.hs:139)
9586 91% ( 10 / 11) in 'Language.R.Instance'
9587 Missing documentation for:
9588 unsafeRunRegion (src/Language/R/Instance.hs:130)
9589 80% ( 4 / 5) in 'Language.R.Internal.FunWrappers.TH'
9590 Missing documentation for:
9591 thWrapperLiterals (src/Language/R/Internal/FunWrappers/TH.hs:59)
9592 7% ( 1 / 14) in 'Language.R.Internal.FunWrappers'
9593 Missing documentation for:
9594 wrap0 (src/Language/R/Internal/FunWrappers.hs:15)
9595 wrap1 (src/Language/R/Internal/FunWrappers.hs:17)
9596 wrap2 (src/Language/R/Internal/FunWrappers.hs:20)
9597 wrap3 (src/Language/R/Internal/FunWrappers.hs:24)
9598 wrap12 (src/Language/R/Internal/FunWrappers.hs:28)
9599 wrap11 (src/Language/R/Internal/FunWrappers.hs:28)
9600 wrap10 (src/Language/R/Internal/FunWrappers.hs:28)
9601 wrap9 (src/Language/R/Internal/FunWrappers.hs:28)
9602 wrap8 (src/Language/R/Internal/FunWrappers.hs:28)
9603 wrap7 (src/Language/R/Internal/FunWrappers.hs:28)
9604 wrap6 (src/Language/R/Internal/FunWrappers.hs:28)
9605 wrap5 (src/Language/R/Internal/FunWrappers.hs:28)
9606 wrap4 (src/Language/R/Internal/FunWrappers.hs:28)
9607 67% ( 10 / 15) in 'Language.R.Literal'
9608 Missing documentation for:
9609 mkSEXPVector (src/Language/R/Literal.hs:105)
9610 mkSEXPVectorIO (src/Language/R/Literal.hs:111)
9611 mkProtectedSEXPVector (src/Language/R/Literal.hs:122)
9612 mkProtectedSEXPVectorIO (src/Language/R/Literal.hs:128)
9613 funToSEXP (src/Language/R/Literal.hs:263)
9614 95% ( 20 / 21) in 'Language.R'
9615 Missing documentation for:
9616 parseText (src/Language/R.hs:101)
9617 75% ( 3 / 4) in 'Language.R.Internal'
9618 Missing documentation for:
9619 Module header
9620 100% ( 3 / 3) in 'Language.R.QQ'
9621 93% ( 13 / 14) in 'H.Prelude'
9622 Missing documentation for:
9623 Region (src/Control/Monad/R/Class.hs:50)
9624 100% ( 35 / 35) in 'Language.R.Matcher'
9625 80% ( 4 / 5) in 'H.Prelude.Interactive'
9626 Missing documentation for:
9627 PrintR (src/H/Prelude/Interactive.hs:27)
9628Warning: Foreign.R.EventLoop: could not find link destinations for:
9629 FdSet
9630Warning: Foreign.R.Type: could not find link destinations for:
9631 D:R:SingSEXPTYPEz0 SNil SSymbol SList SClosure SEnv SPromise SLang SSpecial SBuiltin SChar SLogical SInt SReal SComplex SString SDotDotDot SAny SVector SExpr SBytecode SExtPtr SWeakRef SRaw SS4 SNew SFree SFun D:R:SingBoolz0 SFalse STrue D:R:SingOrderingz0 SLT SEQ SGT D:R:SingNatn0 SNat D:R:SingSymboln0 SSym D:R:Sing()z0 STuple0 D:R:Sing[]z0 SNil SCons D:R:SingMaybez0 SNothing SJust D:R:SingNonEmptyz0 :%| D:R:SingEitherz0 SLeft SRight D:R:Sing(,)z0 STuple2 D:R:Sing(->)f0 SLambda applySing D:R:Sing(,,)z0 STuple3 D:R:Sing(,,,)z0 STuple4 D:R:Sing(,,,,)z0 STuple5 D:R:Sing(,,,,,)z0 STuple6 D:R:Sing(,,,,,,)z0 STuple7
9632Warning: Language.R.Globals: could not find link destinations for:
9633 RVariables
9634Warning: Data.Vector.SEXP.Base: could not find link destinations for:
9635 ~
9636Warning: Data.Vector.SEXP: could not find link destinations for:
9637 ForeignSEXP ~
9638Warning: Language.R.Instance: could not find link destinations for:
9639 ~ D:R:ExecContextR0 ExecContext
9640Warning: Language.R.Literal: could not find link destinations for:
9641 HFunWrap
9642Warning: H.Prelude: could not find link destinations for:
9643 ~
9644Warning: Language.R.Matcher: could not find link destinations for:
9645 MatcherError
9646Warning: H.Prelude.Interactive: could not find link destinations for:
9647 ~
9648Documentation created: dist/doc/html/inline-r/index.html,
9649dist/doc/html/inline-r/inline-r.txt
9650installing
9651Installing library in /nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/lib/ghc-8.2.2/inline-r-0.9.1
9652post-installation fixup
9653strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
9654stripping (with command strip and flags -S) in /nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/lib
9655patching script interpreter paths in /nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1
9656strip is /nix/store/4sdh09gmvl15cy0zb6i7mbvxh5syz206-cctools-binutils-darwin/bin/strip
9657patching script interpreter paths in /nix/store/s0pv76s90a05g1arkarw138z2fyvy93c-inline-r-0.9.1-doc
9658building path(s) ‘/nix/store/dr0yrlmscybjs5ifzw1m063g6xgw5imq-ghc-8.2.2-with-packages’
9659/nix/store/xl9kznfrzddzwd8m2jvqffmwhz0fkasw-mwc-random-0.13.6.0/nix-support:
9660propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9661/nix/store/k672rn51alcrr8qhh9ndy1299zx0c9ky-monad-par-extras-0.3.3/nix-support:
9662propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9663/nix/store/g38w08knz0zccczxq9prxij7nwp3d1c7-abstract-par-0.3.3/nix-support:
9664propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9665/nix/store/a9xfkrqh3zqjxshi3kxrdv6mn74wy12s-abstract-deque-0.3/nix-support:
9666propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9667/nix/store/dbaq1pk33sig9i9v7871nq4yww99jln2-monad-par-0.3.4.8/nix-support:
9668propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9669/nix/store/h8zh74c1wsp0x2q26hw7babbcpcq26jq-vector-th-unbox-0.2.1.6/nix-support:
9670propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9671/nix/store/grjdh1mvxfs4xbkgbyvppnh3hdg2d6dh-math-functions-0.2.1.0/nix-support:
9672propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9673/nix/store/b7fkdx0p7jryq17hy8q731scsyiwhhkw-statistics-0.14.0.2/nix-support:
9674propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9675/nix/store/6w049ja5hrfvkhbn1nckj911qig2wka4-data-default-instances-old-locale-0.0.1/nix-support:
9676propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9677/nix/store/a3s8p62kngaw74myxggzazjy55v3ap9p-data-default-instances-dlist-0.0.1/nix-support:
9678propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9679/nix/store/hnhyvj54850179mzrkgycc5y22wqdl19-data-default-instances-containers-0.0.1/nix-support:
9680propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9681/nix/store/lf44sbmn1pywfja9wgg822s4zgrq92q5-data-default-0.7.1.1/nix-support:
9682propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9683/nix/store/3ym2da7f2hlxb5szhnla4q7248s92d5a-plots-0.1.0.2/nix-support:
9684propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9685/nix/store/h72g6g4i5l2biygf5iiw54q25m85mq3k-th-reify-many-0.1.8/nix-support:
9686propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9687/nix/store/7j8slk7q2aws5a1z33x1s5amcp6rl5s0-th-lift-instances-0.1.11/nix-support:
9688propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9689/nix/store/406ias819m5r0nk37a3v0hri7y8r8amd-th-orphans-0.13.5/nix-support:
9690propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9691/nix/store/qrpg27lk5ihw1kblsziy84lwz6kw7dph-th-lift-0.7.8/nix-support:
9692propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9693/nix/store/8lm6cqqkqgd9b6pvnld92kabhph1ljf7-th-expand-syns-0.4.4.0/nix-support:
9694propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9695/nix/store/ay7wlzxfrq487jcsyk8va8fd4d37q6bm-th-desugar-1.7/nix-support:
9696propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9697/nix/store/7c2zb017gs6sad4hzy5m3skpa6d83had-singletons-2.3.1/nix-support:
9698propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9699/nix/store/196n7v09rs5m9kl51wvzxmpnvr5d3vnk-setenv-0.1.1.3/nix-support:
9700propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9701/nix/store/4x4my0ax3jfygz5bfkwi26wd1snlwaw7-uuid-types-1.0.3/nix-support:
9702propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9703/nix/store/ddm7dc18dgd1gsxqvmcrahmss4ykjrgm-time-locale-compat-0.1.1.3/nix-support:
9704propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9705/nix/store/zlvc7nj6f0zlsiz4v2i7xqblxfp71ypm-base-compat-0.9.3/nix-support:
9706propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9707/nix/store/w82d2a5lqw2ykdnf3yligp32zpd7jrx6-aeson-1.2.4.0/nix-support:
9708propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9709/nix/store/i5albpmq8bj2czbs3la4rk4sf2qfdq5r-inline-r-0.9.1/nix-support:
9710propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9711/nix/store/dff0wsv9zp23m2aglwpss0bkk3ac4fh1-charset-0.3.7.1/nix-support:
9712propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9713/nix/store/hrn2rz0a6359k91m80mnv6n37appb82x-attoparsec-0.13.2.2/nix-support:
9714propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9715/nix/store/l60xxc6ycd5qbn0g4ap9dwk3pjx8b1zd-parsers-0.12.8/nix-support:
9716propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9717/nix/store/pnicdgix0nibzidysy9llq0rgc8k8prg-parsec-3.1.13.0/nix-support:
9718propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9719/nix/store/yb1rwg6lcv172mrsl3dkis0qhkx5pf1p-inline-c-0.6.0.5/nix-support:
9720propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9721/nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/nix-support:
9722propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9723/nix/store/fsqjispyv2pq78vgvrzjmcwgrmbljc6n-hmatrix-gsl-0.18.2.0/nix-support:
9724propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9725/nix/store/dm5fpvdgj7j5981lbkchai44xi2qmppq-random-1.1/nix-support:
9726propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9727/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/nix-support:
9728propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9729/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/package.conf.d:
9730hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.conf: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/package.conf.d/hmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.conf
9731/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2:
9732libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/x86_64-osx-ghc-8.2.2/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf-ghc8.2.2.dylib
9733/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal:
9734IO.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/IO.dyn_hi
9735Numeric.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Numeric.hi
9736Static.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Static.hi
9737Sparse.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Sparse.hi
9738ST.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/ST.dyn_hi
9739Static.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Static.dyn_hi
9740Container.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Container.hi
9741CG.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/CG.dyn_hi
9742Sparse.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Sparse.dyn_hi
9743Conversion.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Conversion.dyn_hi
9744LAPACK.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/LAPACK.dyn_hi
9745Vectorized.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vectorized.dyn_hi
9746Devel.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Devel.dyn_hi
9747LAPACK.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/LAPACK.hi
9748Modular.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Modular.hi
9749Devel.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Devel.hi
9750Chain.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Chain.dyn_hi
9751Container.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Container.dyn_hi
9752Algorithms.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Algorithms.hi
9753Convolution.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Convolution.hi
9754Vector.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vector.hi
9755Vectorized.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vectorized.hi
9756Vector.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Vector.dyn_hi
9757Matrix.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Matrix.dyn_hi
9758Algorithms.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Algorithms.dyn_hi
9759Random.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Random.dyn_hi
9760Matrix.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Matrix.hi
9761CG.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/CG.hi
9762Util.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Util.dyn_hi
9763Numeric.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Numeric.dyn_hi
9764Modular.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Modular.dyn_hi
9765Random.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Random.hi
9766Element.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Element.hi
9767Element.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Element.dyn_hi
9768Util.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Util.hi
9769Chain.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Chain.hi
9770Convolution.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Convolution.dyn_hi
9771ST.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/ST.hi
9772IO.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/IO.hi
9773Conversion.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Internal/Conversion.hi
9774/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric:
9775LinearAlgebra.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra.hi
9776Vector.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Vector.hi
9777Vector.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Vector.dyn_hi
9778Matrix.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Matrix.dyn_hi
9779Matrix.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/Matrix.hi
9780/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra:
9781Static.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Static.hi
9782Static.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Static.dyn_hi
9783Devel.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Devel.dyn_hi
9784Data.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Data.hi
9785Devel.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Devel.hi
9786Data.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/Data.dyn_hi
9787HMatrix.hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/HMatrix.hi
9788HMatrix.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra/HMatrix.dyn_hi
9789/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric:
9790LinearAlgebra.dyn_hi: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/Numeric/LinearAlgebra.dyn_hi
9791/nix/store/x3l47jzbdlph9aprlshzp7ibiyjx0by2-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0:
9792libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.a: /nix/store/gf5z8zz4z1hn9hbz27kznvphfzbl4dxn-hmatrix-0.18.2.0/lib/ghc-8.2.2/hmatrix-0.18.2.0/libHShmatrix-0.18.2.0-GQzHhDmJJzr8XDCOFEmvCf.a
9793/nix/store/aqglza6ihq2rybpmi1fmwnfzp2cjbyi5-vector-algorithms-0.7.0.1/nix-support:
9794propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9795/nix/store/90pphnzk9ylyx3cia0pbyw2cf6hy2jqj-dlist-0.8.0.4/nix-support:
9796propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9797/nix/store/8lrqj5i0sn8dmvj1isajvm4hcdw7vkny-Rasterific-0.7.2.1/nix-support:
9798propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9799/nix/store/f6540v8l9k17lw9691glhyj2f0mz6110-xml-1.3.14/nix-support:
9800propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9801/nix/store/jhja7gp8q7cd8f09arfnyvbzsz78yf68-FontyFruity-0.5.3.3/nix-support:
9802propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9803/nix/store/9g30da7z3r2i5p3fpawsxsj2wxwn4awb-file-embed-0.0.10.1/nix-support:
9804propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9805/nix/store/qx9i7ngkjrhcd64l7kjfml1vkkpir3is-diagrams-rasterific-1.4/nix-support:
9806propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9807/nix/store/2vvv5qcbw4rzd3hmxbbvimfcdfy7inbg-ansi-terminal-0.7.1.1/nix-support:
9808propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9809/nix/store/kx7ndw3vlb95a8hw2d2c29dxqdq0lb1p-ansi-wl-pprint-0.6.8.2/nix-support:
9810propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9811/nix/store/ii17xr2fhg93s0lz3kzv1pgmz6wgdspl-optparse-applicative-0.14.2.0/nix-support:
9812propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9813/nix/store/00vjraxm2aak27m1bfsfv50mpgmcnybb-zlib-0.6.1.2/nix-support:
9814propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9815/nix/store/aldn972ad5dnx8n8y1fnwx65pp766962-JuicyPixels-3.2.9.4/nix-support:
9816propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9817/nix/store/spxds76iy139j5rwhz6n6qg35bpfqgz7-intervals-0.8.1/nix-support:
9818propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9819/nix/store/prq0cbn8bw6psc3bn2sxfi09a0iz91mk-unix-compat-0.5.0.1/nix-support:
9820propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9821/nix/store/v00p09vfiycilvid0q62hwzsjcniq0mk-hfsevents-0.1.6/nix-support:
9822propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9823/nix/store/4m8n7xgyiqj60g782s12ygg8vxk5il7b-async-2.1.1.1/nix-support:
9824propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9825/nix/store/ay5jrs1zz68sfpihx999964xxm09j3zw-fsnotify-0.2.1.1/nix-support:
9826propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9827/nix/store/3i4r6m8vwkzjj32f95zcl5f8v3f2l0qn-newtype-generics-0.5.2.1/nix-support:
9828propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9829/nix/store/d91w9x24znzw3z69vjr27ajs397is66c-monoid-extras-0.4.2/nix-support:
9830propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9831/nix/store/vpzcr8j96z9g0mkxl3f4v1crjsbfhfml-dual-tree-0.2.1/nix-support:
9832propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9833/nix/store/myxz08k6ssrdg621l4w0b2zmqgybbbq8-diagrams-core-1.4.0.1/nix-support:
9834propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9835/nix/store/46k9l8xpfm53l048iwhmgz67v3cp2qd5-integer-logarithms-1.0.2/nix-support:
9836propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9837/nix/store/5nqfwms9n2rrxf0ccbrn2ihfadv9k48f-scientific-0.3.5.2/nix-support:
9838propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9839/nix/store/5p3rcx1knymrhhc3s6qcfll3bl92qalq-cereal-0.5.5.0/nix-support:
9840propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9841/nix/store/i4mzslx07aa3y81z546ih8cscm8yi0p5-bytes-0.15.3/nix-support:
9842propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9843/nix/store/7gzy1wc78xgdladx8s8nnv25skhyg2li-linear-1.20.7/nix-support:
9844propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9845/nix/store/99n1lpa3nk8bdll1krkjm0y39ipz67cw-primitive-0.6.3.0/nix-support:
9846propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9847/nix/store/zjrh364ba28hdvxf9hnv9ww9ayc6k6a7-vector-0.12.0.1/nix-support:
9848propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9849/nix/store/cx804c6xk5lcgidaf33hw4g314lqslvi-parallel-3.2.1.1/nix-support:
9850propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9851/nix/store/nzi40591f8lkjpvw0dhzdi12zg01i744-adjunctions-4.3/nix-support:
9852propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9853/nix/store/5r7q4zzhgb9lxliw3sg734q7bpvhfmrv-kan-extensions-5.0.2/nix-support:
9854propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9855/nix/store/1693fpv36yp7gd07sbnl1vx820zanic1-lens-4.15.4/nix-support:
9856propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9857/nix/store/rf12994pnjqh58yw8wpwb25381v321l1-active-0.2.0.13/nix-support:
9858propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9859/nix/store/3ramz5i22lk30m0q4y1an3khamg3866z-diagrams-lib-1.4.2/nix-support:
9860propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9861/nix/store/ps7bkynjm2d72010202zipjb9zmfjgq8-reflection-2.1.3/nix-support:
9862propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9863/nix/store/kz9xb1qlbvs0zv046fdsix4249z0n2zn-unordered-containers-0.2.8.0/nix-support:
9864propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9865/nix/store/g0wx1xc7pn3m9af0px9rxplmhb6lvc1f-text-1.2.2.2/nix-support:
9866propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9867/nix/store/vfvvkl7x48xqqcygb3hybrag0npfq5vd-hashable-1.2.6.1/nix-support:
9868propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9869/nix/store/ibiyyz6q8p01h5s13ghyz9savrxyxxpy-semigroupoids-5.2.1/nix-support:
9870propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9871/nix/store/zps2vh471fb8szkycvpb3agqj1n3zys1-profunctors-5.2.2/nix-support:
9872propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9873/nix/store/y0cwc3kgz8si3196n7ld34s2xc9d4dr1-mtl-2.2.2/nix-support:
9874propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9875/nix/store/12q9bzizlip223g1gxij8802ciyb2j4p-exceptions-0.8.3/nix-support:
9876propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9877/nix/store/52g6dj1pjv64zqqkkr2mykfkcc52hn0x-th-abstraction-0.2.6.0/nix-support:
9878propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9879/nix/store/b2d4fg7xzljhmf29bpysfdla9kf3jnv9-bifunctors-5.5.2/nix-support:
9880propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9881/nix/store/m1wqyy4izcipv3icjk9km44kp628s2bf-free-4.12.4/nix-support:
9882propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9883/nix/store/mhmhlkljvg7zc2d8pxsq0va596lagiag-data-reify-0.6.1/nix-support:
9884propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9885/nix/store/mjv1yl0vvwkpswwv5i8f47d4s7ha0bn2-tagged-0.8.5/nix-support:
9886propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9887/nix/store/wf6s78cwilnjk5jds2wfi0jfydz8p1sy-base-orphans-0.6/nix-support:
9888propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9889/nix/store/gmpdgfa29kwqq9xkgvnvjshy1xd88gh2-distributive-0.5.3/nix-support:
9890propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9891/nix/store/1mgfv23zk9asgdby6xbkncdlqhqgnkb0-transformers-compat-0.5.1.4/nix-support:
9892propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9893/nix/store/f7wmila6z2g309fp69cccw8g7yvv831f-stm-2.4.5.0/nix-support:
9894propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9895/nix/store/26nlip2wm06ly3xcdhhy1c4qmw2wz96f-StateVar-1.1.0.4/nix-support:
9896propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9897/nix/store/fmdc7vpjl3kbb09gihqy66qfi2nam3xq-contravariant-1.4.1/nix-support:
9898propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9899/nix/store/1as6ird2m1wcyjrlfn1jzj2m0yds6szr-comonad-5.0.3/nix-support:
9900propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9901/nix/store/s0r68l954v056qwpjf74bkgvq2bl7dna-ad-4.3.5/nix-support:
9902propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9903/nix/store/z6jgjdggj7xkrm8l8bd5xn7pq6cw85wy-ghc-8.2.2/nix-support:
9904propagated-build-inputs: /nix/store/lkmp2brmdj8p80ln9h3np5wjjj44xrd1-vector-binary-instances-0.2.4/nix-support/propagated-build-inputs
9905Warning: library-dirs: /opt/local/lib/ doesn't exist or isn't a directory
9906Warning: dynamic-library-dirs: /opt/local/lib/ doesn't exist or isn't a directory
9907Warning: include-dirs: /opt/local/include/ doesn't exist or isn't a directory
9908Warning: haddock-interfaces: /nix/store/is075znwr755d4c2y5s47y4gpy2xvdwc-fail-4.9.0.0/share/doc/x86_64-osx-ghc-8.2.2/fail-4.9.0.0/html/fail.haddock doesn't exist or isn't a file
9909Warning: haddock-html: /nix/store/is075znwr755d4c2y5s47y4gpy2xvdwc-fail-4.9.0.0/share/doc/x86_64-osx-ghc-8.2.2/fail-4.9.0.0/html doesn't exist or isn't a directory
9910Warning: haddock-interfaces: /nix/store/178z05w62gz57x6c17gciyj8dc6lipn1-nats-1.1.2/share/doc/x86_64-osx-ghc-8.2.2/nats-1.1.2/html/nats.haddock doesn't exist or isn't a file
9911Warning: haddock-html: /nix/store/178z05w62gz57x6c17gciyj8dc6lipn1-nats-1.1.2/share/doc/x86_64-osx-ghc-8.2.2/nats-1.1.2/html doesn't exist or isn't a directory
9912Warning: haddock-interfaces: /nix/store/aldn972ad5dnx8n8y1fnwx65pp766962-JuicyPixels-3.2.9.4/share/doc/x86_64-osx-ghc-8.2.2/JuicyPixels-3.2.9.4/html/JuicyPixels.haddock doesn't exist or isn't a file
9913Warning: haddock-html: /nix/store/aldn972ad5dnx8n8y1fnwx65pp766962-JuicyPixels-3.2.9.4/share/doc/x86_64-osx-ghc-8.2.2/JuicyPixels-3.2.9.4/html doesn't exist or isn't a directory
9914
9915[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ ghci
9916GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
9917Prelude> :l Notes.lhs
9918[1 of 1] Compiling RK2Imp ( Notes.lhs, interpreted )
9919
9920Notes.lhs:249:12: warning: [-Wmissing-methods]
9921 • No explicit implementation for
9922 ‘abs’, ‘signum’, ‘fromInteger’, and (either ‘negate’ or ‘-’)
9923 • In the instance declaration for ‘Num [a]’
9924 |
9925249 | > instance Num a => Num [a] where
9926 | ^^^^^^^^^^^^^^^^
9927Ok, one module loaded.
9928*RK2Imp> :q
9929Leaving GHCi.
9930
9931[nix-shell:~/Dropbox/Tidy/NumMethHaskell/symplectic-integrators]$ cd ~/hmatrix/packages/sundials/src
9932
9933[nix-shell:~/hmatrix/packages/sundials/src]$ cd ..
9934
9935[nix-shell:~/hmatrix/packages/sundials]$ ghci
9936GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
9937Prelude> :l src/Test.hs
9938[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9939
9940src/Test.hs:9:22: error:
9941 • Variable not in scope:
9942 (<>) :: C.Context -> C.Context -> C.Context
9943 • Perhaps you meant one of these:
9944 ‘<*>’ (imported from Prelude), ‘*>’ (imported from Prelude),
9945 ‘>>’ (imported from Prelude)
9946 |
99479 | C.context (C.baseCtx <> C.funCtx)
9948 | ^^
9949Failed, no modules loaded.
9950Prelude> :r
9951[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9952Ok, one module loaded.
9953*Main> :r
9954[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9955
9956src/Test.hs:25:28: error:
9957 parse error on input ‘=’
9958 Perhaps you need a 'let' in a 'do' block?
9959 e.g. 'let x = 5' instead of 'x = 5'
9960 |
996125 | sunindextype NEQ = 1; /* number of dependent vars. */
9962 | ^
9963Failed, no modules loaded.
9964Prelude> :r
9965[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9966
9967src/Test.hs:24:38: error:
9968 parse error on input ‘=’
9969 Perhaps you need a 'let' in a 'do' block?
9970 e.g. 'let x = 5' instead of 'x = 5'
9971 |
997224 | res <- [C.block | sunindextype NEQ = 1; /* number of dependent vars. */
9973 | ^
9974Failed, no modules loaded.
9975Prelude> :r
9976[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9977
9978src/Test.hs:24:23: error:
9979 parse error on input ‘=’
9980 Perhaps you need a 'let' in a 'do' block?
9981 e.g. 'let x = 5' instead of 'x = 5'
9982 |
998324 | res <- [C.block | y = N_VNew_Serial(NEQ); |]
9984 | ^
9985Failed, no modules loaded.
9986Prelude> :r
9987[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9988
9989src/Test.hs:24:19: error:
9990 • "src/Test.hs" (line 24, column 22):
9991unexpected identifier y
9992 • In the quasi-quotation: [C.block| y = N_VNew_Serial(NEQ); |]
9993 |
999424 | res <- [C.block| y = N_VNew_Serial(NEQ); |]
9995 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
9996Failed, no modules loaded.
9997Prelude> :r
9998[1 of 1] Compiling Main ( src/Test.hs, interpreted )
9999
10000src/Test.hs:24:19: error:
10001 • "src/Test.hs" (line 24, column 29):
10002unexpected identifier N_Vector
10003 • In the quasi-quotation:
10004 [C.block| N_Vector y = NULL; /* empty vector for storing solution */
10005 y = N_VNew_Serial(NEQ); |]
10006 |
1000724 | res <- [C.block| N_Vector y = NULL; /* empty vector for storing solution */
10008 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
10009Failed, no modules loaded.
10010Prelude> :r
10011[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10012
10013src/Test.hs:24:19: error:
10014 • "src/Test.hs" (line 24, column 33):
10015unexpected identifier sunindextype
10016 • In the quasi-quotation:
10017 [C.block| sunindextype NEQ = 1; /* number of dependent vars. */
10018 N_Vector y = NULL; /* empty vector for storing solution */
10019 y = N_VNew_Serial(NEQ); /* Create serial vector for solution */
10020 |]
10021 |
1002224 | res <- [C.block| sunindextype NEQ = 1; /* number of dependent vars. */
10023 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
10024Failed, no modules loaded.
10025Prelude> :r
10026[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10027
10028src/Test.hs:77:3: error:
10029 Multi-way if-expressions need MultiWayIf turned on
10030 |
1003177 | if | res == good -> Right <$> V.freeze fMut
10032 | ^^
10033Failed, no modules loaded.
10034Prelude> :r
10035[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10036
10037src/Test.hs:28:18: error:
10038 Not in scope: type constructor or class ‘V.Vector’
10039 No module named ‘V’ is imported.
10040 |
1004128 | :: (CDouble -> V.Vector CDouble -> V.Vector CDouble)
10042 | ^^^^^^^^
10043
10044src/Test.hs:28:38: error:
10045 Not in scope: type constructor or class ‘V.Vector’
10046 No module named ‘V’ is imported.
10047 |
1004828 | :: (CDouble -> V.Vector CDouble -> V.Vector CDouble)
10049 | ^^^^^^^^
10050
10051src/Test.hs:32:6: error:
10052 Not in scope: type constructor or class ‘V.Vector’
10053 No module named ‘V’ is imported.
10054 |
1005532 | -> V.Vector CDouble
10056 | ^^^^^^^^
10057
10058src/Test.hs:36:21: error:
10059 Not in scope: type constructor or class ‘V.Vector’
10060 No module named ‘V’ is imported.
10061 |
1006236 | -> Either String (V.Vector CDouble)
10063 | ^^^^^^^^
10064
10065src/Test.hs:39:13: error:
10066 Not in scope: ‘V.length’
10067 No module named ‘V’ is imported.
10068 |
1006939 | let dim = V.length f0
10070 | ^^^^^^^^
10071
10072src/Test.hs:49:9: error:
10073 • Not in scope: ‘CU.exp’
10074 Perhaps you meant ‘C.exp’ (imported from Language.C.Inline)
10075 No module named ‘CU’ is imported.
10076 • In the quasi-quotation: [CU.exp| int{ GSL_SUCCESS } |]
10077 |
1007849 | [CU.exp| int{ GSL_SUCCESS } |]
10079 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10080Failed, no modules loaded.
10081Prelude> :r
10082[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10083
10084src/Test.hs:50:9: error:
10085 • Not in scope: ‘CU.exp’
10086 Perhaps you meant ‘C.exp’ (imported from Language.C.Inline)
10087 No module named ‘CU’ is imported.
10088 • In the quasi-quotation: [CU.exp| int{ GSL_SUCCESS } |]
10089 |
1009050 | [CU.exp| int{ GSL_SUCCESS } |]
10091 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10092Failed, no modules loaded.
10093Prelude> :r
10094[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10095
10096src/Test.hs:57:19: error:
10097 • "src/Test.hs" (line 72, column 44):
10098unexpected "v"
10099expecting "$", anti quoter id or "("
10100 • In the quasi-quotation:
10101 [C.block| int {
10102 gsl_odeiv2_system sys = {
10103 $fun:(int (* funIO) (double t, const double y[], double dydt[], void * params)),
10104 // The ODE to solve, converted to function pointer using the `fun`
10105 // anti-quoter
10106 NULL, // We don't provide a Jacobian
10107 $(int dim_c), // The dimension
10108 NULL // We don't need the parameter pointer
10109 };
10110 // Create the driver, using some sensible values for the stepping
10111 // function and the tolerances
10112 gsl_odeiv2_driver *d = gsl_odeiv2_driver_alloc_y_new (
10113 &sys, gsl_odeiv2_step_rk8pd, 1e-6, 1e-6, 0.0);
10114 // Finally, apply the driver.
10115 int status = gsl_odeiv2_driver_apply(
10116 d, &$(double x0), $(double xend), $vec-ptr:(double *fMut));
10117 // Free the driver
10118 gsl_odeiv2_driver_free(d);
10119 return status;
10120 } |]
10121 |
1012257 | res <- [C.block| int {
10123 | ^^^^^^...
10124Failed, no modules loaded.
10125Prelude> :r
10126[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10127
10128src/Test.hs:21:1: error:
10129 Could not find module ‘Graphics.Rendering.Chart.Backend.Cairo’
10130 Use -v to see a list of the files searched for.
10131 |
1013221 | import qualified Graphics.Rendering.Chart.Backend.Cairo as Chart
10133 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10134
10135src/Test.hs:22:1: error:
10136 Could not find module ‘Graphics.Rendering.Chart.Easy’
10137 Use -v to see a list of the files searched for.
10138 |
1013922 | import qualified Graphics.Rendering.Chart.Easy as Chart
10140 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10141Failed, no modules loaded.
10142Prelude> :r
10143[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10144
10145src/Test.hs:68:19: error:
10146 • "src/Test.hs" (line 83, column 44):
10147unexpected "v"
10148expecting "$", anti quoter id or "("
10149 • In the quasi-quotation:
10150 [C.block| int {
10151 gsl_odeiv2_system sys = {
10152 $fun:(int (* funIO) (double t, const double y[], double dydt[], void * params)),
10153 // The ODE to solve, converted to function pointer using the `fun`
10154 // anti-quoter
10155 NULL, // We don't provide a Jacobian
10156 $(int dim_c), // The dimension
10157 NULL // We don't need the parameter pointer
10158 };
10159 // Create the driver, using some sensible values for the stepping
10160 // function and the tolerances
10161 gsl_odeiv2_driver *d = gsl_odeiv2_driver_alloc_y_new (
10162 &sys, gsl_odeiv2_step_rk8pd, 1e-6, 1e-6, 0.0);
10163 // Finally, apply the driver.
10164 int status = gsl_odeiv2_driver_apply(
10165 d, &$(double x0), $(double xend), $vec-ptr:(double *fMut));
10166 // Free the driver
10167 gsl_odeiv2_driver_free(d);
10168 return status;
10169 } |]
10170 |
1017168 | res <- [C.block| int {
10172 | ^^^^^^...
10173Failed, no modules loaded.
10174Prelude> :r
10175[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10176
10177src/Test.hs:69:19: error:
10178 • "src/Test.hs" (line 84, column 44):
10179unexpected "v"
10180expecting "$", anti quoter id or "("
10181 • In the quasi-quotation:
10182 [C.block| int {
10183 gsl_odeiv2_system sys = {
10184 $fun:(int (* funIO) (double t, const double y[], double dydt[], void * params)),
10185 // The ODE to solve, converted to function pointer using the `fun`
10186 // anti-quoter
10187 NULL, // We don't provide a Jacobian
10188 $(int dim_c), // The dimension
10189 NULL // We don't need the parameter pointer
10190 };
10191 // Create the driver, using some sensible values for the stepping
10192 // function and the tolerances
10193 gsl_odeiv2_driver *d = gsl_odeiv2_driver_alloc_y_new (
10194 &sys, gsl_odeiv2_step_rk8pd, 1e-6, 1e-6, 0.0);
10195 // Finally, apply the driver.
10196 int status = gsl_odeiv2_driver_apply(
10197 d, &$(double x0), $(double xend), $vec-ptr:(double *fMut));
10198 // Free the driver
10199 gsl_odeiv2_driver_free(d);
10200 return status;
10201 } |]
10202 |
1020369 | res <- [C.block| int {
10204 | ^^^^^^...
10205Failed, no modules loaded.
10206Prelude> :l src/gsl-ode.hs
10207[1 of 1] Compiling Main ( src/gsl-ode.hs, interpreted )
10208
10209src/gsl-ode.hs:14:1: error:
10210 Could not find module ‘Graphics.Rendering.Chart.Backend.Cairo’
10211 Use -v to see a list of the files searched for.
10212 |
1021314 | import qualified Graphics.Rendering.Chart.Backend.Cairo as Chart
10214 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10215
10216src/gsl-ode.hs:15:1: error:
10217 Could not find module ‘Graphics.Rendering.Chart.Easy’
10218 Use -v to see a list of the files searched for.
10219 |
1022015 | import qualified Graphics.Rendering.Chart.Easy as Chart
10221 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10222Failed, no modules loaded.
10223Prelude> :r
10224[1 of 1] Compiling Main ( src/gsl-ode.hs, interpreted )
10225
10226src/gsl-ode.hs:14:1: error:
10227 Could not find module ‘Graphics.Rendering.Chart.Backend.Cairo’
10228 Use -v to see a list of the files searched for.
10229 |
1023014 | import qualified Graphics.Rendering.Chart.Backend.Cairo as Chart
10231 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10232
10233src/gsl-ode.hs:15:1: error:
10234 Could not find module ‘Graphics.Rendering.Chart.Easy’
10235 Use -v to see a list of the files searched for.
10236 |
1023715 | import qualified Graphics.Rendering.Chart.Easy as Chart
10238 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10239Failed, no modules loaded.
10240Prelude> :r
10241[1 of 1] Compiling Main ( src/gsl-ode.hs, interpreted )
10242clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10243Ok, one module loaded.
10244*Main> :l src/Test.hs
10245[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10246
10247src/Test.hs:55:28: error:
10248 Variable not in scope:
10249 unsafePerformIO
10250 :: IO (Either [Char] (V.Vector CDouble))
10251 -> Either String (V.Vector CDouble)
10252 |
1025355 | solveOdeC fun x0 f0 xend = unsafePerformIO $ do
10254 | ^^^^^^^^^^^^^^^
10255
10256src/Test.hs:62:27: error:
10257 Variable not in scope:
10258 vectorFromC :: Int -> t -> IO (V.Vector CDouble)
10259 |
1026062 | fImm <- fun x <$> vectorFromC dim y
10261 | ^^^^^^^^^^^
10262
10263src/Test.hs:64:9: error:
10264 Variable not in scope:
10265 vectorToC :: V.Vector CDouble -> Int -> t1 -> IO a0
10266 |
1026764 | vectorToC fImm dim f
10268 | ^^^^^^^^^
10269Failed, no modules loaded.
10270Prelude> :r
10271[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10272
10273src/Test.hs:59:27: error:
10274 Variable not in scope:
10275 vectorFromC :: Int -> t -> IO (V.Vector CDouble)
10276 |
1027759 | fImm <- fun x <$> vectorFromC dim y
10278 | ^^^^^^^^^^^
10279
10280src/Test.hs:61:9: error:
10281 Variable not in scope:
10282 vectorToC :: V.Vector CDouble -> Int -> t1 -> IO a0
10283 |
1028461 | vectorToC fImm dim f
10285 | ^^^^^^^^^
10286Failed, no modules loaded.
10287Prelude> :r
10288[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10289clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10290Ok, one module loaded.
10291*Main> :r
10292[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10293clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10294Ok, one module loaded.
10295*Main> :t foo
10296foo :: IO CInt
10297*Main> :r
10298[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10299
10300src/Test.hs:110:16: error:
10301 • "src/Test.hs" (line 110, column 26):
10302unexpected identifier N_Vector
10303 • In the quasi-quotation: [C.block| N_Vector y = NULL; |]
10304 |
10305110 | bar = [C.block| N_Vector y = NULL; |]
10306 | ^^^^^^^^^^^^^^^^^^^^^^
10307Failed, no modules loaded.
10308Prelude> :r
10309[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10310
10311src/Test.hs:112:18: error:
10312 Not in scope: type constructor or class ‘Map.Map’
10313 No module named ‘Map’ is imported.
10314 |
10315112 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10316 | ^^^^^^^
10317
10318src/Test.hs:112:26: error:
10319 Not in scope: type constructor or class ‘CT.TypeSpecifier’
10320 No module named ‘CT’ is imported.
10321 |
10322112 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10323 | ^^^^^^^^^^^^^^^^
10324
10325src/Test.hs:112:43: error:
10326 Not in scope: type constructor or class ‘TH.TypeQ’
10327 No module named ‘TH’ is imported.
10328 |
10329112 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10330 | ^^^^^^^^
10331Failed, no modules loaded.
10332Prelude> :r
10333[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10334
10335src/Test.hs:114:18: error:
10336 Not in scope: type constructor or class ‘Map.Map’
10337 No module named ‘Map’ is imported.
10338 |
10339114 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10340 | ^^^^^^^
10341
10342src/Test.hs:114:26: error:
10343 Not in scope: type constructor or class ‘CT.TypeSpecifier’
10344 No module named ‘CT’ is imported.
10345 |
10346114 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10347 | ^^^^^^^^^^^^^^^^
10348Failed, no modules loaded.
10349Prelude> :r
10350[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10351
10352src/Test.hs:115:18: error:
10353 Not in scope: type constructor or class ‘Map.Map’
10354 No module named ‘Map’ is imported.
10355 |
10356115 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10357 | ^^^^^^^
10358Failed, no modules loaded.
10359Prelude> :r
10360[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10361
10362src/Test.hs:119:6: error:
10363 • Variable not in scope: typeNameId :: [Char] -> CT.TypeSpecifier
10364 • Perhaps you meant data constructor ‘CT.TypeName’ (imported from Language.C.Types)
10365 |
10366119 | (typeNameId "sunindextype", [t| SunIndexType |] )
10367 | ^^^^^^^^^^
10368Failed, no modules loaded.
10369Prelude> :r
10370[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10371
10372src/Test.hs:119:6: error:
10373 Not in scope: data constructor ‘C.TypeName’
10374 Perhaps you meant ‘CT.TypeName’ (imported from Language.C.Types)
10375 Module ‘Language.C.Inline’ does not export ‘TypeName’.
10376 |
10377119 | (C.TypeName "sunindextype", [t| SunIndexType |] )
10378 | ^^^^^^^^^^
10379Failed, no modules loaded.
10380Prelude> :r
10381[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10382
10383src/Test.hs:119:18: error:
10384 • Couldn't match expected type ‘CT.CIdentifier’
10385 with actual type ‘[Char]’
10386 • In the first argument of ‘CT.TypeName’, namely ‘"sunindextype"’
10387 In the expression: CT.TypeName "sunindextype"
10388 In the expression:
10389 (CT.TypeName "sunindextype", [t| SunIndexType |])
10390 |
10391119 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10392 | ^^^^^^^^^^^^^^
10393Failed, no modules loaded.
10394Prelude> :r
10395[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10396clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10397Ok, one module loaded.
10398*Main> :r
10399[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10400
10401src/Test.hs:123:18: error:
10402 Not in scope: ‘ctxTypesTable’
10403 Perhaps you meant ‘sunTypesTable’ (line 118)
10404 |
10405123 | sunctx = mempty {ctxTypesTable = sunTypesTable}
10406 | ^^^^^^^^^^^^^
10407Failed, no modules loaded.
10408Prelude> :r
10409[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10410clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10411Ok, one module loaded.
10412*Main> :r
10413[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10414
10415src/Test.hs:31:49: error:
10416 • Variable not in scope: sunctx :: Context
10417 • Perhaps you meant ‘funCtx’ (imported from Language.C.Inline.Context)
10418 |
1041931 | C.context (C.baseCtx <> C.vecCtx <> C.funCtx <> sunctx)
10420 | ^^^^^^
10421Failed, no modules loaded.
10422Prelude> :r
10423[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10424
10425src/Test.hs:32:3: error: parse error on input ‘where’
10426 |
1042732 | where
10428 | ^^^^^
10429Failed, no modules loaded.
10430Prelude> :r
10431[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10432clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10433Ok, one module loaded.
10434*Main> :r
10435[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10436
10437src/Test.hs:31:1: error:
10438 Could not find module ‘Types’
10439 Use -v to see a list of the files searched for.
10440 |
1044131 | import Types
10442 | ^^^^^^^^^^^^^^^^^^^^^
10443Failed, no modules loaded.
10444Prelude> :q
10445Leaving GHCi.
10446
10447[nix-shell:~/hmatrix/packages/sundials]$ ghci -isrc
10448GHCi, version 8.2.2: http://www.haskell.org/ghc/ :? for help
10449Prelude> :l src/Test.hs
10450[1 of 2] Compiling Types ( src/Types.hs, interpreted )
10451
10452src/Types.hs:9:52: error: parse error on input ‘]’
10453 |
104549 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10455 | ^
10456Failed, no modules loaded.
10457Prelude> :r
10458[1 of 2] Compiling Types ( src/Types.hs, interpreted )
10459
10460src/Types.hs:9:21: error:
10461 Not in scope: type constructor or class ‘CLong’
10462 |
104639 | type SunIndexType = CLong
10464 | ^^^^^
10465
10466src/Types.hs:11:18: error:
10467 Not in scope: type constructor or class ‘Map.Map’
10468 No module named ‘Map’ is imported.
10469 |
1047011 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10471 | ^^^^^^^
10472
10473src/Types.hs:11:26: error:
10474 Not in scope: type constructor or class ‘CT.TypeSpecifier’
10475 No module named ‘CT’ is imported.
10476 |
1047711 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10478 | ^^^^^^^^^^^^^^^^
10479
10480src/Types.hs:11:43: error:
10481 Not in scope: type constructor or class ‘TH.TypeQ’
10482 No module named ‘TH’ is imported.
10483 |
1048411 | sunTypesTable :: Map.Map CT.TypeSpecifier TH.TypeQ
10485 | ^^^^^^^^
10486
10487src/Types.hs:12:17: error:
10488 Not in scope: ‘Map.fromList’
10489 No module named ‘Map’ is imported.
10490 |
1049112 | sunTypesTable = Map.fromList
10492 | ^^^^^^^^^^^^
10493
10494src/Types.hs:14:6: error:
10495 Not in scope: data constructor ‘CT.TypeName’
10496 No module named ‘CT’ is imported.
10497 |
1049814 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10499 | ^^^^^^^^^^^
10500
10501src/Types.hs:17:18: error:
10502 Not in scope: ‘ctxTypesTable’
10503 Perhaps you meant ‘sunTypesTable’ (line 12)
10504 |
1050517 | sunctx = mempty {ctxTypesTable = sunTypesTable}
10506 | ^^^^^^^^^^^^^
10507Failed, no modules loaded.
10508Prelude> :r
10509
10510src/Types.hs:1:1: error:
10511 File name does not match module name:
10512 Saw: ‘Main’
10513 Expected: ‘Types’
10514 |
105151 | {-# LANGUAGE QuasiQuotes #-}
10516 | ^
10517Failed, no modules loaded.
10518Prelude> :r
10519[1 of 2] Compiling Types ( src/Types.hs, interpreted )
10520
10521src/Types.hs:40:52: error: parse error on input ‘]’
10522 |
1052340 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10524 | ^
10525Failed, no modules loaded.
10526Prelude> :r
10527[1 of 2] Compiling Types ( src/Types.hs, interpreted )
10528
10529src/Types.hs:40:52: error: parse error on input ‘]’
10530 |
1053140 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10532 | ^
10533Failed, no modules loaded.
10534Prelude> :r
10535[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10536clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10537Ok, one module loaded.
10538*Main> :l src/Types.hs
10539[1 of 1] Compiling Types ( src/Types.hs, interpreted )
10540
10541src/Types.hs:40:52: error: parse error on input ‘]’
10542 |
1054340 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10544 | ^
10545Failed, no modules loaded.
10546Prelude> :r
10547[1 of 1] Compiling Types ( src/Types.hs, interpreted )
10548
10549src/Types.hs:40:52: error: parse error on input ‘]’
10550 |
1055140 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10552 | ^
10553Failed, no modules loaded.
10554Prelude> :l src/Test.hs
10555[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10556clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10557Ok, one module loaded.
10558*Main> :r
10559[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10560Ok, one module loaded.
10561*Main> :r
10562[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10563Ok, one module loaded.
10564*Main> :r
10565[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10566Ok, one module loaded.
10567*Main> :r
10568[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10569Ok, one module loaded.
10570*Main> :r
10571[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10572Ok, one module loaded.
10573*Main> :r
10574[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10575
10576src/Test.hs:124:52: error: parse error on input ‘]’
10577 |
10578124 | (CT.TypeName "sunindextype", [t| SunIndexType |] )
10579 | ^
10580Failed, no modules loaded.
10581Prelude> :r
10582[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10583
10584src/Test.hs:1:1: error:
10585 The IO action ‘main’ is not defined in module ‘Main’
10586 |
105871 | {-# LANGUAGE QuasiQuotes #-}
10588 | ^
10589Failed, no modules loaded.
10590Prelude> :r
10591[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10592Ok, one module loaded.
10593*Main> :r
10594[1 of 1] Compiling Foo ( src/Test.hs, interpreted )
10595Ok, one module loaded.
10596*Foo> :r
10597[1 of 1] Compiling Foo ( src/Test.hs, interpreted )
10598Ok, one module loaded.
10599*Foo> :l src/Types.hs
10600[1 of 1] Compiling Types ( src/Types.hs, interpreted )
10601Ok, one module loaded.
10602*Types> :l src/Test.hs
10603[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10604clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10605Ok, one module loaded.
10606*Main> :i sunctx
10607
10608<interactive>:1:1: error: Not in scope: ‘sunctx’
10609*Main> :r
10610[1 of 2] Compiling Types ( src/Types.hs, interpreted )
10611[2 of 2] Compiling Main ( src/Test.hs, interpreted )
10612clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10613Ok, two modules loaded.
10614*Main> :i sunctx
10615sunctx :: Context -- Defined at src/Types.hs:43:1
10616*Main> :r
10617[2 of 2] Compiling Main ( src/Test.hs, interpreted )
10618clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10619Ok, two modules loaded.
10620*Main> :r
10621[2 of 2] Compiling Main ( src/Test.hs, interpreted )
10622
10623src/Test.hs:118:19: error:
10624 • "src/Test.hs" (line 118, column 37):
10625unexpected "="
10626expecting "[", "(" or "{"
10627 • In the quasi-quotation:
10628 [C.block| sunindextype NEQ = 1; /* number of dependent vars. */
10629 return 0;
10630 |]
10631 |
10632118 | res <- [C.block| sunindextype NEQ = 1; /* number of dependent vars. */
10633 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
10634Failed, one module loaded.
10635*Types> :r
10636[2 of 2] Compiling Main ( src/Test.hs, interpreted )
10637clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10638Ok, two modules loaded.
10639*Main> :r
10640[2 of 2] Compiling Main ( src/Test.hs, interpreted )
10641clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10642Ok, two modules loaded.
10643*Main> :r
10644[2 of 2] Compiling Main ( src/Test.hs, interpreted )
10645clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10646Ok, two modules loaded.
10647*Main> :i sunindextype
10648
10649<interactive>:1:1: error: Not in scope: ‘sunindextype’
10650*Main> :r
10651[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10652clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10653Ok, one module loaded.
10654*Main> :r
10655[1 of 1] Compiling Main ( src/Test.hs, interpreted )
10656clang-5.0: warning: argument unused during compilation: '-nopie' [-Wunused-command-line-argument]
10657Ok, one module loaded.
10658*Main> \ No newline at end of file
diff --git a/packages/sundials/src/gsl-ode.hs b/packages/sundials/src/gsl-ode.hs
new file mode 100644
index 0000000..045fce1
--- /dev/null
+++ b/packages/sundials/src/gsl-ode.hs
@@ -0,0 +1,152 @@
1{-# LANGUAGE CPP #-}
2{-# LANGUAGE OverloadedStrings #-}
3{-# LANGUAGE TemplateHaskell #-}
4{-# LANGUAGE QuasiQuotes #-}
5{-# LANGUAGE MultiWayIf #-}
6import Data.Coerce (coerce)
7import Data.Monoid ((<>))
8import qualified Data.Vector.Storable as V
9import qualified Data.Vector.Storable.Mutable as VM
10import Foreign.C.Types
11import Foreign.ForeignPtr (newForeignPtr_)
12import Foreign.Ptr (Ptr)
13import Foreign.Storable (Storable)
14-- import qualified Graphics.Rendering.Chart.Backend.Cairo as Chart
15-- import qualified Graphics.Rendering.Chart.Easy as Chart
16import qualified Language.C.Inline as C
17import qualified Language.C.Inline.Unsafe as CU
18import System.IO.Unsafe (unsafePerformIO)
19
20-- #if __GLASGOW_HASKELL__ < 710
21-- import Data.Functor ((<$>))
22-- #endif
23
24C.context (C.baseCtx <> C.vecCtx <> C.funCtx)
25
26C.include "<gsl/gsl_errno.h>"
27C.include "<gsl/gsl_matrix.h>"
28C.include "<gsl/gsl_odeiv2.h>"
29
30-- | Solves a system of ODEs. Every 'V.Vector' involved must be of the
31-- same size.
32{-# NOINLINE solveOdeC #-}
33solveOdeC
34 :: (CDouble -> V.Vector CDouble -> V.Vector CDouble)
35 -- ^ ODE to Solve
36 -> CDouble
37 -- ^ Start
38 -> V.Vector CDouble
39 -- ^ Solution at start point
40 -> CDouble
41 -- ^ End
42 -> Either String (V.Vector CDouble)
43 -- ^ Solution at end point, or error.
44solveOdeC fun x0 f0 xend = unsafePerformIO $ do
45 let dim = V.length f0
46 let dim_c = fromIntegral dim -- This is in CInt
47 -- Convert the function to something of the right type to C.
48 let funIO x y f _ptr = do
49 -- Convert the pointer we get from C (y) to a vector, and then
50 -- apply the user-supplied function.
51 fImm <- fun x <$> vectorFromC dim y
52 -- Fill in the provided pointer with the resulting vector.
53 vectorToC fImm dim f
54 -- Unsafe since the function will be called many times.
55 [CU.exp| int{ GSL_SUCCESS } |]
56 -- Create a mutable vector from the initial solution. This will be
57 -- passed to the ODE solving function provided by GSL, and will
58 -- contain the final solution.
59 fMut <- V.thaw f0
60 res <- [C.block| int {
61 gsl_odeiv2_system sys = {
62 $fun:(int (* funIO) (double t, const double y[], double dydt[], void * params)),
63 // The ODE to solve, converted to function pointer using the `fun`
64 // anti-quoter
65 NULL, // We don't provide a Jacobian
66 $(int dim_c), // The dimension
67 NULL // We don't need the parameter pointer
68 };
69 // Create the driver, using some sensible values for the stepping
70 // function and the tolerances
71 gsl_odeiv2_driver *d = gsl_odeiv2_driver_alloc_y_new (
72 &sys, gsl_odeiv2_step_rk8pd, 1e-6, 1e-6, 0.0);
73 // Finally, apply the driver.
74 int status = gsl_odeiv2_driver_apply(
75 d, &$(double x0), $(double xend), $vec-ptr:(double *fMut));
76 // Free the driver
77 gsl_odeiv2_driver_free(d);
78 return status;
79 } |]
80 -- Check the error code
81 maxSteps <- [C.exp| int{ GSL_EMAXITER } |]
82 smallStep <- [C.exp| int{ GSL_ENOPROG } |]
83 good <- [C.exp| int{ GSL_SUCCESS } |]
84 if | res == good -> Right <$> V.freeze fMut
85 | res == maxSteps -> return $ Left "Too many steps"
86 | res == smallStep -> return $ Left "Step size dropped below minimum allowed size"
87 | otherwise -> return $ Left $ "Unknown error code " ++ show res
88
89solveOde
90 :: (Double -> V.Vector Double -> V.Vector Double)
91 -- ^ ODE to Solve
92 -> Double
93 -- ^ Start
94 -> V.Vector Double
95 -- ^ Solution at start point
96 -> Double
97 -- ^ End
98 -> Either String (V.Vector Double)
99 -- ^ Solution at end point, or error.
100solveOde fun x0 f0 xend =
101 coerce $ solveOdeC (coerce fun) (coerce x0) (coerce f0) (coerce xend)
102
103lorenz
104 :: Double
105 -- ^ Starting point
106 -> V.Vector Double
107 -- ^ Solution at starting point
108 -> Double
109 -- ^ End point
110 -> Either String (V.Vector Double)
111lorenz x0 f0 xend = solveOde fun x0 f0 xend
112 where
113 sigma = 10.0;
114 _R = 28.0;
115 b = 8.0 / 3.0;
116
117 fun _x y =
118 let y0 = y V.! 0
119 y1 = y V.! 1
120 y2 = y V.! 2
121 in V.fromList
122 [ sigma * ( y1 - y0 )
123 , _R * y0 - y1 - y0 * y2
124 , -b * y2 + y0 * y1
125 ]
126
127main :: IO ()
128main = undefined
129-- main = Chart.toFile Chart.def "lorenz.png" $ do
130-- Chart.layout_title Chart..= "Lorenz"
131-- Chart.plot $ Chart.line "curve" [pts]
132-- where
133-- pts = [(f V.! 0, f V.! 2) | (_x, f) <- go 0 (V.fromList [10.0 , 1.0 , 1.0])]
134
135-- go x f | x > 40 =
136-- [(x, f)]
137-- go x f =
138-- let x' = x + 0.01
139-- Right f' = lorenz x f x'
140-- in (x, f) : go x' f'
141
142-- Utils
143
144vectorFromC :: Storable a => Int -> Ptr a -> IO (V.Vector a)
145vectorFromC len ptr = do
146 ptr' <- newForeignPtr_ ptr
147 V.freeze $ VM.unsafeFromForeignPtr0 ptr' len
148
149vectorToC :: Storable a => V.Vector a -> Int -> Ptr a -> IO ()
150vectorToC vec len ptr = do
151 ptr' <- newForeignPtr_ ptr
152 V.copy (VM.unsafeFromForeignPtr0 ptr' len) vec
diff --git a/packages/sundials/src/helpers.c b/packages/sundials/src/helpers.c
new file mode 100644
index 0000000..3498119
--- /dev/null
+++ b/packages/sundials/src/helpers.c
@@ -0,0 +1,37 @@
1#include <stdio.h>
2#include "helpers.h"
3
4/* Check function return value...
5 opt == 0 means SUNDIALS function allocates memory so check if
6 returned NULL pointer
7 opt == 1 means SUNDIALS function returns a flag so check if
8 flag >= 0
9 opt == 2 means function allocates memory so check if returned
10 NULL pointer
11*/
12int check_flag(void *flagvalue, const char *funcname, int opt)
13{
14 int *errflag;
15
16 /* Check if SUNDIALS function returned NULL pointer - no memory allocated */
17 if (opt == 0 && flagvalue == NULL) {
18 fprintf(stderr, "\nSUNDIALS_ERROR: %s() failed - returned NULL pointer\n\n",
19 funcname);
20 return 1; }
21
22 /* Check if flag < 0 */
23 else if (opt == 1) {
24 errflag = (int *) flagvalue;
25 if (*errflag < 0) {
26 fprintf(stderr, "\nSUNDIALS_ERROR: %s() failed with flag = %d\n\n",
27 funcname, *errflag);
28 return 1; }}
29
30 /* Check if function returned NULL pointer - no memory allocated */
31 else if (opt == 2 && flagvalue == NULL) {
32 fprintf(stderr, "\nMEMORY_ERROR: %s() failed - returned NULL pointer\n\n",
33 funcname);
34 return 1; }
35
36 return 0;
37}
diff --git a/packages/sundials/src/helpers.h b/packages/sundials/src/helpers.h
new file mode 100644
index 0000000..d574ff5
--- /dev/null
+++ b/packages/sundials/src/helpers.h
@@ -0,0 +1 @@
int check_flag(void *flagvalue, const char *funcname, int opt);