Closed h4ck3rm1k3 closed 5 years ago
Server is running origin/cardano-sl-1.0 front end is running daedalus master
Here is where it is happening in request.js
response.on('end', () => {
const parsedBody = JSON.parse(body);
The this.req.res.statusCode== 404 and is not being checked.
Now there are two files that look very similar: https://github.com/input-output-hk/daedalus/blob/master/app/api/etc/lib/request.js#L36 and https://github.com/input-output-hk/daedalus/blob/master/app/api/ada/lib/request.js#L75
Body is empty:
The incoming message is a 404 not found!
IncomingMessage {_readableState: ReadableState, readable: false, domain: null, _events: EventHandlers, _eventsCount: 3…}
statusCode:404
statusMessage :"Not Found"
The request is "/api/settings/time/difference"
Here is what I found in the _header : .req.socket._httpMessage._header
"GET /api/settings/time/difference HTTP/1.1 Host: localhost:8090 Connection: close"
same here, what to do? (Arch Linux)
You need to upgrade the backend to the one including the backend https://github.com/input-output-hk/cardano-sl/blob/58bd3caab1779b2cd71f0298bc18f766cdd80ab8/wallet-new/server/Cardano/Wallet/API/V1/Handlers/Info.hs
I have finally managed to build the wallet GUI running everything on a Ubuntu VM and now my wallet is stuck too on 100%. Just read here that I have to upgrade the back end. You gotta be kidding me...
@zmeel i was able to run the wallet and cardano successfully (already created a wallet on arch linux) both with the help of https://github.com/hcvst/cardano-daedalus-docker
@madnight I have seen that Docker image and tried it. It is functional but I like to build my own binaries just for security reasons. Yesterday, I was a bit frustrated because I build everything on my NAS which is not a CPU monster. Building time is around 2 hours. I just discovered I had to build again with an upgrade...
Oke, back again. I have now the backend and the middleware running on my Synology NAS and the frontend wallet on my MacBook. It has been syncing for a good 2 hours and now is stuck again on 100%. I thought I had the right Cardano-sl backend but apparently not.
@h4ck3rm1k3 How do I use this version?
ok, what versions are you running and are you getting this error https://github.com/input-output-hk/daedalus/issues/611
@h4ck3rm1k3 I have build cardano-sl from master and indeed same error as in #611 and thus same as madnight shows few posts up.
Ok the solution for that is to make sure you have a server that implements that API. https://github.com/h4ck3rm1k3/cardano-sl my branch works for sure
On Sat, Dec 23, 2017 at 11:15 AM, Erik van Hannen notifications@github.com wrote:
@h4ck3rm1k3 https://github.com/h4ck3rm1k3 I have build from master and indeed same error as in #611 https://github.com/input-output-hk/daedalus/issues/611 and thus same as madnight shows few posts up.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-353734475, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIV_hIjetWnSXEjnGfXMhgGer2NKDzks5tDScUgaJpZM4RE5DM .
-- James Michael DuPont
I will try that branch...
Oke. Next try, next fail. Stuck at 100% again.
@h4ck3rm1k3 I have build from cardano-sl master but made a change to daedalus/package.json I found in your fork. Apparently, that was not enough. Can you please tell me which change resolves the stuck at 100%?
I really like to build from the original cardano-sl source for obvious reasons.
I did not change any important source, I just branched at some point and added docs. The package json change is is not important. The change you need is to have the time api implemented. I assumed you synced your clocks with ntp.
So from my understanding the code that implements that time diff api is around here https://github.com/h4ck3rm1k3/cardano-sl/blob/master/wallet-new/server/Cardano/Wallet/API/V1/Handlers/Info.hs#L37
So, I will do some more diagnostics on this after christmas, I have a lot of family here now.
On Sun, Dec 24, 2017 at 12:46 PM, Erik van Hannen notifications@github.com wrote:
Oke. Next try, next fail. Stuck at 100% again.
@h4ck3rm1k3 https://github.com/h4ck3rm1k3 I have build from cardano-sl master but made a change to daedalus/package.json I found in your fork https://github.com/h4ck3rm1k3/cardano-sl/commit/a0689daf3697147829876cf2aabe61a2072f5898. Apparently, that was not enough. Can you please tell me which change resolves the stuck at 100%?
I really like to build from the original cardano-sl source for obvious reasons.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-353796122, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIV1NV8zKD2XWS8j6_jsWiiUvf4p6oks5tDo3qgaJpZM4RE5DM .
-- James Michael DuPont
@h4ck3rm1k3 Merry Christmas, James!
So running this api call :
https://localhost:8090/api/settings/time/difference
returns :
{"Right":0}
What does your server return?
On Mon, Dec 25, 2017 at 6:39 AM, Erik van Hannen notifications@github.com wrote:
@h4ck3rm1k3 https://github.com/h4ck3rm1k3 Merry Christmas, James!
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-353863373, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIVwAp2Ncg8zgWp0dZ2op942nznvT4ks5tD4ligaJpZM4RE5DM .
-- James Michael DuPont
HTTP/1.1 404 Not Found
I don't have that API. I can run curl --cacert ca.crt -v https://localhost:8090/api/settings/sync/progress
. That gives:
{"Right":{"_spLocalCD":{"getChainDifficulty":{"getBlockCount":400729}},"_spNetworkCD":{"getChainDifficulty":{"getBlockCount":400729}},"_spPeers":0}}
So I can make API call but no luck with https://localhost:8090/api/settings/time/difference
so now tell me what version of the software are you running on that port? It looks like the binary that is running is not the one I expected,
mdupont@debian-build-speed:~$ lsof -i :8090
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
cardano-n 8110 mdupont 36u IPv4 7305209 0t0 TCP localhost:8090->localhost:56702 (ESTABLISHED)
cardano-n 8110 mdupont 46u IPv4 6949415 0t0 TCP localhost:8090 (LISTEN)
cardano-n 8110 mdupont 47u IPv4 7305195 0t0 TCP localhost:8090->localhost:56686 (ESTABLISHED)
mdupont@debian-build-speed:~$ lsof -p 8110
cardano-n 8110 mdupont txt REG 254,0 69562056 1801550 /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node
mdupont@debian-build-speed:~$ /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node --version
cardano-node-1.0.3, git revision 5e1a168
mdupont@debian-build-speed:~/experiments/cardano-sl$ git log 5e1a168
commit 5e1a1684dc0abb7fe67c892f254c7c34937d2cf6
Merge: 814d836 742e1a0
Author: Ivan Gromakovskii <gie1994@gmail.com>
Date: Fri Dec 15 18:35:40 2017 +0300
Merge pull request #2124 from input-output-hk/cardano-sl-1.0
Merge cardano-sl-1.0
https://github.com/input-output-hk/cardano-sl/commit/5e1a1684dc0abb7fe67c892f254c7c34937d2cf6
I will have to look into this more
mdupont@debian-build-speed:~/experiments/cardano-sl$ md5sum /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node 170185337d44b31c2de507589bfa7683 /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node
zmeel@5654cf075629:~/cardano-sl$ lsof -i :8090 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME cardano-n 11619 zmeel 43u IPv4 60521277 0t0 TCP localhost:8090 (LISTEN)
zmeel@5654cf075629:~/cardano-sl$ lsof -p 8110 zmeel@5654cf075629:~/cardano-sl$
zmeel@5654cf075629:/nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin$ ./cardano-node --version cardano-node-1.0.3
what revision are you on? what md5sum?
zmeel@5654cf075629:~/cardano-sl$ md5sum /nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin/cardano-node dc8ee7162440df2ddb0897846983aeb4 /nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin/cardano-node
I don't have the time diff api. There is no wallet-new folder in my cardano-sl folder. I have build from master. Branch cardano-sl-1.0 is not there anymore:
zmeel@5654cf075629:~/cardano-sl$ git checkout cardano-sl-1.0 error: pathspec 'cardano-sl-1.0' did not match any file(s) known to git.
It is a bit of a mess. I have opened an issue on the stuck at 100% problem.
I'm building now from branch develop. Then wallet-new with time-diff api is there. This will take some time...
Again stuck at 100%. Also no luck with the API:
root@5654cf075629:/etc/ssl/certs# curl --cacert ca.crt -v https://localhost:8090/api/settings/time/difference * Trying 127.0.0.1... * TCP_NODELAY set * Connected to localhost (127.0.0.1) port 8090 (#0) * ALPN, offering http/1.1 * Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH * successfully set certificate verify locations: * CAfile: ca.crt CApath: /etc/ssl/certs * TLSv1.2 (OUT), TLS header, Certificate Status (22): * TLSv1.2 (OUT), TLS handshake, Client hello (1): * TLSv1.2 (IN), TLS handshake, Server hello (2): * TLSv1.2 (IN), TLS handshake, Certificate (11): * TLSv1.2 (IN), TLS handshake, Server key exchange (12): * TLSv1.2 (IN), TLS handshake, Server finished (14): * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): * TLSv1.2 (OUT), TLS change cipher, Client hello (1): * TLSv1.2 (OUT), TLS handshake, Finished (20): * TLSv1.2 (IN), TLS change cipher, Client hello (1): * TLSv1.2 (IN), TLS handshake, Finished (20): * SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384 * ALPN, server accepted to use http/1.1 * Server certificate: * subject: DC=io; DC=iohk; O=Input Output HK; OU=Cardano Settlement Layer Server Node; CN=localhost * start date: Jul 19 17:31:34 2017 GMT * expire date: Jul 19 17:31:34 2027 GMT * common name: localhost (matched) * issuer: DC=io; DC=iohk; O=Input Output HK; OU=Daedalus Self-Signed Root CA; CN=Daedalus Self-Signed Root CA * SSL certificate verify ok. > GET /api/settings/time/difference HTTP/1.1 > Host: localhost:8090 > User-Agent: curl/7.55.1 > Accept: */* > < HTTP/1.1 404 Not Found < Transfer-Encoding: chunked < Date: Mon, 25 Dec 2017 22:31:29 GMT < Server: Warp/3.2.13 < * Connection #0 to host localhost left intact
but what version are you running?
I have 3 different nodes on my machine.
The one does not have a version string after the cardano-node-1.0.3, others do, so I am doubtig you are using the right version. Please double check you are executing the right cardano-node that you built. It is very easy to get lost and confused with nix.
locate cardano-node | grep bin/ | grep cardano-node$
This shows me 3 different versions: /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node /nix/store/6rjxsy8cr9ixqcdi1zhfgyrrvfrps14d-cardano-sl-wallet-1.0.3/bin/cardano-node /nix/store/qihq1fn2rh2n1n5m0c0x4w3129vx1l6m-cardano-sl-wallet-1.0.3/bin/cardano-node
Looking at the version strings :
/home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node --version
cardano-node-1.0.3, git revision 5e1a168
/nix/store/6rjxsy8cr9ixqcdi1zhfgyrrvfrps14d-cardano-sl-wallet-1.0.3/bin/cardano-node --version
cardano-node-1.0.3
/nix/store/qihq1fn2rh2n1n5m0c0x4w3129vx1l6m-cardano-sl-wallet-1.0.3/bin/cardano-node --version
cardano-node-1.0.3, git revision 5e1a1684dc0abb7fe67c892f254c7c34937d2cf6
mdupont@debian-build-speed:~/experiments/cardano-sl$ md5sum /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node /nix/store/6rjxsy8cr9ixqcdi1zhfgyrrvfrps14d-cardano-sl-wallet-1.0.3/bin/cardano-node /nix/store/qihq1fn2rh2n1n5m0c0x4w3129vx1l6m-cardano-sl-wallet-1.0.3/bin/cardano-node
170185337d44b31c2de507589bfa7683 /home/mdupont/experiments/cardano-sl/.stack-work/install/x86_64-linux-nopie/lts-9.1/8.0.2/bin/cardano-node
c7bc65dc4e8ad565106049da072d23a2 /nix/store/6rjxsy8cr9ixqcdi1zhfgyrrvfrps14d-cardano-sl-wallet-1.0.3/bin/cardano-node
b6dbfc9dbbb9e45e1555a76d66a7caa8 /nix/store/qihq1fn2rh2n1n5m0c0x4w3129vx1l6m-cardano-sl-wallet-1.0.3/bin/cardano-node
After I built in my directory :
lrwxrwxrwx 1 mdupont mdupont 60 Dec 18 08:31 cardano-sl-master -> /nix/store/vpm4c2kq5p5wzrijziljasjc0z9ckggl-cardano-sl-1.0.3
lrwxrwxrwx 1 mdupont mdupont 60 Dec 18 09:40 cardano-sl-1.0 -> /nix/store/vpm4c2kq5p5wzrijziljasjc0z9ckggl-cardano-sl-1.0.3
lrwxrwxrwx 1 mdupont mdupont 67 Dec 18 09:53 result -> /nix/store/qihq1fn2rh2n1n5m0c0x4w3129vx1l6m-cardano-sl-wallet-1.0.3
Looking at that it shows mdupont@debian-build-speed:~/experiments/cardano-sl$/nix/store/qihq1fn2rh2n1n5m0c0x4w3129vx1l6m-cardano-sl-wallet-1.0.3/bin/cardano-node --version cardano-node-1.0.3, git revision 5e1a1684dc0abb7fe67c892f254c7c34937d2cf6
But this is not the version that I have checked out, as confirmed before. I am going to clean and rebuild everything.
Reviewing my build notes https://github.com/h4ck3rm1k3/cardano-sl I am going to rebuild it from there, removing the temp files going to double check everything.
https://github.com/h4ck3rm1k3/cardano-sl I have added my build logs, connect logs and full instructions. Using my build version is working just the same as the previous version, it seems I did something wrong and was off by a commit hash but nothing critical.
I posted all my versions and instructions, please check and let me know if you have any problems.
Up till now I have build cardano-sl through nix-build:
nix-build -A cardano-sl-static --cores 0 --max-jobs 2 --no-build-output --out-link cardano-sl-1.0
Currently, I'm trying out:
/scripts/build/cardano-sl.sh
Did you build it inside the nix-shell?
Edit 1: I have tried building it with the /scripts/build/cardano-sl.sh script but having trouble with the rocksdb library. Going back to nix-build...
Edit 2: Btw, there is a small mistake in your repository. I believe you build according to the Stack with Nix for system libraries (mixed mode) and not the Nix build mode (recommended).
Edit 3: Build is finished. I have the following version:
root@5654cf075629:/home/zmeel/cardano-sl# locate cardano-node | grep bin/ | grep cardano-node$ /nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin/cardano-node /nix/store/mqgqppwk1c60p6r5p05g9vb9kz9c3k8b-cardano-sl-wallet-1.0.3/bin/cardano-node
root@5654cf075629:/home/zmeel/cardano-sl# /nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin/cardano-node --version cardano-node-1.0.3 root@5654cf075629:/home/zmeel/cardano-sl# /nix/store/mqgqppwk1c60p6r5p05g9vb9kz9c3k8b-cardano-sl-wallet-1.0.3/bin/cardano-node --version cardano-node-1.0.3, git revision e7b3d29432e467337eebf8c8ad5d0bf52f13d652
root@5654cf075629:/home/zmeel/cardano-sl# md5sum /nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin/cardano-node /nix/store/mqgqppwk1c60p6r5p05g9vb9kz9c3k8b-cardano-sl-wallet-1.0.3/bin/cardano-node dc8ee7162440df2ddb0897846983aeb4 /nix/store/fn9yzqnig8xrqpvqhb23gz5l7iwq49xd-cardano-sl-wallet-1.0.3/bin/cardano-node 76a3153ff2333e409c7803ef37c7f287 /nix/store/mqgqppwk1c60p6r5p05g9vb9kz9c3k8b-cardano-sl-wallet-1.0.3/bin/cardano-node
I have only 2 version. I'm lacking the stack version in .stack/...
Edit 4: This is my setup
I setup the build like for the nix build
This is in my env : NIX_LINK=/home/mdupont/.nix-profile NIX_PATH=nixpkgs=/home/mdupont/.nix-defexpr/channels/nixpkgs NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
I setup the nix to run, but it does not seem to build the binaries, the stack build works. Just reran the build and it works. This is outside the nix-shell. I am not using nix-shell.
On Tue, Dec 26, 2017 at 1:49 AM, Erik van Hannen notifications@github.com wrote:
Up till now I have build cardano-sl through nix-build:
nix-build -A cardano-sl-static --cores 0 --max-jobs 2 --no-build-output --out-link cardano-sl-1.0
Currently, I'm trying out:
/scripts/build/cardano-sl.sh
Did you build it inside the nix-shell?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-353927508, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIV4N9y1Uy3382sM6HIuuPodW6g06lks5tEJbqgaJpZM4RE5DM .
-- James Michael DuPont
Again no luck. Syncing stuck on 100.00%. I have checked but again no time diff api. Maybe the different build methods (nix-build vs stack) is the problem. I'm lost and hoping a developer could shed some light on this issue...
try the stack instructions. This works. Also look if you are building different versions of the binary on your system.
Erik, I am trying to help you but you can at least give the things a try that I found out. Please try the stack install. mdupont@debian-build-speed:~/experiments/cardano-sl$ stack --version Version 1.5.1, Git revision 600c1f01435a10d127938709556c1682ecfd694e (4861 commits) x86_64 hpack-0.17.1 see https://github.com/commercialhaskell/stack/blob/master/doc/install_and_upgrade.md
On Tue, Dec 26, 2017 at 7:31 AM, Erik van Hannen notifications@github.com wrote:
Again no luck. Syncing stuck on 100.00%. I have checked but again no time diff api. Maybe the difference build method (nix-build vs stack) is the problem. I'm lost and hoping a developer could shed some light on this issue...
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-353963586, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIV87f72E1sFdjSSITKs2LEdtk9j1iks5tEOcLgaJpZM4RE5DM .
-- James Michael DuPont
Hi James,
I'm sorry that I gave you the impression I didn't try your suggestions. I have tried them all but unfortunately, the don't work out yet. I have tried building with the stack method yesterday, but (as I wrote) have difficulties with the rocksdb libraries. I have tried that on my docker Ubuntu and on my Ubuntu virtual machine (running on my MacBook Pro). Up til now, I have not runnpm install
in the nix-shell. I'm going to try that tonight. About the versions. I checked the version from my last build. They are up to par (did you see my previous messages?). They are al 1.0.3.
One more thing. This time difference API you have in your version of the node is not mentioned in the documents (here). How did you found out about this API? Are you sure that the absence of this API in my node is the reason I get stuck at 100% syncing?
Edit 1: Never mind. I have read everything in the first few message of this thread but as far as I understand it this API is in the daedalus software and not in the cardano-sl. I have not rebuild the Daedalus middleware and frontend yet. Maybe, I should give that a try...
Look at this bug report that we are talking about. This came from my research, As soon as I upgraded the back end it worked. Try running a debian sid vm like I have, the rocksdb works out of the box.
On Wed, Dec 27, 2017 at 2:18 AM, Erik van Hannen notifications@github.com wrote:
One more thing. This time difference API you have in your version of the node is not mentioned in the documents (here https://cardanodocs.com/technical/wallet/api/). How did you found out about this API? Are you sure that the absence of this API in my node is the reason I get stuck at 100% syncing?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-354066219, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIV2mzK08uMCOSOlVnexZoAxbqgNFAks5tEe9agaJpZM4RE5DM .
-- James Michael DuPont
James, I have the feeling you read my comments only from the emails, is that correct? I have edited a lot of my comments after I have submitted them. If so, please read my comments on Github...
yes, I am getting email notifications and responding to them. As for this issue, I am going to setup a clean build of this in a docker or something to test again and document every single step when I have time.
On Wed, Dec 27, 2017 at 6:19 AM, Erik van Hannen notifications@github.com wrote:
James, I have the feeling you read my comments only from the emails, is that correct? I have edited a lot of my comments after I have submitted them. If so, please read my comments on Github...
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-354099100, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIVxPyWoJpOdEkrj-xcuFC9z9J9ZLcks5tEiewgaJpZM4RE5DM .
-- James Michael DuPont
Okay, that explains things. If you have time, please reread my comments on Github. I have added a lot of info to many of my comments. At the moment, I don't believe the cardano-sl backend is causing my 100% syncing problem. It is the Daedalus wallet software that needs to be upgraded...
Ok, so I have rebuilt the cardno sl node with nix from scratch, after clearing nix.
mdupont@debian-build-speed:~/experiments/cardano-sl$ sudo rm -rf /nix
mdupont@debian-build-speed:~/experiments/cardano-sl$ curl https://nixos.org/nix/install | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2471 100 2471 0 0 4340 0 --:--:-- --:--:-- --:--:-- 4335
downloading Nix 1.11.16 binary tarball for x86_64-linux from 'https://nixos.org/releases/nix/nix-1.11.16/nix-1.11.16-x86_64-linux.tar.bz2' to '/tmp/nix-binary-tarball-unpack.FHsShrsiJ9'...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 28.6M 100 28.6M 0 0 992k 0 0:00:29 0:00:29 --:--:-- 1140k
performing a single-user installation of Nix...
directory /nix does not exist; creating it by running ‘mkdir -m 0755 /nix && chown mdupont /nix’ using sudo
copying Nix to /nix/store.................................
initialising Nix database...
installing ‘nix-1.11.16’
building path(s) ‘/nix/store/y1486f96a93z3l0qj7b1q324az3vvfch-user-environment’
created 6 symlinks in user environment
downloading Nix expressions from ‘https://d3g5gsiof5omrk.cloudfront.net/nixpkgs/nixpkgs-18.03pre123609.93829f1b031/nixexprs.tar.xz’...
downloading ‘https://d3g5gsiof5omrk.cloudfront.net/nixpkgs/nixpkgs-18.03pre123609.93829f1b031/nixexprs.tar.xz’... [8671/9507 KiB, 1718.2 KiB/s]
unpacking channels...
created 2 symlinks in user environment
Installation finished! To ensure that the necessary environment
variables are set, either log in again, or type
. /home/mdupont/.nix-profile/etc/profile.d/nix.sh
in your shell.
mdupont@debian-build-speed:~/experiments/cardano-sl$ . /home/mdupont/.nix-profile/etc/profile.d/nix.sh
mdupont@debian-build-speed:~/experiments/cardano-sl$ nix-build --check -A cardano-sl-wallet --cores 0 --max-jobs 2 --no-build-output --out-link cardano-sl-1.0fetching path ‘/nix/store/mz8k9ldyi6bz5wdq6xpmf3s3vqw3w5mn-61fbdb47a69f78998f55207e64122a0798047b5d.tar.gz-unpacked’...
*** Downloading ‘https://hydra.iohk.io/nar/mz8k9ldyi6bz5wdq6xpmf3s3vqw3w5mn-61fbdb47a69f78998f55207e64122a0798047b5d.tar.gz-unpacked’ to ‘/nix/store/mz8k9ldyi6bz5wdq6xpmf3s3vqw3w5mn-61fbdb47a69f78998f55207e64122a0798047b5d.tar.gz-unpacked’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 11.9M 0 11.9M 0 0 533k 0 --:--:-- 0:00:23 --:--:-- 638k
warning: dumping very large path (> 256 MiB); this may run out of memory
these derivations will be built:
/nix/store/zp1cp5sgim2kg91id1hpfq1ahk637qlb-remove-references-to.drv
/nix/store/hyw79sdcc3iskgl54cabzikpfr5p7fv1-cardano-sl-networking-1.0.3.drv
/nix/store/awlh3sk7fcgnmqnshpjdjy82914by4al-cardano-sl-util-1.0.3.drv
/nix/store/nj87asq130hynh9d1lxqfva3znmfx71n-cardano-sl-binary-1.0.3.drv
/nix/store/a3x2w9zj17f7537fhamp4k57ny80z0nk-cardano-sl-crypto-1.0.3.drv
/nix/store/ps2hljh7w8a95zp024fgcwbcfaq1n76r-cardano-sl-core-1.0.3.drv
/nix/store/bhaxxp3x8qbhpg4lv19q0f60q7dffyf0-cardano-sl-db-1.0.3.drv
/nix/store/28c80kr0gnj3qx3g76pxj8nbd9pmn6hy-cardano-sl-infra-1.0.3.drv
/nix/store/r3q52ag6pmrij4fqaza8ijaxkhdhcpb8-cardano-sl-lrc-1.0.3.drv
/nix/store/2gq0226ymf5z4ivqqwspa0skrwk1yf2j-cardano-sl-update-1.0.3.drv
/nix/store/5j2k0igkm1piypkvlf87n83f60kpff9p-cardano-sl-ssc-1.0.3.drv
/nix/store/d3sb4nncd2w6v2sgm65gqi53357nyp2i-cardano-sl-txp-1.0.3.drv
/nix/store/j91qymc383vn8lzx7xzgyw38g1n2qqcx-cardano-sl-delegation-1.0.3.drv
/nix/store/rnraz217gvwhr09bm828jyfk8a04jjc4-cardano-sl-block-1.0.3.drv
/nix/store/ly1w5pby699grak1q53dkvizyc0szbnl-cardano-sl-1.0.3.drv
/nix/store/dj0i58g3zm59m21l5x6bxq4qbl5cah92-cardano-sl-client-1.0.3.drv
/nix/store/j4cyz9ymql4djcjk3f7jfrqbdqfz1fn8-cardano-sl-generator-1.0.3.drv
/nix/store/hpzmi7fl5jqmbw5qpcs6bx6wgk3cfmp9-cardano-sl-wallet-1.0.3.drv
these paths will be fetched (145.46 MiB download, 2260.99 MiB unpacked):
/nix/store/00h4yapkvslcbwnb2ymmqr4485pggf81-split-0.2.3.2
/nix/store/0f438n0s414jkbacgj2kf9jfg3hrql3x-mmorph-1.0.9
/nix/store/0hx866jack2dln98fy3b0yzvix1hb9i3-base64-bytestring-1.0.0.1
/nix/store/0iw9nb2b0pllrcb2qh3cvi7n8mxg454z-clock-0.7.2
/nix/store/0q117q9i6jqf6xv9bkcm9p7yidypq7dg-http-types-0.9.1
/nix/store/0vrpw8p43yf8dk5rn1yh796fzqqx8vgy-cryptohash-md5-0.11.100.1
/nix/store/13nn2l0pvc3jy8vc2y8dh6nipl28y64c-natural-transformation-0.4
/nix/store/14jfpvbn52yf4whf95h8g18yhl3fqxmw-cardano-report-server-0.4.0
/nix/store/15izg48mmq14bzmx9mhmd25cbcsf6972-lzma-conduit-1.1.3.3
/nix/store/1682bnncb7rllsi29dhmgglc8vdcixwz-digest-0.0.1.2
/nix/store/1agf19q8cwb0655ha8hj8p4gzw0nlml6-servant-generic-0.1.0.1
/nix/store/1f8h4rchmgdl673ns66m3gp8956bf39b-pvss-0.2.0
/nix/store/1gc7s8kp8avq0m5jalji7ska35bghhyk-servant-blaze-0.7.1
/nix/store/1gy5r9sclpxspyggsm7k7i0gvyz8wgr3-hspec-expectations-0.8.2
/nix/store/1m6znb1ykgs122pv5m2na9f8p2x9qnhs-polyparse-1.12
/nix/store/1mhdpjjzr158c7a9y7cqb0hnmfkrgpac-transformers-base-0.4.4
/nix/store/1r2mziqg5dinv6r82wvvcfgmmkqc833y-blaze-html-0.9.0.1
/nix/store/1x6dpsf7iv51sw4xnpqhdw537hqimspk-tls-session-manager-0.0.0.1
/nix/store/220siz2yiawgx6i3jj9cki3lpn2ladx4-x509-store-1.6.5
/nix/store/26akzw7cij5ir5v28w8977jw4r69pl7f-stringsearch-0.3.6.6
/nix/store/296b4qcwk12xg605dyxmmb4pd6cdkq4y-concurrent-extra-0.7.0.10
/nix/store/2a8q4a7pvwf9p3whzrgd7s03nqp7n3xm-pem-0.2.2-data
/nix/store/2d2in2wqdgxr0p210lv17dvxibpnfw49-gmp-6.1.2-dev
/nix/store/2gx9z100j14w9470psd54fn49pkxkac4-SHA-1.6.4.2
/nix/store/2hkqg60k762v26m46bhqglna5y2i191p-cborg-0.1.1.0
/nix/store/2i6dgq94k9r2j33zf1101q81nnfsk70z-safecopy-0.9.3.2
/nix/store/2nm6698lr3kz0s62m8g830vakm0v1v61-network-transport-tcp-0.5.1
/nix/store/2sciak1xd9rfmx5gj74r7n2bl21g7f5i-formatting-6.2.4
/nix/store/2xbf9821arvcfxawy0lxhblgriqqwzl1-ether-0.5.1.0
/nix/store/312pd1gdk3knifhfrxccjd081w3bl61x-deriving-compat-0.3.6
/nix/store/367p0r6j9ldanhhfkcmrny0vplx078sm-canonical-json-0.5.0.0
/nix/store/36yfplwgbp18acf4hy1fmwb5dvdcnqyx-scrypt-0.5.0
/nix/store/37bv200k7xpqibdcb3hg8krcgxvmw0kl-log-warper-1.3.4
/nix/store/37qk8jwdijf21z9rykmj44z8b9ap2vgc-blaze-builder-0.4.0.2
/nix/store/3d97lrilf8fsp172gi3lqk80qvzccpv5-tagged-0.8.5
/nix/store/3dy8mz2x9fs5hjwyyzphxrz8ir24dp07-acid-state-0.14.2
/nix/store/40xjxxc8b48ml760fk2wy4ya8xdidkp5-base-prelude-1.2.0.1
/nix/store/417s4ypir4h9hxnrw759d479c556ijng-aeson-pretty-0.8.5
/nix/store/42wyaijdy7v979krqvdbb06zym3d9fb4-network-info-0.2.0.8
/nix/store/43inmkznjb7kcpgnhy3jcqwq5ai0pn40-random-1.1
/nix/store/44dbwrwfy6lj45jy02d0rjbj9930nwf3-patch-2.7.5
/nix/store/4c44v8fs8dzjmkxhr0xm19rh67v5a5g7-unix-time-0.3.7
/nix/store/4d363sp2wl8k1ig84n680sag5fhrr728-stm-2.4.4.1
/nix/store/4g0hn88h2qg703d55f4c8fni1qkm6kds-pem-0.2.2
/nix/store/4l7lzqjvm1y0nvf2s2vfiz6iy6xlajmf-uuid-1.3.13
/nix/store/50h9s25lzbs3a8s3rvpd02vj6l28din8-glibc-2.25-49-bin
/nix/store/52pys1ks83d4jjq2cyis4p5q150h5nmm-writer-cps-mtl-0.1.1.4
/nix/store/5a39g6k7lmbv4cwkxplhpjbxfbzzj8cm-mtl-2.2.1
/nix/store/5dnva19r2z20jahsx3jxm565qwjxsynl-bzip2-1.0.6.0.1
/nix/store/5jqrghdyinlagqv1wid5k16slli3izff-transformers-lift-0.2.0.1
/nix/store/5v9basc3pha9j9zd1wbd3lrl6bq8zlg3-profunctors-5.2.1
/nix/store/5y5sqmi8zv6zbmap3sng48swmp787845-distributive-0.5.3
/nix/store/63smavrcrn6ybrq4wmnxxvp6rr9dla73-vector-0.12.0.1
/nix/store/69anj95a05igj74ml9i3887qib61pkk9-unexceptionalio-0.3.0
/nix/store/69ps1410fmahvwx88g2kj1hvic7h5cnh-word8-0.1.3
/nix/store/6dvz5ydy72285qmf4d0xwdir6kblx4qv-lifted-base-0.2.3.11
/nix/store/6iz0bqx3a3qc8jfxmn001h80ixd3qr10-network-2.6.3.2
/nix/store/6y968gbrr2qwc7jjzhlyw03i8m4bmfiy-abstract-par-0.3.3
/nix/store/7fk1l6p1lmss8mq1w8v994mlqgk0wqmb-serokell-util-0.5.2
/nix/store/7h1k843sjgadwkg3var4p31l3axgp4k3-ekg-statsd-0.2.2.0
/nix/store/7q867i8kpvjcl7985jsykj773j5hi7a6-th-expand-syns-0.4.3.0
/nix/store/7vdmk8w2y59zdd0w83g5ghfijdksrbk3-generics-sop-0.3.1.0
/nix/store/7wfvdb91qjl420zb42vi6inlscpbjrrw-comonad-5.0.2
/nix/store/7ydrnkyarbpd3qa3fzhg8ms6nnl70g3l-lz4-131
/nix/store/7yj6x2spcq8bk8c4rxij76h36h9559sb-expand-response-params
/nix/store/7zvmpws8gsp4vz3pdd91zzdz0l22dkhp-th-utilities-0.2.0.1
/nix/store/82sr919h30qm5cjmb1k5zcfnprgaxgd3-cereal-0.5.4.0
/nix/store/83389b5ipswbrw2ypr6p0kvi3zlbd2wm-http-client-tls-0.3.5.1
/nix/store/846prn83isabk6z22zparmfnm9b9fl3s-vector-algorithms-0.7.0.1
/nix/store/85517imxlc4jjm583nva4arb2h41aa0q-asn1-types-0.3.2
/nix/store/871adhqrxl37bpi5w9g9g6y0i1n4f9cd-findutils-4.6.0
/nix/store/89g1viy6l1cxgrmmqwckxkzfvp4lka8c-text-1.2.2.2
/nix/store/8g2x5qjqyv9a7glmvpzv1wylnbf1cwvw-gnumake-4.2.1
/nix/store/8i9xl98kswgbani8bkrxr023nh4i51k5-attr-2.4.47
/nix/store/8w8l115477a7psa0qbaj6jdwb7w36qrw-quickcheck-instances-0.3.12
/nix/store/8yyv3ad330rqnzmwm4w1kn0ab45ja21b-string-conversions-0.4.0.1
/nix/store/928nq1zrxim4pgg598bx5xqprv1490s2-asn1-parse-0.9.4
/nix/store/95hl7clrx0zrz6g6javxpcjx3z849y5w-yaml-0.8.23.3
/nix/store/976cfb758rav7wy576mzsfn62vhz78h3-setenv-0.1.1.3
/nix/store/9a9x0c6wmwvz2drppkq89c0rfivxdx7b-base-compat-0.9.3
/nix/store/9b1f2a3fhmmjav8l4z65c6vli2c97myh-byteorder-1.0.4
/nix/store/9c4w6cvif6qk84nrkz0r4gqr7vc7nbis-base-orphans-0.6
/nix/store/9j420kzl4l0qap5q5y546fjq5npybdad-base16-bytestring-0.1.1.6
/nix/store/9j72vyzlcikn12l72nhdig7sksc0z38c-google-gflags-2.2.0
/nix/store/9kirmbq1n3v4vfvdwzb98ra4plldylna-http2-1.6.3
/nix/store/9lcc4nlw2ygx7shk5kaqbgv6sd3n7jq0-http-api-data-0.3.7.1
/nix/store/9pi46g09vaii0cyi9zrba280q7wqsm2r-x509-validation-1.6.9
/nix/store/a9chdxli5b0kd1l7mg25q2r676ndwwvv-hex-0.1.2
/nix/store/abk6h8g0hj6dyk75h320mgls3ygshl0w-gzip-1.8
/nix/store/abnxr6ah99b56zkirqm63x38sch2zaqq-prelude-extras-0.4.0.3
/nix/store/afs50wwrblgpnmva9ibzdjv7nqr7b6y3-jemalloc-4.5.0
/nix/store/agh70w6vxhw8i7lcsqwnga818yc7p6yx-cpphs-1.20.8
/nix/store/an78i15sinqah1lqxq93r4grz5dphsq7-data-default-instances-dlist-0.0.1
/nix/store/aq0c1khbwf5asip8mbh0kykp0n3hf78l-http-conduit-2.2.3.2
/nix/store/awjjqypgpacd4xp97k9ylyq6v6bbap1d-monad-loops-0.4.3
/nix/store/b0z23b9gbkj4p5rm52hlmf86mqq1n7f3-ncurses-6.0-20170902-man
/nix/store/b2sn3ynmdf79xm6y47gbkck6svnc01d3-appar-0.1.4
/nix/store/b6571mr8rfn82psy4lhizaz3w09fnz6a-acl-2.2.52
/nix/store/bl1mv4i6ywns4hy0nvbdn93m9i12ryna-patchelf-0.9
/nix/store/bwgfgg17rj62w6hnyijw70i3j33v4k1b-vector-th-unbox-0.2.1.6
/nix/store/bxf64prfhbnq0nkw3c72lb0d87zfvxd3-safe-exceptions-0.1.6.0
/nix/store/by3lqpgph3c4maz6vb2xhd64vhagfc67-bzip2-1.0.6.0.1-bin
/nix/store/c13qwawql5ki3fd2p09x2w8s10srvq72-aeson-1.1.2.0
/nix/store/c4wc2v9y96h6q5qsh0jipa1sjxzircpr-universum-0.7.0
/nix/store/c6rrb00yb9sv9gwcmlm7vam623l5yfnb-dlist-0.8.0.3
/nix/store/c7kvn75y1lpyyiak71gh3a6zmdim6zq6-insert-ordered-containers-0.2.1.0
/nix/store/caifh5lf4np7jkn0yhhf4z8l6cxv6hpc-attoparsec-0.13.1.0
/nix/store/cb48zr5hr4ivqqqvvsizgw6nq5pa888l-quickcheck-io-0.2.0
/nix/store/ccr1zidlqvys56fiw2zg8y788rvd9yzx-system-filepath-0.4.13.4
/nix/store/ch4vb6p38dlfl743qffagyp5i1zx9qy9-semigroupoids-5.2.1
/nix/store/cqj3bcnyv0l6958j4kh474pphdm4ysjm-tar-0.5.0.3
/nix/store/cr3zf2cf4d140bc6wsv5p87ysxry9lgx-conduit-extra-1.1.16
/nix/store/cr49q6vvyhfs48dg15ys3mghfzgc80i7-openssl-1.0.2l
/nix/store/cy9vxrk9apdjh0vqbgjagmgc9gq96yyy-dns-3.0.0
/nix/store/cyaz3zj6w5fhw7v8nmagpw8vqkm0bdzv-th-lift-instances-0.1.11
/nix/store/d1yjrprvmcll230v3x1ym86x8zvq72rq-base58-bytestring-0.1.0
/nix/store/d4yib20lqn7krrqmm0wwbwjxjfa78xqp-coreutils-8.28
/nix/store/d9ivsmlzygjzwjck8ikksh190wr3d47y-glibc-locales-2.25-49
/nix/store/dchy14aahmza9rq50z0qbfarg26rxhjj-either-4.4.1.1
/nix/store/df7bf73snmyld4y4a77j2mzyi0vzyfmf-cryptonite-openssl-0.6
/nix/store/dfgr5qd33497yvx3d81ahb7dsibcmw3g-zlib-0.6.1.2
/nix/store/dfi6ajp001slfq743km73j8fdas39080-call-stack-0.1.0
/nix/store/dmkaq8nlz046c806jx1cavvxvr9nwsn9-contravariant-1.4
/nix/store/dr0r31ivqviqfwl350ccjnshcws9kynr-entropy-0.3.7
/nix/store/dsjkns6r9g860vn0idy2072f6cli0gky-stdenv
/nix/store/dxwr51am2gp9lqjqz517k33sir0lbl23-foundation-0.0.13
/nix/store/dy1fjqfnk1w0q2nix38b21cjqx218val-paxctl-0.9
/nix/store/f0ajnaq03xmnhd3m5illy4647xkq3qj1-servant-docs-0.11.1
/nix/store/f0df9h6igy2cfh5lglgj6d0ig4kf7gqw-memory-0.14.6
/nix/store/f54jbqi2zz9prls9mqidvdxyi5f71w8v-adjunctions-4.3
/nix/store/f62wgbfrpkknlvssgrv6izmvvq74vfwq-parallel-3.2.1.1
/nix/store/f6n0niicibsnmz24c60wdxcggpf1yzmc-syb-0.7
/nix/store/faqn96n8xv96y43kghasyfm2y1cmdi9k-time-units-1.0.0
/nix/store/fj1a39mmgbdjd012jqf9x6ngw3mvzvd3-wai-logger-2.3.0
/nix/store/flb9ar1xdd13c606aa4my9miy3iv4vyk-bash-4.4-p12
/nix/store/fmazg0pddxb4l0vknh0k8s5q78ab08fy-tf-random-0.5
/nix/store/fmkraqg7ykfwh6jj079979lyqwj5fivz-half-0.2.2.3
/nix/store/fn41251rwg6753xh3830xs4r5rvcvahl-th-reify-many-0.1.8
/nix/store/fpwndcxf3sgzyzmcb74dp8p380y23j01-optparse-applicative-0.13.2.0
/nix/store/fqa5gcqf69m5q8v5ykvpz0ds3x4rz443-bytestring-builder-0.10.8.1.0
/nix/store/g1dx5j686w5kp4kvmy48bfydqg884mry-monad-control-1.0.2.2
/nix/store/g65l985579ri87i8m3906a2nmyrl24a2-gcc-6.4.0
/nix/store/g6lmh8m6zzg7cn024kfmi1vz8673vd26-plutus-prototype-0.1.0.0-data
/nix/store/g8il1ja39i73fmhrkd5rcyrnfd27wn1v-websockets-0.10.0.0
/nix/store/gg4j59jrcpmy3jv8lri8s33zwhkgfhh7-transformers-compat-0.5.1.4
/nix/store/ggwv324rgyakfj9il8v3i9adv5yb4yps-th-lift-0.7.7
/nix/store/ghkbm6c87nbb7l8wri44bl21azhn822w-hourglass-0.2.10
/nix/store/gsazyyx8fzg732gqxhb0bd7kln1xk9jc-swagger2-2.1.4.1
/nix/store/h5c2vfaxhpv7v0p1vlh3h7sdiphsi4rv-gnused-4.4
/nix/store/h7gzm2bjlr6c7b3rxg9ai2nl3385w2rb-http-media-0.6.4
/nix/store/hfkkqzqw7m1w6dazwl3bzxjv0895y5h7-iproute-1.7.1
/nix/store/hhcby2ncg7s75bm8f87j4i7wjzx20nvw-libffi-3.2.1
/nix/store/hj3hw6y9bvw7cp36dm3lw5nh2fnv8g7c-integer-logarithms-1.0.2
/nix/store/hpyznqqzawyk576pi1m74fvc1rf3lbv0-purescript-bridge-0.11.0.0
/nix/store/hrxkcm0lnnp54m99rxmr7z2alah8g6n8-ansi-terminal-0.6.3.1
/nix/store/hv6wxnydjml90p4m03rzlfwlsynirpxp-random-shuffle-0.0.4
/nix/store/hvyiwlh39k8n3ls2ijviqzx8nq878v7m-cryptohash-sha1-0.11.100.1
/nix/store/i4si3gkr1hbm6lcz3hakcxqnc334wfk4-free-4.12.4
/nix/store/i8wz3m067dzbs5x2glhxvcg7lvds1942-zlib-1.2.11
/nix/store/ic5criggbnpfrdnxdhdpkq11birkfz5m-gcc-6.4.0-lib
/nix/store/id8ay7jmid8c3hqlbjkp1wmcc1pi5q9p-kademlia-1.1.0.1
/nix/store/ininf0ki1iir8lhhjshh7p9k0lafj1wy-plutus-prototype-0.1.0.0
/nix/store/ix9blfmdcqvz2cjrh1q9l7a0pwlbsz1z-byteable-0.1.1
/nix/store/j12qgvfgp56dlvsz5wivh0jd6zsm5vsv-servant-server-0.12
/nix/store/j41pm590lflva7kkx643kycix8njjrld-xz-5.2.3
/nix/store/j6xxfkamqm0vny8c9vjg80lb6nm56ikp-wai-websockets-3.0.1.1
/nix/store/jbmgxddlp9zdjj89far5v0bhfaqhv6ai-data-default-0.7.1.1
/nix/store/jd1r29f13bmy1pkjayczx94spmi8ix6g-servant-swagger-ui-0.2.4.3.4.0
/nix/store/jg53y75wjswnm5js40s0hbs42yfzradm-monad-par-0.3.4.8
/nix/store/jgddcrvx59vgrykbyayj3mza5xlkwbxd-generic-arbitrary-0.1.0
/nix/store/jgzhmj983w4r2wgvw7481jr9kpbr43kv-cryptonite-0.23
/nix/store/jhqfayk6cr18prpfcbv8zvchrqw2j97l-case-insensitive-1.2.0.10
/nix/store/jiba5rn62kd1484qjiydg8bi8wmww2jr-hscolour-1.24.2
/nix/store/jmqxk2acjiq3vkglv5j3fwhkyxkrmlsz-attoparsec-iso8601-1.0.0.0
/nix/store/jn350na5wcshwsixpq1wbskdp7r3x0r3-openssl-1.0.2l-bin
/nix/store/jn4a01zl1k1nf1ljlhbas3y4g63laa94-warp-tls-3.2.4
/nix/store/jqdysr2sm8v0sqap8i0kd45zw6frgk50-stdenv
/nix/store/jx9zrrr1r8c5h36rh03llb86kjdpx7kf-double-conversion-2.0.2.0
/nix/store/jxanh07m0ygzvw2ximkicwnnj20hj43z-unix-compat-0.4.3.1
/nix/store/jzmncq97cc57yrsw86dlhlgawr0zgh4j-errors-2.2.1
/nix/store/k5s4c7i9p2qvwa847jn23z9x3m22c4nk-erf-2.0.0.0
/nix/store/k6f7drbaaiqm3dpfggwwrflg6mp0c8sq-abstract-deque-0.3
/nix/store/k6m804pr9cdy61p29698rmxqp3y4vcbf-fail-4.9.0.0
/nix/store/k9w88zs819bzwmy4rz2c1zg5bd08qd0f-writer-cps-transformers-0.1.1.3
/nix/store/kd7vb1afwvm2k65n9qjdw767w6lnwsrd-gcc-wrapper-6.4.0
/nix/store/kkrg56qh1l655bcdr6amyp7k59ndf81z-diffutils-3.6
/nix/store/knqf8vb3fway6scygvg4rw7p5cd6lldg-filelock-0.1.1.2
/nix/store/kpnj0h0340wd0i86q0523527ikbz62ll-gnutar-1.29
/nix/store/kvh74s8dpp5slk8l5qsph6l5x2sf6vbh-th-orphans-0.13.4
/nix/store/kwyrcqaknca4gmk5pf69lw0ldpni7f65-simple-sendfile-0.2.25
/nix/store/kxpmk4zl36nph7ymfa6kacl76fn98vam-text-format-0.3.1.1
/nix/store/l2nf661lkdx24r2nsf6kln5zncamqg9n-linux-headers-4.4.10
/nix/store/l41v7acmahgy6h0lfy25zbr72ay6k7kb-hashable-1.2.6.1
/nix/store/l8pcpvb9nqf7hm8q42wm9l570cisvq1j-vector-binary-instances-0.2.3.5
/nix/store/ld4sw9wx8d616mb6jq5hdcd5m06iq39x-ncurses-6.0-20170902-dev
/nix/store/lf0sqkvww7b2p6jbqz2x7gd7g3f3m3kh-data-default-instances-containers-0.0.1
/nix/store/lfh9rwyfja5c8fhalnd12mniqwa3raav-parsec-3.1.11
/nix/store/ll42l16jpkbvd56gshqk7c5mk98h6lqb-th-abstraction-0.2.5.0
/nix/store/lnj4ih1y1yjxbj5h1rh01pzp5lk6h8hi-ncurses-6.0-20170902
/nix/store/lp49ww69vllq2mwsd38rpzfr9h448397-ed-1.14.2
/nix/store/lwvnvf5l63irkhrwbbqy95j8ffrk22s0-scientific-0.3.5.1
/nix/store/lwyhqyx7sm3va37pv1jxzaz2v7g4b4fv-snappy-1.1.4
/nix/store/ly2997h2zvbn19fadzkx9hi7i8ka75kz-servant-swagger-1.1.4
/nix/store/lznrccq1d1mlp0836mdl4xqdxh3jmndp-x509-system-1.6.6
/nix/store/m2w033lh148ra7nj4qhmni6k8lqxx996-unbounded-delays-0.1.1.0
/nix/store/md0hbqgzsxg5vpippsplkir124zmkb20-statistics-0.13.3.0
/nix/store/mdhv7zxnbg2qgqq9chjkyxmbccyk09hs-asn1-encoding-0.9.5
/nix/store/mfd659h5bpchk9ymkf9ac7b3a069rl4s-servant-multipart-0.11
/nix/store/mgliggkmc6rdpfisa51i7w96alx2hr0n-HUnit-1.5.0.0
/nix/store/mijvc5gl5caranrh0kh2w8fzwfzb2ahx-lrucache-1.2.0.0
/nix/store/mngjvr1amwlyy8ildjf9rmv3xvvlqab0-void-0.7.2
/nix/store/msga1izc15i0m3326r822y5i0ip356zk-microlens-mtl-0.1.11.0
/nix/store/mvw8fp1hghr7jxj034lf21fzqn2svvi2-vault-0.3.0.7
/nix/store/mw2jfhhw70b5ml6b83rv666ahbd63b49-data-accessor-0.2.2.7
/nix/store/mz1w9mqyn2k02is40axffsfh1mrvb066-rocksdb-haskell-1.0.0
/nix/store/n0djhiqlc0lyhkhxrqjl08nhd7abrrhq-QuickCheck-2.9.2
/nix/store/n2xkxi24jj2l2n2nkcm7frhik5wj77cn-network-transport-inmemory-0.5.1
/nix/store/n91vqgfwbc0kl67ma1k4mm2ra9z53q0j-unordered-containers-0.2.8.0
/nix/store/ng7b1hg0prnwqpwf3mpmm7g0gqbmb4wv-operational-0.2.3.5
/nix/store/nikr9k5id7mzz1d4cw3hvawnrvbb3rls-microlens-0.4.8.1
/nix/store/nl0jvp3w6y8q88szxdlkwk51blr1qppx-cookie-0.4.2.1
/nix/store/nphrycjv682xvz5n6mrl1madh2z5mlpy-exceptions-0.8.3
/nix/store/ns4p339c4i0zvfvcs79mr1cpbcgb7xcb-semigroups-0.18.3
/nix/store/nvxs2ydc0g8cqy85bxzds5d1f79dkd9y-ed25519-0.0.5.0
/nix/store/nxbmhplf3k3ig5rsqr5l4n7jn6w345sy-extensible-exceptions-0.1.1.4
/nix/store/p076z7745hqzrg6yk1z5asm7gghgw7zi-streaming-commons-0.1.17
/nix/store/p0cjsmcmchbmhv2i7j78c4ig8gig5yyk-wai-extra-3.0.20.0
/nix/store/p6wr6n7nniysw4birw7bax6vd79f8pf3-http-client-0.5.7.0
/nix/store/pd5c65d1d99hn33831lxmrgqhnxg7q6z-pcre-8.40
/nix/store/prhk2d3d02qzc30d5h6g70sxa3zrcbk1-data-default-class-0.1.2.0
/nix/store/pvhpvsx000daql4b12pcb2azgx98psjy-StateVar-1.1.0.4
/nix/store/pyqzyl3yvam1magahsm8xahx5hs1ngh9-gawk-4.1.4
/nix/store/q3ha03vz35bsdqcqr86bxz8a06in4n0z-utf8-string-1.0.1.1
/nix/store/q7ih57a82pyda2mlwkplcmdk7s5ic21i-old-time-1.1.0.3
/nix/store/q8k7r5zbf03ydrpm7imfzds5b2nmdf0a-zlib-1.2.11-dev
/nix/store/qbaqvigvl38dlcxl3m6mb9lf5lfdyznq-conduit-1.2.11
/nix/store/qbh4ip5j100k57ns463h8y9r1hm7ll1q-fast-logger-2.4.10
/nix/store/qcmxq3ags4zb3h24m987pby2mb3x8mr2-easy-file-0.2.1
/nix/store/qszqg0vk6341f98s1xjgzcdvl8gh8c0d-warp-3.2.13
/nix/store/qy9w653h90iy4n3cq8w41gycvjj7v3xa-bifunctors-5.4.2
/nix/store/r16qciq85691n69vrkq3m8kl8iqnn6pb-wai-app-static-3.1.6.1
/nix/store/r1cf76rskp19gphnlxk8zlrc3ycpcgvx-binutils-2.28.1-lib
/nix/store/r291j0713hdjymsz4px3i6fb1d3ikx4i-primitive-0.6.2.0
/nix/store/r5b9358zavyysd1dk5p9lxh0bbv937qp-ekg-wai-0.1.0.2
/nix/store/r6lim96p4waln7mdxknmv2alcfz3kk8a-blaze-markup-0.8.0.0
/nix/store/r8rj711df5n2c7pbzlcwnpfhwzvm45sw-openssl-1.0.2l-dev
/nix/store/rbzg4syncn4x9lpfi65wg8nd74b59n2m-mono-traversable-1.0.2.1
/nix/store/rfz0qavkqk7i3kqix8rfkf8cbkvy1maf-monad-par-extras-0.3.3
/nix/store/rhqwdgr0abl1maig16lkvb6n396s3795-ekg-wai-0.1.0.2-data
/nix/store/rs1q5pq11g9q3c9h5s631jik13znxsi2-ghc-8.0.2-doc
/nix/store/ryp53admmjd9rpg9gbij8zrbq391jyf8-hspec-discover-2.4.4
/nix/store/rzqyfil4xmja85w5sm13m107j1zm8d7s-ghc-8.0.2
/nix/store/s2nawngc54s8lpl7lfydnw48ii3cjg95-optparse-simple-0.0.3
/nix/store/s45rrabqsbprgi7ay3rpndsfanbbm5nf-servant-0.12
/nix/store/s6wz7l5h0ya6qciy0xcxwv05l50snfy8-gnugrep-3.1
/nix/store/sas3nvh95z0gg3nshfk59y4zsknqpzdc-systemd-1.1.2
/nix/store/sdghk72gjb7cyvl88wrq36kgb8s1g0lm-byteable-0.1.1-data
/nix/store/sh9riblgybym34j5rfdymnb3vlpxvfdn-ekg-json-0.1.0.6
/nix/store/sr86clfd6x7b1qbignfa7xgk6gnbixiz-ansi-wl-pprint-0.6.7.3
/nix/store/swldn50hq86kl99ppkjny6apr3k788jw-psqueues-0.2.3.0
/nix/store/sz1z97275ljs6dp2wmn7hrwgygalirzv-fmt-0.5.0.0
/nix/store/v0ga0yaicm3q1m05y574fn1whfxs769r-extra-1.5.3
/nix/store/v5xah2nhf5hygzshgw1cscd41646d11k-time-locale-compat-0.1.1.3
/nix/store/v6s9mvcg8wqpgbbmf86fq1h5sy0jv15b-xz-5.2.3-dev
/nix/store/v71yz1j8xs445bf1wy15rir6rfh4yiha-tls-1.3.11
/nix/store/vc9x1x709famswk1971ym4samfczzqpc-control-monad-omega-0.3.1
/nix/store/vgn723arcfs9l846hbrq0hq752gs06rp-generic-deriving-1.11.2
/nix/store/vls1av4rl2rwy4yn9193fxajkgj1fd65-data-default-instances-old-locale-0.0.1
/nix/store/vrmwr3qd8jidrniipqa6p2vwk1h1dvq1-socks-0.5.5
/nix/store/vw9xlbanc062ds7wbn8w1376cdn8gry1-old-locale-1.0.0.7
/nix/store/w2hjdjwlksz00nfwcxj0ppkzz7ywz68l-cardano-crypto-1.0.0
/nix/store/wcc8j0cg2sc8kizs76hfyynjras3xj21-uri-bytestring-0.2.3.3
/nix/store/whbi6aw6zyfxpvsfy0cg16im0bccgq6p-safe-0.3.15
/nix/store/winsc6b5q2baa4yl6w2r9glayh46b0ic-MonadRandom-0.5.1
/nix/store/wk0ibin1jsrd2p2h3f32kb5ihlgfrisn-cmdargs-0.10.17
/nix/store/x0hsfnk95g7wn2llvypgrl4sa4rx9rv9-http-date-0.0.6.1
/nix/store/x17vgd35lb4xpz07g7r0l8m72q4fv0nw-hspec-core-2.4.4
/nix/store/x4qj0389syzrgrp2ikxca58cxdkii7sy-reflection-2.1.2
/nix/store/xbf6l1nk1h7fwg1gwqqmnzz95vg856bi-gitrev-1.3.1
/nix/store/xdbdlyinkmzy1c0yp5sjlm4pnpf6zz5x-auto-update-0.1.4
/nix/store/xildi0d1g9jnmjk9b2bbqsczim09hdjs-uuid-types-1.0.3
/nix/store/xjk36rlz3lhc8rn44q8yfq60fr0pidsc-lens-4.15.4
/nix/store/xkyddvlil3xwlcwrf3jyagfjxhydnny6-type-operators-0.1.0.4
/nix/store/xlw6ya3f4nd9n91h9pcr28xci08j33v1-x509-1.7.2
/nix/store/xlyvs58cvi3c39yi676822mb2xmc3625-connection-0.2.8
/nix/store/xmbksccx75klzrd0x17qm2pps2mzazc7-semver-0.3.3.1
/nix/store/xq5dw2qxz9b82xh53119xd40ffmwabd4-rocksdb-5.1.2
/nix/store/xsjdl37lcqqlpcf0z035d16bf5f9r90q-kan-extensions-5.0.2
/nix/store/y480kmqq95yf4g1bqgakl2jvkafvq5kh-wai-3.2.1.1
/nix/store/y5ap1y5d1cnz3kidhixs8srqw4rxd5d5-bindings-DSL-1.0.23
/nix/store/y78wxgx4n81yf7236ifk9ih08fp9nbaa-network-transport-0.5.2
/nix/store/yffxqy7ijqzmzlvn4rzf5nprvki08myh-math-functions-0.2.1.0
/nix/store/yg1g1hh6mrmyc06y0vc2dlx2wdsmrc4p-hspec-2.4.4
/nix/store/yim9hlqr7wdsbf605paiy25rq83fjdsy-resourcet-1.1.9
/nix/store/yj4b630bm6yscdw8j2sa1sb61j3rdqsy-perl-5.24.2
/nix/store/yjli2hng9aq9vqf3jc2r117k84hm91bv-mime-types-0.1.0.7
/nix/store/ykshn1xm77wzly666jzrgmfz5ll1dmsq-autoexporter-1.1.2
/nix/store/z470j6lybdsy4ql972k392490bprhd2g-binutils-2.28.1
/nix/store/z5z8ldravlksmw7fqalyzr4i75x8ayjv-gmp-6.1.2
/nix/store/zcpl6mzx78xkdl6myjj5hgv8c21bkxcv-neat-interpolation-0.3.2.1
/nix/store/zcvsys6k2z2xklpl8nr85019vw8hzizw-ekg-core-0.1.1.3
/nix/store/zh44bg80xchgvwr4m0ij96xvl1wpq6s1-constraints-0.9.1
/nix/store/zldnw7nn8gmh5833xgb8970wgzf52qaw-file-embed-0.0.10
/nix/store/zpg78y1mf0di6127q6r51kgx2q8cxsvv-glibc-2.25-49
/nix/store/zsff4pljmqkm65n6mzlyisrhqj0p998s-async-2.1.1.1
/nix/store/zsfnlmvw8k7akg1s0ypdy5jd1kq0d8hn-glibc-2.25-49-dev
/nix/store/zssrpgf9sdzrlgjzlv3rzsh1cxvri525-mwc-random-0.13.6.0
/nix/store/zv86mp9qr1kk2sxv174fxrmly82wakr0-xz-5.2.3-bin
/nix/store/zvmzvnnqw8zy17s1qy5mmqwvisxyvvr9-network-uri-2.6.1.0
error: some outputs of ‘/nix/store/hpzmi7fl5jqmbw5qpcs6bx6wgk3cfmp9-cardano-sl-wallet-1.0.3.drv’ are not valid, so checking is not possible
mdupont@debian-build-speed:~/experiments/cardano-sl$ nix-build -A cardano-sl-wallet --cores 0 --max-jobs 2 --no-build-output --out-link cardano-sl-1.0warning: dumping very large path (> 256 MiB); this may run out of memory
these derivations will be built:
/nix/store/zp1cp5sgim2kg91id1hpfq1ahk637qlb-remove-references-to.drv
/nix/store/hyw79sdcc3iskgl54cabzikpfr5p7fv1-cardano-sl-networking-1.0.3.drv
/nix/store/awlh3sk7fcgnmqnshpjdjy82914by4al-cardano-sl-util-1.0.3.drv
/nix/store/nj87asq130hynh9d1lxqfva3znmfx71n-cardano-sl-binary-1.0.3.drv
/nix/store/a3x2w9zj17f7537fhamp4k57ny80z0nk-cardano-sl-crypto-1.0.3.drv
/nix/store/ps2hljh7w8a95zp024fgcwbcfaq1n76r-cardano-sl-core-1.0.3.drv
/nix/store/bhaxxp3x8qbhpg4lv19q0f60q7dffyf0-cardano-sl-db-1.0.3.drv
/nix/store/28c80kr0gnj3qx3g76pxj8nbd9pmn6hy-cardano-sl-infra-1.0.3.drv
/nix/store/r3q52ag6pmrij4fqaza8ijaxkhdhcpb8-cardano-sl-lrc-1.0.3.drv
/nix/store/2gq0226ymf5z4ivqqwspa0skrwk1yf2j-cardano-sl-update-1.0.3.drv
/nix/store/5j2k0igkm1piypkvlf87n83f60kpff9p-cardano-sl-ssc-1.0.3.drv
/nix/store/d3sb4nncd2w6v2sgm65gqi53357nyp2i-cardano-sl-txp-1.0.3.drv
/nix/store/j91qymc383vn8lzx7xzgyw38g1n2qqcx-cardano-sl-delegation-1.0.3.drv
/nix/store/rnraz217gvwhr09bm828jyfk8a04jjc4-cardano-sl-block-1.0.3.drv
/nix/store/ly1w5pby699grak1q53dkvizyc0szbnl-cardano-sl-1.0.3.drv
/nix/store/dj0i58g3zm59m21l5x6bxq4qbl5cah92-cardano-sl-client-1.0.3.drv
/nix/store/j4cyz9ymql4djcjk3f7jfrqbdqfz1fn8-cardano-sl-generator-1.0.3.drv
/nix/store/hpzmi7fl5jqmbw5qpcs6bx6wgk3cfmp9-cardano-sl-wallet-1.0.3.drv
these paths will be fetched (145.46 MiB download, 2260.99 MiB unpacked):
/nix/store/00h4yapkvslcbwnb2ymmqr4485pggf81-split-0.2.3.2
/nix/store/0f438n0s414jkbacgj2kf9jfg3hrql3x-mmorph-1.0.9
/nix/store/0hx866jack2dln98fy3b0yzvix1hb9i3-base64-bytestring-1.0.0.1
/nix/store/0iw9nb2b0pllrcb2qh3cvi7n8mxg454z-clock-0.7.2
/nix/store/0q117q9i6jqf6xv9bkcm9p7yidypq7dg-http-types-0.9.1
/nix/store/0vrpw8p43yf8dk5rn1yh796fzqqx8vgy-cryptohash-md5-0.11.100.1
/nix/store/13nn2l0pvc3jy8vc2y8dh6nipl28y64c-natural-transformation-0.4
/nix/store/14jfpvbn52yf4whf95h8g18yhl3fqxmw-cardano-report-server-0.4.0
/nix/store/15izg48mmq14bzmx9mhmd25cbcsf6972-lzma-conduit-1.1.3.3
/nix/store/1682bnncb7rllsi29dhmgglc8vdcixwz-digest-0.0.1.2
/nix/store/1agf19q8cwb0655ha8hj8p4gzw0nlml6-servant-generic-0.1.0.1
/nix/store/1f8h4rchmgdl673ns66m3gp8956bf39b-pvss-0.2.0
/nix/store/1gc7s8kp8avq0m5jalji7ska35bghhyk-servant-blaze-0.7.1
/nix/store/1gy5r9sclpxspyggsm7k7i0gvyz8wgr3-hspec-expectations-0.8.2
/nix/store/1m6znb1ykgs122pv5m2na9f8p2x9qnhs-polyparse-1.12
/nix/store/1mhdpjjzr158c7a9y7cqb0hnmfkrgpac-transformers-base-0.4.4
/nix/store/1r2mziqg5dinv6r82wvvcfgmmkqc833y-blaze-html-0.9.0.1
/nix/store/1x6dpsf7iv51sw4xnpqhdw537hqimspk-tls-session-manager-0.0.0.1
/nix/store/220siz2yiawgx6i3jj9cki3lpn2ladx4-x509-store-1.6.5
/nix/store/26akzw7cij5ir5v28w8977jw4r69pl7f-stringsearch-0.3.6.6
/nix/store/296b4qcwk12xg605dyxmmb4pd6cdkq4y-concurrent-extra-0.7.0.10
/nix/store/2a8q4a7pvwf9p3whzrgd7s03nqp7n3xm-pem-0.2.2-data
/nix/store/2d2in2wqdgxr0p210lv17dvxibpnfw49-gmp-6.1.2-dev
/nix/store/2gx9z100j14w9470psd54fn49pkxkac4-SHA-1.6.4.2
/nix/store/2hkqg60k762v26m46bhqglna5y2i191p-cborg-0.1.1.0
/nix/store/2i6dgq94k9r2j33zf1101q81nnfsk70z-safecopy-0.9.3.2
/nix/store/2nm6698lr3kz0s62m8g830vakm0v1v61-network-transport-tcp-0.5.1
/nix/store/2sciak1xd9rfmx5gj74r7n2bl21g7f5i-formatting-6.2.4
/nix/store/2xbf9821arvcfxawy0lxhblgriqqwzl1-ether-0.5.1.0
/nix/store/312pd1gdk3knifhfrxccjd081w3bl61x-deriving-compat-0.3.6
/nix/store/367p0r6j9ldanhhfkcmrny0vplx078sm-canonical-json-0.5.0.0
/nix/store/36yfplwgbp18acf4hy1fmwb5dvdcnqyx-scrypt-0.5.0
/nix/store/37bv200k7xpqibdcb3hg8krcgxvmw0kl-log-warper-1.3.4
/nix/store/37qk8jwdijf21z9rykmj44z8b9ap2vgc-blaze-builder-0.4.0.2
/nix/store/3d97lrilf8fsp172gi3lqk80qvzccpv5-tagged-0.8.5
/nix/store/3dy8mz2x9fs5hjwyyzphxrz8ir24dp07-acid-state-0.14.2
/nix/store/40xjxxc8b48ml760fk2wy4ya8xdidkp5-base-prelude-1.2.0.1
/nix/store/417s4ypir4h9hxnrw759d479c556ijng-aeson-pretty-0.8.5
/nix/store/42wyaijdy7v979krqvdbb06zym3d9fb4-network-info-0.2.0.8
/nix/store/43inmkznjb7kcpgnhy3jcqwq5ai0pn40-random-1.1
/nix/store/44dbwrwfy6lj45jy02d0rjbj9930nwf3-patch-2.7.5
/nix/store/4c44v8fs8dzjmkxhr0xm19rh67v5a5g7-unix-time-0.3.7
/nix/store/4d363sp2wl8k1ig84n680sag5fhrr728-stm-2.4.4.1
/nix/store/4g0hn88h2qg703d55f4c8fni1qkm6kds-pem-0.2.2
/nix/store/4l7lzqjvm1y0nvf2s2vfiz6iy6xlajmf-uuid-1.3.13
/nix/store/50h9s25lzbs3a8s3rvpd02vj6l28din8-glibc-2.25-49-bin
/nix/store/52pys1ks83d4jjq2cyis4p5q150h5nmm-writer-cps-mtl-0.1.1.4
/nix/store/5a39g6k7lmbv4cwkxplhpjbxfbzzj8cm-mtl-2.2.1
/nix/store/5dnva19r2z20jahsx3jxm565qwjxsynl-bzip2-1.0.6.0.1
/nix/store/5jqrghdyinlagqv1wid5k16slli3izff-transformers-lift-0.2.0.1
/nix/store/5v9basc3pha9j9zd1wbd3lrl6bq8zlg3-profunctors-5.2.1
/nix/store/5y5sqmi8zv6zbmap3sng48swmp787845-distributive-0.5.3
/nix/store/63smavrcrn6ybrq4wmnxxvp6rr9dla73-vector-0.12.0.1
/nix/store/69anj95a05igj74ml9i3887qib61pkk9-unexceptionalio-0.3.0
/nix/store/69ps1410fmahvwx88g2kj1hvic7h5cnh-word8-0.1.3
/nix/store/6dvz5ydy72285qmf4d0xwdir6kblx4qv-lifted-base-0.2.3.11
/nix/store/6iz0bqx3a3qc8jfxmn001h80ixd3qr10-network-2.6.3.2
/nix/store/6y968gbrr2qwc7jjzhlyw03i8m4bmfiy-abstract-par-0.3.3
/nix/store/7fk1l6p1lmss8mq1w8v994mlqgk0wqmb-serokell-util-0.5.2
/nix/store/7h1k843sjgadwkg3var4p31l3axgp4k3-ekg-statsd-0.2.2.0
/nix/store/7q867i8kpvjcl7985jsykj773j5hi7a6-th-expand-syns-0.4.3.0
/nix/store/7vdmk8w2y59zdd0w83g5ghfijdksrbk3-generics-sop-0.3.1.0
/nix/store/7wfvdb91qjl420zb42vi6inlscpbjrrw-comonad-5.0.2
/nix/store/7ydrnkyarbpd3qa3fzhg8ms6nnl70g3l-lz4-131
/nix/store/7yj6x2spcq8bk8c4rxij76h36h9559sb-expand-response-params
/nix/store/7zvmpws8gsp4vz3pdd91zzdz0l22dkhp-th-utilities-0.2.0.1
/nix/store/82sr919h30qm5cjmb1k5zcfnprgaxgd3-cereal-0.5.4.0
/nix/store/83389b5ipswbrw2ypr6p0kvi3zlbd2wm-http-client-tls-0.3.5.1
/nix/store/846prn83isabk6z22zparmfnm9b9fl3s-vector-algorithms-0.7.0.1
/nix/store/85517imxlc4jjm583nva4arb2h41aa0q-asn1-types-0.3.2
/nix/store/871adhqrxl37bpi5w9g9g6y0i1n4f9cd-findutils-4.6.0
/nix/store/89g1viy6l1cxgrmmqwckxkzfvp4lka8c-text-1.2.2.2
/nix/store/8g2x5qjqyv9a7glmvpzv1wylnbf1cwvw-gnumake-4.2.1
/nix/store/8i9xl98kswgbani8bkrxr023nh4i51k5-attr-2.4.47
/nix/store/8w8l115477a7psa0qbaj6jdwb7w36qrw-quickcheck-instances-0.3.12
/nix/store/8yyv3ad330rqnzmwm4w1kn0ab45ja21b-string-conversions-0.4.0.1
/nix/store/928nq1zrxim4pgg598bx5xqprv1490s2-asn1-parse-0.9.4
/nix/store/95hl7clrx0zrz6g6javxpcjx3z849y5w-yaml-0.8.23.3
/nix/store/976cfb758rav7wy576mzsfn62vhz78h3-setenv-0.1.1.3
/nix/store/9a9x0c6wmwvz2drppkq89c0rfivxdx7b-base-compat-0.9.3
/nix/store/9b1f2a3fhmmjav8l4z65c6vli2c97myh-byteorder-1.0.4
/nix/store/9c4w6cvif6qk84nrkz0r4gqr7vc7nbis-base-orphans-0.6
/nix/store/9j420kzl4l0qap5q5y546fjq5npybdad-base16-bytestring-0.1.1.6
/nix/store/9j72vyzlcikn12l72nhdig7sksc0z38c-google-gflags-2.2.0
/nix/store/9kirmbq1n3v4vfvdwzb98ra4plldylna-http2-1.6.3
/nix/store/9lcc4nlw2ygx7shk5kaqbgv6sd3n7jq0-http-api-data-0.3.7.1
/nix/store/9pi46g09vaii0cyi9zrba280q7wqsm2r-x509-validation-1.6.9
/nix/store/a9chdxli5b0kd1l7mg25q2r676ndwwvv-hex-0.1.2
/nix/store/abk6h8g0hj6dyk75h320mgls3ygshl0w-gzip-1.8
/nix/store/abnxr6ah99b56zkirqm63x38sch2zaqq-prelude-extras-0.4.0.3
/nix/store/afs50wwrblgpnmva9ibzdjv7nqr7b6y3-jemalloc-4.5.0
/nix/store/agh70w6vxhw8i7lcsqwnga818yc7p6yx-cpphs-1.20.8
/nix/store/an78i15sinqah1lqxq93r4grz5dphsq7-data-default-instances-dlist-0.0.1
/nix/store/aq0c1khbwf5asip8mbh0kykp0n3hf78l-http-conduit-2.2.3.2
/nix/store/awjjqypgpacd4xp97k9ylyq6v6bbap1d-monad-loops-0.4.3
/nix/store/b0z23b9gbkj4p5rm52hlmf86mqq1n7f3-ncurses-6.0-20170902-man
/nix/store/b2sn3ynmdf79xm6y47gbkck6svnc01d3-appar-0.1.4
/nix/store/b6571mr8rfn82psy4lhizaz3w09fnz6a-acl-2.2.52
/nix/store/bl1mv4i6ywns4hy0nvbdn93m9i12ryna-patchelf-0.9
/nix/store/bwgfgg17rj62w6hnyijw70i3j33v4k1b-vector-th-unbox-0.2.1.6
/nix/store/bxf64prfhbnq0nkw3c72lb0d87zfvxd3-safe-exceptions-0.1.6.0
/nix/store/by3lqpgph3c4maz6vb2xhd64vhagfc67-bzip2-1.0.6.0.1-bin
/nix/store/c13qwawql5ki3fd2p09x2w8s10srvq72-aeson-1.1.2.0
/nix/store/c4wc2v9y96h6q5qsh0jipa1sjxzircpr-universum-0.7.0
/nix/store/c6rrb00yb9sv9gwcmlm7vam623l5yfnb-dlist-0.8.0.3
/nix/store/c7kvn75y1lpyyiak71gh3a6zmdim6zq6-insert-ordered-containers-0.2.1.0
/nix/store/caifh5lf4np7jkn0yhhf4z8l6cxv6hpc-attoparsec-0.13.1.0
/nix/store/cb48zr5hr4ivqqqvvsizgw6nq5pa888l-quickcheck-io-0.2.0
/nix/store/ccr1zidlqvys56fiw2zg8y788rvd9yzx-system-filepath-0.4.13.4
/nix/store/ch4vb6p38dlfl743qffagyp5i1zx9qy9-semigroupoids-5.2.1
/nix/store/cqj3bcnyv0l6958j4kh474pphdm4ysjm-tar-0.5.0.3
/nix/store/cr3zf2cf4d140bc6wsv5p87ysxry9lgx-conduit-extra-1.1.16
/nix/store/cr49q6vvyhfs48dg15ys3mghfzgc80i7-openssl-1.0.2l
/nix/store/cy9vxrk9apdjh0vqbgjagmgc9gq96yyy-dns-3.0.0
/nix/store/cyaz3zj6w5fhw7v8nmagpw8vqkm0bdzv-th-lift-instances-0.1.11
/nix/store/d1yjrprvmcll230v3x1ym86x8zvq72rq-base58-bytestring-0.1.0
/nix/store/d4yib20lqn7krrqmm0wwbwjxjfa78xqp-coreutils-8.28
/nix/store/d9ivsmlzygjzwjck8ikksh190wr3d47y-glibc-locales-2.25-49
/nix/store/dchy14aahmza9rq50z0qbfarg26rxhjj-either-4.4.1.1
/nix/store/df7bf73snmyld4y4a77j2mzyi0vzyfmf-cryptonite-openssl-0.6
/nix/store/dfgr5qd33497yvx3d81ahb7dsibcmw3g-zlib-0.6.1.2
/nix/store/dfi6ajp001slfq743km73j8fdas39080-call-stack-0.1.0
/nix/store/dmkaq8nlz046c806jx1cavvxvr9nwsn9-contravariant-1.4
/nix/store/dr0r31ivqviqfwl350ccjnshcws9kynr-entropy-0.3.7
/nix/store/dsjkns6r9g860vn0idy2072f6cli0gky-stdenv
/nix/store/dxwr51am2gp9lqjqz517k33sir0lbl23-foundation-0.0.13
/nix/store/dy1fjqfnk1w0q2nix38b21cjqx218val-paxctl-0.9
/nix/store/f0ajnaq03xmnhd3m5illy4647xkq3qj1-servant-docs-0.11.1
/nix/store/f0df9h6igy2cfh5lglgj6d0ig4kf7gqw-memory-0.14.6
/nix/store/f54jbqi2zz9prls9mqidvdxyi5f71w8v-adjunctions-4.3
/nix/store/f62wgbfrpkknlvssgrv6izmvvq74vfwq-parallel-3.2.1.1
/nix/store/f6n0niicibsnmz24c60wdxcggpf1yzmc-syb-0.7
/nix/store/faqn96n8xv96y43kghasyfm2y1cmdi9k-time-units-1.0.0
/nix/store/fj1a39mmgbdjd012jqf9x6ngw3mvzvd3-wai-logger-2.3.0
/nix/store/flb9ar1xdd13c606aa4my9miy3iv4vyk-bash-4.4-p12
/nix/store/fmazg0pddxb4l0vknh0k8s5q78ab08fy-tf-random-0.5
/nix/store/fmkraqg7ykfwh6jj079979lyqwj5fivz-half-0.2.2.3
/nix/store/fn41251rwg6753xh3830xs4r5rvcvahl-th-reify-many-0.1.8
/nix/store/fpwndcxf3sgzyzmcb74dp8p380y23j01-optparse-applicative-0.13.2.0
/nix/store/fqa5gcqf69m5q8v5ykvpz0ds3x4rz443-bytestring-builder-0.10.8.1.0
/nix/store/g1dx5j686w5kp4kvmy48bfydqg884mry-monad-control-1.0.2.2
/nix/store/g65l985579ri87i8m3906a2nmyrl24a2-gcc-6.4.0
/nix/store/g6lmh8m6zzg7cn024kfmi1vz8673vd26-plutus-prototype-0.1.0.0-data
/nix/store/g8il1ja39i73fmhrkd5rcyrnfd27wn1v-websockets-0.10.0.0
/nix/store/gg4j59jrcpmy3jv8lri8s33zwhkgfhh7-transformers-compat-0.5.1.4
/nix/store/ggwv324rgyakfj9il8v3i9adv5yb4yps-th-lift-0.7.7
/nix/store/ghkbm6c87nbb7l8wri44bl21azhn822w-hourglass-0.2.10
/nix/store/gsazyyx8fzg732gqxhb0bd7kln1xk9jc-swagger2-2.1.4.1
/nix/store/h5c2vfaxhpv7v0p1vlh3h7sdiphsi4rv-gnused-4.4
/nix/store/h7gzm2bjlr6c7b3rxg9ai2nl3385w2rb-http-media-0.6.4
/nix/store/hfkkqzqw7m1w6dazwl3bzxjv0895y5h7-iproute-1.7.1
/nix/store/hhcby2ncg7s75bm8f87j4i7wjzx20nvw-libffi-3.2.1
/nix/store/hj3hw6y9bvw7cp36dm3lw5nh2fnv8g7c-integer-logarithms-1.0.2
/nix/store/hpyznqqzawyk576pi1m74fvc1rf3lbv0-purescript-bridge-0.11.0.0
/nix/store/hrxkcm0lnnp54m99rxmr7z2alah8g6n8-ansi-terminal-0.6.3.1
/nix/store/hv6wxnydjml90p4m03rzlfwlsynirpxp-random-shuffle-0.0.4
/nix/store/hvyiwlh39k8n3ls2ijviqzx8nq878v7m-cryptohash-sha1-0.11.100.1
/nix/store/i4si3gkr1hbm6lcz3hakcxqnc334wfk4-free-4.12.4
/nix/store/i8wz3m067dzbs5x2glhxvcg7lvds1942-zlib-1.2.11
/nix/store/ic5criggbnpfrdnxdhdpkq11birkfz5m-gcc-6.4.0-lib
/nix/store/id8ay7jmid8c3hqlbjkp1wmcc1pi5q9p-kademlia-1.1.0.1
/nix/store/ininf0ki1iir8lhhjshh7p9k0lafj1wy-plutus-prototype-0.1.0.0
/nix/store/ix9blfmdcqvz2cjrh1q9l7a0pwlbsz1z-byteable-0.1.1
/nix/store/j12qgvfgp56dlvsz5wivh0jd6zsm5vsv-servant-server-0.12
/nix/store/j41pm590lflva7kkx643kycix8njjrld-xz-5.2.3
/nix/store/j6xxfkamqm0vny8c9vjg80lb6nm56ikp-wai-websockets-3.0.1.1
/nix/store/jbmgxddlp9zdjj89far5v0bhfaqhv6ai-data-default-0.7.1.1
/nix/store/jd1r29f13bmy1pkjayczx94spmi8ix6g-servant-swagger-ui-0.2.4.3.4.0
/nix/store/jg53y75wjswnm5js40s0hbs42yfzradm-monad-par-0.3.4.8
/nix/store/jgddcrvx59vgrykbyayj3mza5xlkwbxd-generic-arbitrary-0.1.0
/nix/store/jgzhmj983w4r2wgvw7481jr9kpbr43kv-cryptonite-0.23
/nix/store/jhqfayk6cr18prpfcbv8zvchrqw2j97l-case-insensitive-1.2.0.10
/nix/store/jiba5rn62kd1484qjiydg8bi8wmww2jr-hscolour-1.24.2
/nix/store/jmqxk2acjiq3vkglv5j3fwhkyxkrmlsz-attoparsec-iso8601-1.0.0.0
/nix/store/jn350na5wcshwsixpq1wbskdp7r3x0r3-openssl-1.0.2l-bin
/nix/store/jn4a01zl1k1nf1ljlhbas3y4g63laa94-warp-tls-3.2.4
/nix/store/jqdysr2sm8v0sqap8i0kd45zw6frgk50-stdenv
/nix/store/jx9zrrr1r8c5h36rh03llb86kjdpx7kf-double-conversion-2.0.2.0
/nix/store/jxanh07m0ygzvw2ximkicwnnj20hj43z-unix-compat-0.4.3.1
/nix/store/jzmncq97cc57yrsw86dlhlgawr0zgh4j-errors-2.2.1
/nix/store/k5s4c7i9p2qvwa847jn23z9x3m22c4nk-erf-2.0.0.0
/nix/store/k6f7drbaaiqm3dpfggwwrflg6mp0c8sq-abstract-deque-0.3
/nix/store/k6m804pr9cdy61p29698rmxqp3y4vcbf-fail-4.9.0.0
/nix/store/k9w88zs819bzwmy4rz2c1zg5bd08qd0f-writer-cps-transformers-0.1.1.3
/nix/store/kd7vb1afwvm2k65n9qjdw767w6lnwsrd-gcc-wrapper-6.4.0
/nix/store/kkrg56qh1l655bcdr6amyp7k59ndf81z-diffutils-3.6
/nix/store/knqf8vb3fway6scygvg4rw7p5cd6lldg-filelock-0.1.1.2
/nix/store/kpnj0h0340wd0i86q0523527ikbz62ll-gnutar-1.29
/nix/store/kvh74s8dpp5slk8l5qsph6l5x2sf6vbh-th-orphans-0.13.4
/nix/store/kwyrcqaknca4gmk5pf69lw0ldpni7f65-simple-sendfile-0.2.25
/nix/store/kxpmk4zl36nph7ymfa6kacl76fn98vam-text-format-0.3.1.1
/nix/store/l2nf661lkdx24r2nsf6kln5zncamqg9n-linux-headers-4.4.10
/nix/store/l41v7acmahgy6h0lfy25zbr72ay6k7kb-hashable-1.2.6.1
/nix/store/l8pcpvb9nqf7hm8q42wm9l570cisvq1j-vector-binary-instances-0.2.3.5
/nix/store/ld4sw9wx8d616mb6jq5hdcd5m06iq39x-ncurses-6.0-20170902-dev
/nix/store/lf0sqkvww7b2p6jbqz2x7gd7g3f3m3kh-data-default-instances-containers-0.0.1
/nix/store/lfh9rwyfja5c8fhalnd12mniqwa3raav-parsec-3.1.11
/nix/store/ll42l16jpkbvd56gshqk7c5mk98h6lqb-th-abstraction-0.2.5.0
/nix/store/lnj4ih1y1yjxbj5h1rh01pzp5lk6h8hi-ncurses-6.0-20170902
/nix/store/lp49ww69vllq2mwsd38rpzfr9h448397-ed-1.14.2
/nix/store/lwvnvf5l63irkhrwbbqy95j8ffrk22s0-scientific-0.3.5.1
/nix/store/lwyhqyx7sm3va37pv1jxzaz2v7g4b4fv-snappy-1.1.4
/nix/store/ly2997h2zvbn19fadzkx9hi7i8ka75kz-servant-swagger-1.1.4
/nix/store/lznrccq1d1mlp0836mdl4xqdxh3jmndp-x509-system-1.6.6
/nix/store/m2w033lh148ra7nj4qhmni6k8lqxx996-unbounded-delays-0.1.1.0
/nix/store/md0hbqgzsxg5vpippsplkir124zmkb20-statistics-0.13.3.0
/nix/store/mdhv7zxnbg2qgqq9chjkyxmbccyk09hs-asn1-encoding-0.9.5
/nix/store/mfd659h5bpchk9ymkf9ac7b3a069rl4s-servant-multipart-0.11
/nix/store/mgliggkmc6rdpfisa51i7w96alx2hr0n-HUnit-1.5.0.0
/nix/store/mijvc5gl5caranrh0kh2w8fzwfzb2ahx-lrucache-1.2.0.0
/nix/store/mngjvr1amwlyy8ildjf9rmv3xvvlqab0-void-0.7.2
/nix/store/msga1izc15i0m3326r822y5i0ip356zk-microlens-mtl-0.1.11.0
/nix/store/mvw8fp1hghr7jxj034lf21fzqn2svvi2-vault-0.3.0.7
/nix/store/mw2jfhhw70b5ml6b83rv666ahbd63b49-data-accessor-0.2.2.7
/nix/store/mz1w9mqyn2k02is40axffsfh1mrvb066-rocksdb-haskell-1.0.0
/nix/store/n0djhiqlc0lyhkhxrqjl08nhd7abrrhq-QuickCheck-2.9.2
/nix/store/n2xkxi24jj2l2n2nkcm7frhik5wj77cn-network-transport-inmemory-0.5.1
/nix/store/n91vqgfwbc0kl67ma1k4mm2ra9z53q0j-unordered-containers-0.2.8.0
/nix/store/ng7b1hg0prnwqpwf3mpmm7g0gqbmb4wv-operational-0.2.3.5
/nix/store/nikr9k5id7mzz1d4cw3hvawnrvbb3rls-microlens-0.4.8.1
/nix/store/nl0jvp3w6y8q88szxdlkwk51blr1qppx-cookie-0.4.2.1
/nix/store/nphrycjv682xvz5n6mrl1madh2z5mlpy-exceptions-0.8.3
/nix/store/ns4p339c4i0zvfvcs79mr1cpbcgb7xcb-semigroups-0.18.3
/nix/store/nvxs2ydc0g8cqy85bxzds5d1f79dkd9y-ed25519-0.0.5.0
/nix/store/nxbmhplf3k3ig5rsqr5l4n7jn6w345sy-extensible-exceptions-0.1.1.4
/nix/store/p076z7745hqzrg6yk1z5asm7gghgw7zi-streaming-commons-0.1.17
/nix/store/p0cjsmcmchbmhv2i7j78c4ig8gig5yyk-wai-extra-3.0.20.0
/nix/store/p6wr6n7nniysw4birw7bax6vd79f8pf3-http-client-0.5.7.0
/nix/store/pd5c65d1d99hn33831lxmrgqhnxg7q6z-pcre-8.40
/nix/store/prhk2d3d02qzc30d5h6g70sxa3zrcbk1-data-default-class-0.1.2.0
/nix/store/pvhpvsx000daql4b12pcb2azgx98psjy-StateVar-1.1.0.4
/nix/store/pyqzyl3yvam1magahsm8xahx5hs1ngh9-gawk-4.1.4
/nix/store/q3ha03vz35bsdqcqr86bxz8a06in4n0z-utf8-string-1.0.1.1
/nix/store/q7ih57a82pyda2mlwkplcmdk7s5ic21i-old-time-1.1.0.3
/nix/store/q8k7r5zbf03ydrpm7imfzds5b2nmdf0a-zlib-1.2.11-dev
/nix/store/qbaqvigvl38dlcxl3m6mb9lf5lfdyznq-conduit-1.2.11
/nix/store/qbh4ip5j100k57ns463h8y9r1hm7ll1q-fast-logger-2.4.10
/nix/store/qcmxq3ags4zb3h24m987pby2mb3x8mr2-easy-file-0.2.1
/nix/store/qszqg0vk6341f98s1xjgzcdvl8gh8c0d-warp-3.2.13
/nix/store/qy9w653h90iy4n3cq8w41gycvjj7v3xa-bifunctors-5.4.2
/nix/store/r16qciq85691n69vrkq3m8kl8iqnn6pb-wai-app-static-3.1.6.1
/nix/store/r1cf76rskp19gphnlxk8zlrc3ycpcgvx-binutils-2.28.1-lib
/nix/store/r291j0713hdjymsz4px3i6fb1d3ikx4i-primitive-0.6.2.0
/nix/store/r5b9358zavyysd1dk5p9lxh0bbv937qp-ekg-wai-0.1.0.2
/nix/store/r6lim96p4waln7mdxknmv2alcfz3kk8a-blaze-markup-0.8.0.0
/nix/store/r8rj711df5n2c7pbzlcwnpfhwzvm45sw-openssl-1.0.2l-dev
/nix/store/rbzg4syncn4x9lpfi65wg8nd74b59n2m-mono-traversable-1.0.2.1
/nix/store/rfz0qavkqk7i3kqix8rfkf8cbkvy1maf-monad-par-extras-0.3.3
/nix/store/rhqwdgr0abl1maig16lkvb6n396s3795-ekg-wai-0.1.0.2-data
/nix/store/rs1q5pq11g9q3c9h5s631jik13znxsi2-ghc-8.0.2-doc
/nix/store/ryp53admmjd9rpg9gbij8zrbq391jyf8-hspec-discover-2.4.4
/nix/store/rzqyfil4xmja85w5sm13m107j1zm8d7s-ghc-8.0.2
/nix/store/s2nawngc54s8lpl7lfydnw48ii3cjg95-optparse-simple-0.0.3
/nix/store/s45rrabqsbprgi7ay3rpndsfanbbm5nf-servant-0.12
/nix/store/s6wz7l5h0ya6qciy0xcxwv05l50snfy8-gnugrep-3.1
/nix/store/sas3nvh95z0gg3nshfk59y4zsknqpzdc-systemd-1.1.2
/nix/store/sdghk72gjb7cyvl88wrq36kgb8s1g0lm-byteable-0.1.1-data
/nix/store/sh9riblgybym34j5rfdymnb3vlpxvfdn-ekg-json-0.1.0.6
/nix/store/sr86clfd6x7b1qbignfa7xgk6gnbixiz-ansi-wl-pprint-0.6.7.3
/nix/store/swldn50hq86kl99ppkjny6apr3k788jw-psqueues-0.2.3.0
/nix/store/sz1z97275ljs6dp2wmn7hrwgygalirzv-fmt-0.5.0.0
/nix/store/v0ga0yaicm3q1m05y574fn1whfxs769r-extra-1.5.3
/nix/store/v5xah2nhf5hygzshgw1cscd41646d11k-time-locale-compat-0.1.1.3
/nix/store/v6s9mvcg8wqpgbbmf86fq1h5sy0jv15b-xz-5.2.3-dev
/nix/store/v71yz1j8xs445bf1wy15rir6rfh4yiha-tls-1.3.11
/nix/store/vc9x1x709famswk1971ym4samfczzqpc-control-monad-omega-0.3.1
/nix/store/vgn723arcfs9l846hbrq0hq752gs06rp-generic-deriving-1.11.2
/nix/store/vls1av4rl2rwy4yn9193fxajkgj1fd65-data-default-instances-old-locale-0.0.1
/nix/store/vrmwr3qd8jidrniipqa6p2vwk1h1dvq1-socks-0.5.5
/nix/store/vw9xlbanc062ds7wbn8w1376cdn8gry1-old-locale-1.0.0.7
/nix/store/w2hjdjwlksz00nfwcxj0ppkzz7ywz68l-cardano-crypto-1.0.0
/nix/store/wcc8j0cg2sc8kizs76hfyynjras3xj21-uri-bytestring-0.2.3.3
/nix/store/whbi6aw6zyfxpvsfy0cg16im0bccgq6p-safe-0.3.15
/nix/store/winsc6b5q2baa4yl6w2r9glayh46b0ic-MonadRandom-0.5.1
/nix/store/wk0ibin1jsrd2p2h3f32kb5ihlgfrisn-cmdargs-0.10.17
/nix/store/x0hsfnk95g7wn2llvypgrl4sa4rx9rv9-http-date-0.0.6.1
/nix/store/x17vgd35lb4xpz07g7r0l8m72q4fv0nw-hspec-core-2.4.4
/nix/store/x4qj0389syzrgrp2ikxca58cxdkii7sy-reflection-2.1.2
/nix/store/xbf6l1nk1h7fwg1gwqqmnzz95vg856bi-gitrev-1.3.1
/nix/store/xdbdlyinkmzy1c0yp5sjlm4pnpf6zz5x-auto-update-0.1.4
/nix/store/xildi0d1g9jnmjk9b2bbqsczim09hdjs-uuid-types-1.0.3
/nix/store/xjk36rlz3lhc8rn44q8yfq60fr0pidsc-lens-4.15.4
/nix/store/xkyddvlil3xwlcwrf3jyagfjxhydnny6-type-operators-0.1.0.4
/nix/store/xlw6ya3f4nd9n91h9pcr28xci08j33v1-x509-1.7.2
/nix/store/xlyvs58cvi3c39yi676822mb2xmc3625-connection-0.2.8
/nix/store/xmbksccx75klzrd0x17qm2pps2mzazc7-semver-0.3.3.1
/nix/store/xq5dw2qxz9b82xh53119xd40ffmwabd4-rocksdb-5.1.2
/nix/store/xsjdl37lcqqlpcf0z035d16bf5f9r90q-kan-extensions-5.0.2
/nix/store/y480kmqq95yf4g1bqgakl2jvkafvq5kh-wai-3.2.1.1
/nix/store/y5ap1y5d1cnz3kidhixs8srqw4rxd5d5-bindings-DSL-1.0.23
/nix/store/y78wxgx4n81yf7236ifk9ih08fp9nbaa-network-transport-0.5.2
/nix/store/yffxqy7ijqzmzlvn4rzf5nprvki08myh-math-functions-0.2.1.0
/nix/store/yg1g1hh6mrmyc06y0vc2dlx2wdsmrc4p-hspec-2.4.4
/nix/store/yim9hlqr7wdsbf605paiy25rq83fjdsy-resourcet-1.1.9
/nix/store/yj4b630bm6yscdw8j2sa1sb61j3rdqsy-perl-5.24.2
/nix/store/yjli2hng9aq9vqf3jc2r117k84hm91bv-mime-types-0.1.0.7
/nix/store/ykshn1xm77wzly666jzrgmfz5ll1dmsq-autoexporter-1.1.2
/nix/store/z470j6lybdsy4ql972k392490bprhd2g-binutils-2.28.1
/nix/store/z5z8ldravlksmw7fqalyzr4i75x8ayjv-gmp-6.1.2
/nix/store/zcpl6mzx78xkdl6myjj5hgv8c21bkxcv-neat-interpolation-0.3.2.1
/nix/store/zcvsys6k2z2xklpl8nr85019vw8hzizw-ekg-core-0.1.1.3
/nix/store/zh44bg80xchgvwr4m0ij96xvl1wpq6s1-constraints-0.9.1
/nix/store/zldnw7nn8gmh5833xgb8970wgzf52qaw-file-embed-0.0.10
/nix/store/zpg78y1mf0di6127q6r51kgx2q8cxsvv-glibc-2.25-49
/nix/store/zsff4pljmqkm65n6mzlyisrhqj0p998s-async-2.1.1.1
/nix/store/zsfnlmvw8k7akg1s0ypdy5jd1kq0d8hn-glibc-2.25-49-dev
/nix/store/zssrpgf9sdzrlgjzlv3rzsh1cxvri525-mwc-random-0.13.6.0
/nix/store/zv86mp9qr1kk2sxv174fxrmly82wakr0-xz-5.2.3-bin
/nix/store/zvmzvnnqw8zy17s1qy5mmqwvisxyvvr9-network-uri-2.6.1.0
fetching path ‘/nix/store/d9ivsmlzygjzwjck8ikksh190wr3d47y-glibc-locales-2.25-49’...
fetching path ‘/nix/store/fqa5gcqf69m5q8v5ykvpz0ds3x4rz443-bytestring-builder-0.10.8.1.0’...
fetching path ‘/nix/store/sdghk72gjb7cyvl88wrq36kgb8s1g0lm-byteable-0.1.1-data’...
fetching path ‘/nix/store/rhqwdgr0abl1maig16lkvb6n396s3795-ekg-wai-0.1.0.2-data’...
fetching path ‘/nix/store/k6m804pr9cdy61p29698rmxqp3y4vcbf-fail-4.9.0.0’...
fetching path ‘/nix/store/zpg78y1mf0di6127q6r51kgx2q8cxsvv-glibc-2.25-49’...
fetching path ‘/nix/store/l2nf661lkdx24r2nsf6kln5zncamqg9n-linux-headers-4.4.10’...
fetching path ‘/nix/store/b0z23b9gbkj4p5rm52hlmf86mqq1n7f3-ncurses-6.0-20170902-man’...
fetching path ‘/nix/store/2a8q4a7pvwf9p3whzrgd7s03nqp7n3xm-pem-0.2.2-data’...
fetching path ‘/nix/store/8i9xl98kswgbani8bkrxr023nh4i51k5-attr-2.4.47’...
fetching path ‘/nix/store/flb9ar1xdd13c606aa4my9miy3iv4vyk-bash-4.4-p12’...
fetching path ‘/nix/store/r1cf76rskp19gphnlxk8zlrc3ycpcgvx-binutils-2.28.1-lib’...
fetching path ‘/nix/store/b6571mr8rfn82psy4lhizaz3w09fnz6a-acl-2.2.52’...
fetching path ‘/nix/store/5dnva19r2z20jahsx3jxm565qwjxsynl-bzip2-1.0.6.0.1’...
fetching path ‘/nix/store/d4yib20lqn7krrqmm0wwbwjxjfa78xqp-coreutils-8.28’...
fetching path ‘/nix/store/z470j6lybdsy4ql972k392490bprhd2g-binutils-2.28.1’...
fetching path ‘/nix/store/by3lqpgph3c4maz6vb2xhd64vhagfc67-bzip2-1.0.6.0.1-bin’...
fetching path ‘/nix/store/kkrg56qh1l655bcdr6amyp7k59ndf81z-diffutils-3.6’...
fetching path ‘/nix/store/lp49ww69vllq2mwsd38rpzfr9h448397-ed-1.14.2’...
fetching path ‘/nix/store/7yj6x2spcq8bk8c4rxij76h36h9559sb-expand-response-params’...
fetching path ‘/nix/store/871adhqrxl37bpi5w9g9g6y0i1n4f9cd-findutils-4.6.0’...
fetching path ‘/nix/store/pyqzyl3yvam1magahsm8xahx5hs1ngh9-gawk-4.1.4’...
fetching path ‘/nix/store/ic5criggbnpfrdnxdhdpkq11birkfz5m-gcc-6.4.0-lib’...
fetching path ‘/nix/store/rs1q5pq11g9q3c9h5s631jik13znxsi2-ghc-8.0.2-doc’...
fetching path ‘/nix/store/50h9s25lzbs3a8s3rvpd02vj6l28din8-glibc-2.25-49-bin’...
fetching path ‘/nix/store/z5z8ldravlksmw7fqalyzr4i75x8ayjv-gmp-6.1.2’...
fetching path ‘/nix/store/zsfnlmvw8k7akg1s0ypdy5jd1kq0d8hn-glibc-2.25-49-dev’...
fetching path ‘/nix/store/2d2in2wqdgxr0p210lv17dvxibpnfw49-gmp-6.1.2-dev’...
fetching path ‘/nix/store/8g2x5qjqyv9a7glmvpzv1wylnbf1cwvw-gnumake-4.2.1’...
fetching path ‘/nix/store/h5c2vfaxhpv7v0p1vlh3h7sdiphsi4rv-gnused-4.4’...
fetching path ‘/nix/store/kpnj0h0340wd0i86q0523527ikbz62ll-gnutar-1.29’...
fetching path ‘/nix/store/9j72vyzlcikn12l72nhdig7sksc0z38c-google-gflags-2.2.0’...
fetching path ‘/nix/store/abk6h8g0hj6dyk75h320mgls3ygshl0w-gzip-1.8’...
fetching path ‘/nix/store/afs50wwrblgpnmva9ibzdjv7nqr7b6y3-jemalloc-4.5.0’...
fetching path ‘/nix/store/hhcby2ncg7s75bm8f87j4i7wjzx20nvw-libffi-3.2.1’...
fetching path ‘/nix/store/7ydrnkyarbpd3qa3fzhg8ms6nnl70g3l-lz4-131’...
fetching path ‘/nix/store/lnj4ih1y1yjxbj5h1rh01pzp5lk6h8hi-ncurses-6.0-20170902’...
fetching path ‘/nix/store/cr49q6vvyhfs48dg15ys3mghfzgc80i7-openssl-1.0.2l’...
fetching path ‘/nix/store/44dbwrwfy6lj45jy02d0rjbj9930nwf3-patch-2.7.5’...
fetching path ‘/nix/store/ld4sw9wx8d616mb6jq5hdcd5m06iq39x-ncurses-6.0-20170902-dev’...
fetching path ‘/nix/store/bl1mv4i6ywns4hy0nvbdn93m9i12ryna-patchelf-0.9’...
fetching path ‘/nix/store/dy1fjqfnk1w0q2nix38b21cjqx218val-paxctl-0.9’...
fetching path ‘/nix/store/pd5c65d1d99hn33831lxmrgqhnxg7q6z-pcre-8.40’...
fetching path ‘/nix/store/yj4b630bm6yscdw8j2sa1sb61j3rdqsy-perl-5.24.2’...
fetching path ‘/nix/store/g6lmh8m6zzg7cn024kfmi1vz8673vd26-plutus-prototype-0.1.0.0-data’...
fetching path ‘/nix/store/s6wz7l5h0ya6qciy0xcxwv05l50snfy8-gnugrep-3.1’...
fetching path ‘/nix/store/lwyhqyx7sm3va37pv1jxzaz2v7g4b4fv-snappy-1.1.4’...
fetching path ‘/nix/store/j41pm590lflva7kkx643kycix8njjrld-xz-5.2.3’...
fetching path ‘/nix/store/i8wz3m067dzbs5x2glhxvcg7lvds1942-zlib-1.2.11’...
fetching path ‘/nix/store/zv86mp9qr1kk2sxv174fxrmly82wakr0-xz-5.2.3-bin’...
fetching path ‘/nix/store/jn350na5wcshwsixpq1wbskdp7r3x0r3-openssl-1.0.2l-bin’...
fetching path ‘/nix/store/g65l985579ri87i8m3906a2nmyrl24a2-gcc-6.4.0’...
fetching path ‘/nix/store/xq5dw2qxz9b82xh53119xd40ffmwabd4-rocksdb-5.1.2’...
fetching path ‘/nix/store/r8rj711df5n2c7pbzlcwnpfhwzvm45sw-openssl-1.0.2l-dev’...
fetching path ‘/nix/store/dsjkns6r9g860vn0idy2072f6cli0gky-stdenv’...
fetching path ‘/nix/store/v6s9mvcg8wqpgbbmf86fq1h5sy0jv15b-xz-5.2.3-dev’...
fetching path ‘/nix/store/q8k7r5zbf03ydrpm7imfzds5b2nmdf0a-zlib-1.2.11-dev’...
building path(s) ‘/nix/store/j323vm17wnb7bsqx8ysimmava4x9818l-remove-references-to’
fetching path ‘/nix/store/kd7vb1afwvm2k65n9qjdw767w6lnwsrd-gcc-wrapper-6.4.0’...
fetching path ‘/nix/store/rzqyfil4xmja85w5sm13m107j1zm8d7s-ghc-8.0.2’...
fetching path ‘/nix/store/jqdysr2sm8v0sqap8i0kd45zw6frgk50-stdenv’...
mdupont@debian-build-speed:~/experiments/cardano-sl$ nix-build -A cardano-sl-wallet --cores 0 --max-jobs 2 --no-build-output --out-link cardano-sl-1.0warning: dumping very large path (> 256 MiB); this may run out of memory
these derivations will be built:
/nix/store/zp1cp5sgim2kg91id1hpfq1ahk637qlb-remove-references-to.drv
/nix/store/hyw79sdcc3iskgl54cabzikpfr5p7fv1-cardano-sl-networking-1.0.3.drv
/nix/store/awlh3sk7fcgnmqnshpjdjy82914by4al-cardano-sl-util-1.0.3.drv
/nix/store/nj87asq130hynh9d1lxqfva3znmfx71n-cardano-sl-binary-1.0.3.drv
/nix/store/a3x2w9zj17f7537fhamp4k57ny80z0nk-cardano-sl-crypto-1.0.3.drv
/nix/store/ps2hljh7w8a95zp024fgcwbcfaq1n76r-cardano-sl-core-1.0.3.drv
/nix/store/bhaxxp3x8qbhpg4lv19q0f60q7dffyf0-cardano-sl-db-1.0.3.drv
/nix/store/28c80kr0gnj3qx3g76pxj8nbd9pmn6hy-cardano-sl-infra-1.0.3.drv
/nix/store/r3q52ag6pmrij4fqaza8ijaxkhdhcpb8-cardano-sl-lrc-1.0.3.drv
/nix/store/2gq0226ymf5z4ivqqwspa0skrwk1yf2j-cardano-sl-update-1.0.3.drv
/nix/store/5j2k0igkm1piypkvlf87n83f60kpff9p-cardano-sl-ssc-1.0.3.drv
/nix/store/d3sb4nncd2w6v2sgm65gqi53357nyp2i-cardano-sl-txp-1.0.3.drv
/nix/store/j91qymc383vn8lzx7xzgyw38g1n2qqcx-cardano-sl-delegation-1.0.3.drv
/nix/store/rnraz217gvwhr09bm828jyfk8a04jjc4-cardano-sl-block-1.0.3.drv
/nix/store/ly1w5pby699grak1q53dkvizyc0szbnl-cardano-sl-1.0.3.drv
/nix/store/dj0i58g3zm59m21l5x6bxq4qbl5cah92-cardano-sl-client-1.0.3.drv
/nix/store/j4cyz9ymql4djcjk3f7jfrqbdqfz1fn8-cardano-sl-generator-1.0.3.drv
/nix/store/hpzmi7fl5jqmbw5qpcs6bx6wgk3cfmp9-cardano-sl-wallet-1.0.3.drv
these paths will be fetched (145.46 MiB download, 2260.99 MiB unpacked):
/nix/store/00h4yapkvslcbwnb2ymmqr4485pggf81-split-0.2.3.2
/nix/store/0f438n0s414jkbacgj2kf9jfg3hrql3x-mmorph-1.0.9
/nix/store/0hx866jack2dln98fy3b0yzvix1hb9i3-base64-bytestring-1.0.0.1
/nix/store/0iw9nb2b0pllrcb2qh3cvi7n8mxg454z-clock-0.7.2
/nix/store/0q117q9i6jqf6xv9bkcm9p7yidypq7dg-http-types-0.9.1
/nix/store/0vrpw8p43yf8dk5rn1yh796fzqqx8vgy-cryptohash-md5-0.11.100.1
/nix/store/13nn2l0pvc3jy8vc2y8dh6nipl28y64c-natural-transformation-0.4
/nix/store/14jfpvbn52yf4whf95h8g18yhl3fqxmw-cardano-report-server-0.4.0
/nix/store/15izg48mmq14bzmx9mhmd25cbcsf6972-lzma-conduit-1.1.3.3
/nix/store/1682bnncb7rllsi29dhmgglc8vdcixwz-digest-0.0.1.2
/nix/store/1agf19q8cwb0655ha8hj8p4gzw0nlml6-servant-generic-0.1.0.1
/nix/store/1f8h4rchmgdl673ns66m3gp8956bf39b-pvss-0.2.0
/nix/store/1gc7s8kp8avq0m5jalji7ska35bghhyk-servant-blaze-0.7.1
/nix/store/1gy5r9sclpxspyggsm7k7i0gvyz8wgr3-hspec-expectations-0.8.2
/nix/store/1m6znb1ykgs122pv5m2na9f8p2x9qnhs-polyparse-1.12
/nix/store/1mhdpjjzr158c7a9y7cqb0hnmfkrgpac-transformers-base-0.4.4
/nix/store/1r2mziqg5dinv6r82wvvcfgmmkqc833y-blaze-html-0.9.0.1
/nix/store/1x6dpsf7iv51sw4xnpqhdw537hqimspk-tls-session-manager-0.0.0.1
/nix/store/220siz2yiawgx6i3jj9cki3lpn2ladx4-x509-store-1.6.5
/nix/store/26akzw7cij5ir5v28w8977jw4r69pl7f-stringsearch-0.3.6.6
/nix/store/296b4qcwk12xg605dyxmmb4pd6cdkq4y-concurrent-extra-0.7.0.10
/nix/store/2a8q4a7pvwf9p3whzrgd7s03nqp7n3xm-pem-0.2.2-data
/nix/store/2d2in2wqdgxr0p210lv17dvxibpnfw49-gmp-6.1.2-dev
/nix/store/2gx9z100j14w9470psd54fn49pkxkac4-SHA-1.6.4.2
/nix/store/2hkqg60k762v26m46bhqglna5y2i191p-cborg-0.1.1.0
/nix/store/2i6dgq94k9r2j33zf1101q81nnfsk70z-safecopy-0.9.3.2
/nix/store/2nm6698lr3kz0s62m8g830vakm0v1v61-network-transport-tcp-0.5.1
/nix/store/2sciak1xd9rfmx5gj74r7n2bl21g7f5i-formatting-6.2.4
/nix/store/2xbf9821arvcfxawy0lxhblgriqqwzl1-ether-0.5.1.0
/nix/store/312pd1gdk3knifhfrxccjd081w3bl61x-deriving-compat-0.3.6
/nix/store/367p0r6j9ldanhhfkcmrny0vplx078sm-canonical-json-0.5.0.0
/nix/store/36yfplwgbp18acf4hy1fmwb5dvdcnqyx-scrypt-0.5.0
/nix/store/37bv200k7xpqibdcb3hg8krcgxvmw0kl-log-warper-1.3.4
/nix/store/37qk8jwdijf21z9rykmj44z8b9ap2vgc-blaze-builder-0.4.0.2
/nix/store/3d97lrilf8fsp172gi3lqk80qvzccpv5-tagged-0.8.5
/nix/store/3dy8mz2x9fs5hjwyyzphxrz8ir24dp07-acid-state-0.14.2
/nix/store/40xjxxc8b48ml760fk2wy4ya8xdidkp5-base-prelude-1.2.0.1
/nix/store/417s4ypir4h9hxnrw759d479c556ijng-aeson-pretty-0.8.5
/nix/store/42wyaijdy7v979krqvdbb06zym3d9fb4-network-info-0.2.0.8
/nix/store/43inmkznjb7kcpgnhy3jcqwq5ai0pn40-random-1.1
/nix/store/44dbwrwfy6lj45jy02d0rjbj9930nwf3-patch-2.7.5
/nix/store/4c44v8fs8dzjmkxhr0xm19rh67v5a5g7-unix-time-0.3.7
/nix/store/4d363sp2wl8k1ig84n680sag5fhrr728-stm-2.4.4.1
/nix/store/4g0hn88h2qg703d55f4c8fni1qkm6kds-pem-0.2.2
/nix/store/4l7lzqjvm1y0nvf2s2vfiz6iy6xlajmf-uuid-1.3.13
/nix/store/50h9s25lzbs3a8s3rvpd02vj6l28din8-glibc-2.25-49-bin
/nix/store/52pys1ks83d4jjq2cyis4p5q150h5nmm-writer-cps-mtl-0.1.1.4
/nix/store/5a39g6k7lmbv4cwkxplhpjbxfbzzj8cm-mtl-2.2.1
/nix/store/5dnva19r2z20jahsx3jxm565qwjxsynl-bzip2-1.0.6.0.1
/nix/store/5jqrghdyinlagqv1wid5k16slli3izff-transformers-lift-0.2.0.1
/nix/store/5v9basc3pha9j9zd1wbd3lrl6bq8zlg3-profunctors-5.2.1
/nix/store/5y5sqmi8zv6zbmap3sng48swmp787845-distributive-0.5.3
/nix/store/63smavrcrn6ybrq4wmnxxvp6rr9dla73-vector-0.12.0.1
/nix/store/69anj95a05igj74ml9i3887qib61pkk9-unexceptionalio-0.3.0
/nix/store/69ps1410fmahvwx88g2kj1hvic7h5cnh-word8-0.1.3
/nix/store/6dvz5ydy72285qmf4d0xwdir6kblx4qv-lifted-base-0.2.3.11
/nix/store/6iz0bqx3a3qc8jfxmn001h80ixd3qr10-network-2.6.3.2
/nix/store/6y968gbrr2qwc7jjzhlyw03i8m4bmfiy-abstract-par-0.3.3
/nix/store/7fk1l6p1lmss8mq1w8v994mlqgk0wqmb-serokell-util-0.5.2
/nix/store/7h1k843sjgadwkg3var4p31l3axgp4k3-ekg-statsd-0.2.2.0
/nix/store/7q867i8kpvjcl7985jsykj773j5hi7a6-th-expand-syns-0.4.3.0
/nix/store/7vdmk8w2y59zdd0w83g5ghfijdksrbk3-generics-sop-0.3.1.0
/nix/store/7wfvdb91qjl420zb42vi6inlscpbjrrw-comonad-5.0.2
/nix/store/7ydrnkyarbpd3qa3fzhg8ms6nnl70g3l-lz4-131
/nix/store/7yj6x2spcq8bk8c4rxij76h36h9559sb-expand-response-params
/nix/store/7zvmpws8gsp4vz3pdd91zzdz0l22dkhp-th-utilities-0.2.0.1
/nix/store/82sr919h30qm5cjmb1k5zcfnprgaxgd3-cereal-0.5.4.0
/nix/store/83389b5ipswbrw2ypr6p0kvi3zlbd2wm-http-client-tls-0.3.5.1
/nix/store/846prn83isabk6z22zparmfnm9b9fl3s-vector-algorithms-0.7.0.1
/nix/store/85517imxlc4jjm583nva4arb2h41aa0q-asn1-types-0.3.2
/nix/store/871adhqrxl37bpi5w9g9g6y0i1n4f9cd-findutils-4.6.0
/nix/store/89g1viy6l1cxgrmmqwckxkzfvp4lka8c-text-1.2.2.2
/nix/store/8g2x5qjqyv9a7glmvpzv1wylnbf1cwvw-gnumake-4.2.1
/nix/store/8i9xl98kswgbani8bkrxr023nh4i51k5-attr-2.4.47
/nix/store/8w8l115477a7psa0qbaj6jdwb7w36qrw-quickcheck-instances-0.3.12
/nix/store/8yyv3ad330rqnzmwm4w1kn0ab45ja21b-string-conversions-0.4.0.1
/nix/store/928nq1zrxim4pgg598bx5xqprv1490s2-asn1-parse-0.9.4
/nix/store/95hl7clrx0zrz6g6javxpcjx3z849y5w-yaml-0.8.23.3
/nix/store/976cfb758rav7wy576mzsfn62vhz78h3-setenv-0.1.1.3
/nix/store/9a9x0c6wmwvz2drppkq89c0rfivxdx7b-base-compat-0.9.3
/nix/store/9b1f2a3fhmmjav8l4z65c6vli2c97myh-byteorder-1.0.4
/nix/store/9c4w6cvif6qk84nrkz0r4gqr7vc7nbis-base-orphans-0.6
/nix/store/9j420kzl4l0qap5q5y546fjq5npybdad-base16-bytestring-0.1.1.6
/nix/store/9j72vyzlcikn12l72nhdig7sksc0z38c-google-gflags-2.2.0
/nix/store/9kirmbq1n3v4vfvdwzb98ra4plldylna-http2-1.6.3
/nix/store/9lcc4nlw2ygx7shk5kaqbgv6sd3n7jq0-http-api-data-0.3.7.1
/nix/store/9pi46g09vaii0cyi9zrba280q7wqsm2r-x509-validation-1.6.9
/nix/store/a9chdxli5b0kd1l7mg25q2r676ndwwvv-hex-0.1.2
/nix/store/abk6h8g0hj6dyk75h320mgls3ygshl0w-gzip-1.8
/nix/store/abnxr6ah99b56zkirqm63x38sch2zaqq-prelude-extras-0.4.0.3
/nix/store/afs50wwrblgpnmva9ibzdjv7nqr7b6y3-jemalloc-4.5.0
/nix/store/agh70w6vxhw8i7lcsqwnga818yc7p6yx-cpphs-1.20.8
/nix/store/an78i15sinqah1lqxq93r4grz5dphsq7-data-default-instances-dlist-0.0.1
/nix/store/aq0c1khbwf5asip8mbh0kykp0n3hf78l-http-conduit-2.2.3.2
/nix/store/awjjqypgpacd4xp97k9ylyq6v6bbap1d-monad-loops-0.4.3
/nix/store/b0z23b9gbkj4p5rm52hlmf86mqq1n7f3-ncurses-6.0-20170902-man
/nix/store/b2sn3ynmdf79xm6y47gbkck6svnc01d3-appar-0.1.4
/nix/store/b6571mr8rfn82psy4lhizaz3w09fnz6a-acl-2.2.52
/nix/store/bl1mv4i6ywns4hy0nvbdn93m9i12ryna-patchelf-0.9
/nix/store/bwgfgg17rj62w6hnyijw70i3j33v4k1b-vector-th-unbox-0.2.1.6
/nix/store/bxf64prfhbnq0nkw3c72lb0d87zfvxd3-safe-exceptions-0.1.6.0
/nix/store/by3lqpgph3c4maz6vb2xhd64vhagfc67-bzip2-1.0.6.0.1-bin
/nix/store/c13qwawql5ki3fd2p09x2w8s10srvq72-aeson-1.1.2.0
/nix/store/c4wc2v9y96h6q5qsh0jipa1sjxzircpr-universum-0.7.0
/nix/store/c6rrb00yb9sv9gwcmlm7vam623l5yfnb-dlist-0.8.0.3
/nix/store/c7kvn75y1lpyyiak71gh3a6zmdim6zq6-insert-ordered-containers-0.2.1.0
/nix/store/caifh5lf4np7jkn0yhhf4z8l6cxv6hpc-attoparsec-0.13.1.0
/nix/store/cb48zr5hr4ivqqqvvsizgw6nq5pa888l-quickcheck-io-0.2.0
/nix/store/ccr1zidlqvys56fiw2zg8y788rvd9yzx-system-filepath-0.4.13.4
/nix/store/ch4vb6p38dlfl743qffagyp5i1zx9qy9-semigroupoids-5.2.1
/nix/store/cqj3bcnyv0l6958j4kh474pphdm4ysjm-tar-0.5.0.3
/nix/store/cr3zf2cf4d140bc6wsv5p87ysxry9lgx-conduit-extra-1.1.16
/nix/store/cr49q6vvyhfs48dg15ys3mghfzgc80i7-openssl-1.0.2l
/nix/store/cy9vxrk9apdjh0vqbgjagmgc9gq96yyy-dns-3.0.0
/nix/store/cyaz3zj6w5fhw7v8nmagpw8vqkm0bdzv-th-lift-instances-0.1.11
/nix/store/d1yjrprvmcll230v3x1ym86x8zvq72rq-base58-bytestring-0.1.0
/nix/store/d4yib20lqn7krrqmm0wwbwjxjfa78xqp-coreutils-8.28
/nix/store/d9ivsmlzygjzwjck8ikksh190wr3d47y-glibc-locales-2.25-49
/nix/store/dchy14aahmza9rq50z0qbfarg26rxhjj-either-4.4.1.1
/nix/store/df7bf73snmyld4y4a77j2mzyi0vzyfmf-cryptonite-openssl-0.6
/nix/store/dfgr5qd33497yvx3d81ahb7dsibcmw3g-zlib-0.6.1.2
/nix/store/dfi6ajp001slfq743km73j8fdas39080-call-stack-0.1.0
/nix/store/dmkaq8nlz046c806jx1cavvxvr9nwsn9-contravariant-1.4
/nix/store/dr0r31ivqviqfwl350ccjnshcws9kynr-entropy-0.3.7
/nix/store/dsjkns6r9g860vn0idy2072f6cli0gky-stdenv
/nix/store/dxwr51am2gp9lqjqz517k33sir0lbl23-foundation-0.0.13
/nix/store/dy1fjqfnk1w0q2nix38b21cjqx218val-paxctl-0.9
/nix/store/f0ajnaq03xmnhd3m5illy4647xkq3qj1-servant-docs-0.11.1
/nix/store/f0df9h6igy2cfh5lglgj6d0ig4kf7gqw-memory-0.14.6
/nix/store/f54jbqi2zz9prls9mqidvdxyi5f71w8v-adjunctions-4.3
/nix/store/f62wgbfrpkknlvssgrv6izmvvq74vfwq-parallel-3.2.1.1
/nix/store/f6n0niicibsnmz24c60wdxcggpf1yzmc-syb-0.7
/nix/store/faqn96n8xv96y43kghasyfm2y1cmdi9k-time-units-1.0.0
/nix/store/fj1a39mmgbdjd012jqf9x6ngw3mvzvd3-wai-logger-2.3.0
/nix/store/flb9ar1xdd13c606aa4my9miy3iv4vyk-bash-4.4-p12
/nix/store/fmazg0pddxb4l0vknh0k8s5q78ab08fy-tf-random-0.5
/nix/store/fmkraqg7ykfwh6jj079979lyqwj5fivz-half-0.2.2.3
/nix/store/fn41251rwg6753xh3830xs4r5rvcvahl-th-reify-many-0.1.8
/nix/store/fpwndcxf3sgzyzmcb74dp8p380y23j01-optparse-applicative-0.13.2.0
/nix/store/fqa5gcqf69m5q8v5ykvpz0ds3x4rz443-bytestring-builder-0.10.8.1.0
/nix/store/g1dx5j686w5kp4kvmy48bfydqg884mry-monad-control-1.0.2.2
/nix/store/g65l985579ri87i8m3906a2nmyrl24a2-gcc-6.4.0
/nix/store/g6lmh8m6zzg7cn024kfmi1vz8673vd26-plutus-prototype-0.1.0.0-data
/nix/store/g8il1ja39i73fmhrkd5rcyrnfd27wn1v-websockets-0.10.0.0
/nix/store/gg4j59jrcpmy3jv8lri8s33zwhkgfhh7-transformers-compat-0.5.1.4
/nix/store/ggwv324rgyakfj9il8v3i9adv5yb4yps-th-lift-0.7.7
/nix/store/ghkbm6c87nbb7l8wri44bl21azhn822w-hourglass-0.2.10
/nix/store/gsazyyx8fzg732gqxhb0bd7kln1xk9jc-swagger2-2.1.4.1
/nix/store/h5c2vfaxhpv7v0p1vlh3h7sdiphsi4rv-gnused-4.4
/nix/store/h7gzm2bjlr6c7b3rxg9ai2nl3385w2rb-http-media-0.6.4
/nix/store/hfkkqzqw7m1w6dazwl3bzxjv0895y5h7-iproute-1.7.1
/nix/store/hhcby2ncg7s75bm8f87j4i7wjzx20nvw-libffi-3.2.1
/nix/store/hj3hw6y9bvw7cp36dm3lw5nh2fnv8g7c-integer-logarithms-1.0.2
/nix/store/hpyznqqzawyk576pi1m74fvc1rf3lbv0-purescript-bridge-0.11.0.0
/nix/store/hrxkcm0lnnp54m99rxmr7z2alah8g6n8-ansi-terminal-0.6.3.1
/nix/store/hv6wxnydjml90p4m03rzlfwlsynirpxp-random-shuffle-0.0.4
/nix/store/hvyiwlh39k8n3ls2ijviqzx8nq878v7m-cryptohash-sha1-0.11.100.1
/nix/store/i4si3gkr1hbm6lcz3hakcxqnc334wfk4-free-4.12.4
/nix/store/i8wz3m067dzbs5x2glhxvcg7lvds1942-zlib-1.2.11
/nix/store/ic5criggbnpfrdnxdhdpkq11birkfz5m-gcc-6.4.0-lib
/nix/store/id8ay7jmid8c3hqlbjkp1wmcc1pi5q9p-kademlia-1.1.0.1
/nix/store/ininf0ki1iir8lhhjshh7p9k0lafj1wy-plutus-prototype-0.1.0.0
/nix/store/ix9blfmdcqvz2cjrh1q9l7a0pwlbsz1z-byteable-0.1.1
/nix/store/j12qgvfgp56dlvsz5wivh0jd6zsm5vsv-servant-server-0.12
/nix/store/j41pm590lflva7kkx643kycix8njjrld-xz-5.2.3
/nix/store/j6xxfkamqm0vny8c9vjg80lb6nm56ikp-wai-websockets-3.0.1.1
/nix/store/jbmgxddlp9zdjj89far5v0bhfaqhv6ai-data-default-0.7.1.1
/nix/store/jd1r29f13bmy1pkjayczx94spmi8ix6g-servant-swagger-ui-0.2.4.3.4.0
/nix/store/jg53y75wjswnm5js40s0hbs42yfzradm-monad-par-0.3.4.8
/nix/store/jgddcrvx59vgrykbyayj3mza5xlkwbxd-generic-arbitrary-0.1.0
/nix/store/jgzhmj983w4r2wgvw7481jr9kpbr43kv-cryptonite-0.23
/nix/store/jhqfayk6cr18prpfcbv8zvchrqw2j97l-case-insensitive-1.2.0.10
/nix/store/jiba5rn62kd1484qjiydg8bi8wmww2jr-hscolour-1.24.2
/nix/store/jmqxk2acjiq3vkglv5j3fwhkyxkrmlsz-attoparsec-iso8601-1.0.0.0
/nix/store/jn350na5wcshwsixpq1wbskdp7r3x0r3-openssl-1.0.2l-bin
/nix/store/jn4a01zl1k1nf1ljlhbas3y4g63laa94-warp-tls-3.2.4
/nix/store/jqdysr2sm8v0sqap8i0kd45zw6frgk50-stdenv
/nix/store/jx9zrrr1r8c5h36rh03llb86kjdpx7kf-double-conversion-2.0.2.0
/nix/store/jxanh07m0ygzvw2ximkicwnnj20hj43z-unix-compat-0.4.3.1
/nix/store/jzmncq97cc57yrsw86dlhlgawr0zgh4j-errors-2.2.1
/nix/store/k5s4c7i9p2qvwa847jn23z9x3m22c4nk-erf-2.0.0.0
/nix/store/k6f7drbaaiqm3dpfggwwrflg6mp0c8sq-abstract-deque-0.3
/nix/store/k6m804pr9cdy61p29698rmxqp3y4vcbf-fail-4.9.0.0
/nix/store/k9w88zs819bzwmy4rz2c1zg5bd08qd0f-writer-cps-transformers-0.1.1.3
/nix/store/kd7vb1afwvm2k65n9qjdw767w6lnwsrd-gcc-wrapper-6.4.0
/nix/store/kkrg56qh1l655bcdr6amyp7k59ndf81z-diffutils-3.6
/nix/store/knqf8vb3fway6scygvg4rw7p5cd6lldg-filelock-0.1.1.2
/nix/store/kpnj0h0340wd0i86q0523527ikbz62ll-gnutar-1.29
/nix/store/kvh74s8dpp5slk8l5qsph6l5x2sf6vbh-th-orphans-0.13.4
/nix/store/kwyrcqaknca4gmk5pf69lw0ldpni7f65-simple-sendfile-0.2.25
/nix/store/kxpmk4zl36nph7ymfa6kacl76fn98vam-text-format-0.3.1.1
/nix/store/l2nf661lkdx24r2nsf6kln5zncamqg9n-linux-headers-4.4.10
/nix/store/l41v7acmahgy6h0lfy25zbr72ay6k7kb-hashable-1.2.6.1
/nix/store/l8pcpvb9nqf7hm8q42wm9l570cisvq1j-vector-binary-instances-0.2.3.5
/nix/store/ld4sw9wx8d616mb6jq5hdcd5m06iq39x-ncurses-6.0-20170902-dev
/nix/store/lf0sqkvww7b2p6jbqz2x7gd7g3f3m3kh-data-default-instances-containers-0.0.1
/nix/store/lfh9rwyfja5c8fhalnd12mniqwa3raav-parsec-3.1.11
/nix/store/ll42l16jpkbvd56gshqk7c5mk98h6lqb-th-abstraction-0.2.5.0
/nix/store/lnj4ih1y1yjxbj5h1rh01pzp5lk6h8hi-ncurses-6.0-20170902
/nix/store/lp49ww69vllq2mwsd38rpzfr9h448397-ed-1.14.2
/nix/store/lwvnvf5l63irkhrwbbqy95j8ffrk22s0-scientific-0.3.5.1
/nix/store/lwyhqyx7sm3va37pv1jxzaz2v7g4b4fv-snappy-1.1.4
/nix/store/ly2997h2zvbn19fadzkx9hi7i8ka75kz-servant-swagger-1.1.4
/nix/store/lznrccq1d1mlp0836mdl4xqdxh3jmndp-x509-system-1.6.6
/nix/store/m2w033lh148ra7nj4qhmni6k8lqxx996-unbounded-delays-0.1.1.0
/nix/store/md0hbqgzsxg5vpippsplkir124zmkb20-statistics-0.13.3.0
/nix/store/mdhv7zxnbg2qgqq9chjkyxmbccyk09hs-asn1-encoding-0.9.5
/nix/store/mfd659h5bpchk9ymkf9ac7b3a069rl4s-servant-multipart-0.11
/nix/store/mgliggkmc6rdpfisa51i7w96alx2hr0n-HUnit-1.5.0.0
/nix/store/mijvc5gl5caranrh0kh2w8fzwfzb2ahx-lrucache-1.2.0.0
/nix/store/mngjvr1amwlyy8ildjf9rmv3xvvlqab0-void-0.7.2
/nix/store/msga1izc15i0m3326r822y5i0ip356zk-microlens-mtl-0.1.11.0
/nix/store/mvw8fp1hghr7jxj034lf21fzqn2svvi2-vault-0.3.0.7
/nix/store/mw2jfhhw70b5ml6b83rv666ahbd63b49-data-accessor-0.2.2.7
/nix/store/mz1w9mqyn2k02is40axffsfh1mrvb066-rocksdb-haskell-1.0.0
/nix/store/n0djhiqlc0lyhkhxrqjl08nhd7abrrhq-QuickCheck-2.9.2
/nix/store/n2xkxi24jj2l2n2nkcm7frhik5wj77cn-network-transport-inmemory-0.5.1
/nix/store/n91vqgfwbc0kl67ma1k4mm2ra9z53q0j-unordered-containers-0.2.8.0
/nix/store/ng7b1hg0prnwqpwf3mpmm7g0gqbmb4wv-operational-0.2.3.5
/nix/store/nikr9k5id7mzz1d4cw3hvawnrvbb3rls-microlens-0.4.8.1
/nix/store/nl0jvp3w6y8q88szxdlkwk51blr1qppx-cookie-0.4.2.1
/nix/store/nphrycjv682xvz5n6mrl1madh2z5mlpy-exceptions-0.8.3
/nix/store/ns4p339c4i0zvfvcs79mr1cpbcgb7xcb-semigroups-0.18.3
/nix/store/nvxs2ydc0g8cqy85bxzds5d1f79dkd9y-ed25519-0.0.5.0
/nix/store/nxbmhplf3k3ig5rsqr5l4n7jn6w345sy-extensible-exceptions-0.1.1.4
/nix/store/p076z7745hqzrg6yk1z5asm7gghgw7zi-streaming-commons-0.1.17
/nix/store/p0cjsmcmchbmhv2i7j78c4ig8gig5yyk-wai-extra-3.0.20.0
/nix/store/p6wr6n7nniysw4birw7bax6vd79f8pf3-http-client-0.5.7.0
/nix/store/pd5c65d1d99hn33831lxmrgqhnxg7q6z-pcre-8.40
/nix/store/prhk2d3d02qzc30d5h6g70sxa3zrcbk1-data-default-class-0.1.2.0
/nix/store/pvhpvsx000daql4b12pcb2azgx98psjy-StateVar-1.1.0.4
/nix/store/pyqzyl3yvam1magahsm8xahx5hs1ngh9-gawk-4.1.4
/nix/store/q3ha03vz35bsdqcqr86bxz8a06in4n0z-utf8-string-1.0.1.1
/nix/store/q7ih57a82pyda2mlwkplcmdk7s5ic21i-old-time-1.1.0.3
/nix/store/q8k7r5zbf03ydrpm7imfzds5b2nmdf0a-zlib-1.2.11-dev
/nix/store/qbaqvigvl38dlcxl3m6mb9lf5lfdyznq-conduit-1.2.11
/nix/store/qbh4ip5j100k57ns463h8y9r1hm7ll1q-fast-logger-2.4.10
/nix/store/qcmxq3ags4zb3h24m987pby2mb3x8mr2-easy-file-0.2.1
/nix/store/qszqg0vk6341f98s1xjgzcdvl8gh8c0d-warp-3.2.13
/nix/store/qy9w653h90iy4n3cq8w41gycvjj7v3xa-bifunctors-5.4.2
/nix/store/r16qciq85691n69vrkq3m8kl8iqnn6pb-wai-app-static-3.1.6.1
/nix/store/r1cf76rskp19gphnlxk8zlrc3ycpcgvx-binutils-2.28.1-lib
/nix/store/r291j0713hdjymsz4px3i6fb1d3ikx4i-primitive-0.6.2.0
/nix/store/r5b9358zavyysd1dk5p9lxh0bbv937qp-ekg-wai-0.1.0.2
/nix/store/r6lim96p4waln7mdxknmv2alcfz3kk8a-blaze-markup-0.8.0.0
/nix/store/r8rj711df5n2c7pbzlcwnpfhwzvm45sw-openssl-1.0.2l-dev
/nix/store/rbzg4syncn4x9lpfi65wg8nd74b59n2m-mono-traversable-1.0.2.1
/nix/store/rfz0qavkqk7i3kqix8rfkf8cbkvy1maf-monad-par-extras-0.3.3
/nix/store/rhqwdgr0abl1maig16lkvb6n396s3795-ekg-wai-0.1.0.2-data
/nix/store/rs1q5pq11g9q3c9h5s631jik13znxsi2-ghc-8.0.2-doc
/nix/store/ryp53admmjd9rpg9gbij8zrbq391jyf8-hspec-discover-2.4.4
/nix/store/rzqyfil4xmja85w5sm13m107j1zm8d7s-ghc-8.0.2
/nix/store/s2nawngc54s8lpl7lfydnw48ii3cjg95-optparse-simple-0.0.3
/nix/store/s45rrabqsbprgi7ay3rpndsfanbbm5nf-servant-0.12
/nix/store/s6wz7l5h0ya6qciy0xcxwv05l50snfy8-gnugrep-3.1
/nix/store/sas3nvh95z0gg3nshfk59y4zsknqpzdc-systemd-1.1.2
/nix/store/sdghk72gjb7cyvl88wrq36kgb8s1g0lm-byteable-0.1.1-data
/nix/store/sh9riblgybym34j5rfdymnb3vlpxvfdn-ekg-json-0.1.0.6
/nix/store/sr86clfd6x7b1qbignfa7xgk6gnbixiz-ansi-wl-pprint-0.6.7.3
/nix/store/swldn50hq86kl99ppkjny6apr3k788jw-psqueues-0.2.3.0
/nix/store/sz1z97275ljs6dp2wmn7hrwgygalirzv-fmt-0.5.0.0
/nix/store/v0ga0yaicm3q1m05y574fn1whfxs769r-extra-1.5.3
/nix/store/v5xah2nhf5hygzshgw1cscd41646d11k-time-locale-compat-0.1.1.3
/nix/store/v6s9mvcg8wqpgbbmf86fq1h5sy0jv15b-xz-5.2.3-dev
/nix/store/v71yz1j8xs445bf1wy15rir6rfh4yiha-tls-1.3.11
/nix/store/vc9x1x709famswk1971ym4samfczzqpc-control-monad-omega-0.3.1
/nix/store/vgn723arcfs9l846hbrq0hq752gs06rp-generic-deriving-1.11.2
/nix/store/vls1av4rl2rwy4yn9193fxajkgj1fd65-data-default-instances-old-locale-0.0.1
/nix/store/vrmwr3qd8jidrniipqa6p2vwk1h1dvq1-socks-0.5.5
/nix/store/vw9xlbanc062ds7wbn8w1376cdn8gry1-old-locale-1.0.0.7
/nix/store/w2hjdjwlksz00nfwcxj0ppkzz7ywz68l-cardano-crypto-1.0.0
/nix/store/wcc8j0cg2sc8kizs76hfyynjras3xj21-uri-bytestring-0.2.3.3
/nix/store/whbi6aw6zyfxpvsfy0cg16im0bccgq6p-safe-0.3.15
/nix/store/winsc6b5q2baa4yl6w2r9glayh46b0ic-MonadRandom-0.5.1
/nix/store/wk0ibin1jsrd2p2h3f32kb5ihlgfrisn-cmdargs-0.10.17
/nix/store/x0hsfnk95g7wn2llvypgrl4sa4rx9rv9-http-date-0.0.6.1
/nix/store/x17vgd35lb4xpz07g7r0l8m72q4fv0nw-hspec-core-2.4.4
/nix/store/x4qj0389syzrgrp2ikxca58cxdkii7sy-reflection-2.1.2
/nix/store/xbf6l1nk1h7fwg1gwqqmnzz95vg856bi-gitrev-1.3.1
/nix/store/xdbdlyinkmzy1c0yp5sjlm4pnpf6zz5x-auto-update-0.1.4
/nix/store/xildi0d1g9jnmjk9b2bbqsczim09hdjs-uuid-types-1.0.3
/nix/store/xjk36rlz3lhc8rn44q8yfq60fr0pidsc-lens-4.15.4
/nix/store/xkyddvlil3xwlcwrf3jyagfjxhydnny6-type-operators-0.1.0.4
/nix/store/xlw6ya3f4nd9n91h9pcr28xci08j33v1-x509-1.7.2
/nix/store/xlyvs58cvi3c39yi676822mb2xmc3625-connection-0.2.8
/nix/store/xmbksccx75klzrd0x17qm2pps2mzazc7-semver-0.3.3.1
/nix/store/xq5dw2qxz9b82xh53119xd40ffmwabd4-rocksdb-5.1.2
/nix/store/xsjdl37lcqqlpcf0z035d16bf5f9r90q-kan-extensions-5.0.2
/nix/store/y480kmqq95yf4g1bqgakl2jvkafvq5kh-wai-3.2.1.1
/nix/store/y5ap1y5d1cnz3kidhixs8srqw4rxd5d5-bindings-DSL-1.0.23
/nix/store/y78wxgx4n81yf7236ifk9ih08fp9nbaa-network-transport-0.5.2
/nix/store/yffxqy7ijqzmzlvn4rzf5nprvki08myh-math-functions-0.2.1.0
/nix/store/yg1g1hh6mrmyc06y0vc2dlx2wdsmrc4p-hspec-2.4.4
/nix/store/yim9hlqr7wdsbf605paiy25rq83fjdsy-resourcet-1.1.9
/nix/store/yj4b630bm6yscdw8j2sa1sb61j3rdqsy-perl-5.24.2
/nix/store/yjli2hng9aq9vqf3jc2r117k84hm91bv-mime-types-0.1.0.7
/nix/store/ykshn1xm77wzly666jzrgmfz5ll1dmsq-autoexporter-1.1.2
/nix/store/z470j6lybdsy4ql972k392490bprhd2g-binutils-2.28.1
/nix/store/z5z8ldravlksmw7fqalyzr4i75x8ayjv-gmp-6.1.2
/nix/store/zcpl6mzx78xkdl6myjj5hgv8c21bkxcv-neat-interpolation-0.3.2.1
/nix/store/zcvsys6k2z2xklpl8nr85019vw8hzizw-ekg-core-0.1.1.3
/nix/store/zh44bg80xchgvwr4m0ij96xvl1wpq6s1-constraints-0.9.1
/nix/store/zldnw7nn8gmh5833xgb8970wgzf52qaw-file-embed-0.0.10
/nix/store/zpg78y1mf0di6127q6r51kgx2q8cxsvv-glibc-2.25-49
/nix/store/zsff4pljmqkm65n6mzlyisrhqj0p998s-async-2.1.1.1
/nix/store/zsfnlmvw8k7akg1s0ypdy5jd1kq0d8hn-glibc-2.25-49-dev
/nix/store/zssrpgf9sdzrlgjzlv3rzsh1cxvri525-mwc-random-0.13.6.0
/nix/store/zv86mp9qr1kk2sxv174fxrmly82wakr0-xz-5.2.3-bin
/nix/store/zvmzvnnqw8zy17s1qy5mmqwvisxyvvr9-network-uri-2.6.1.0
fetching path ‘/nix/store/d9ivsmlzygjzwjck8ikksh190wr3d47y-glibc-locales-2.25-49’...
fetching path ‘/nix/store/fqa5gcqf69m5q8v5ykvpz0ds3x4rz443-bytestring-builder-0.10.8.1.0’...
fetching path ‘/nix/store/sdghk72gjb7cyvl88wrq36kgb8s1g0lm-byteable-0.1.1-data’...
fetching path ‘/nix/store/rhqwdgr0abl1maig16lkvb6n396s3795-ekg-wai-0.1.0.2-data’...
fetching path ‘/nix/store/k6m804pr9cdy61p29698rmxqp3y4vcbf-fail-4.9.0.0’...
fetching path ‘/nix/store/zpg78y1mf0di6127q6r51kgx2q8cxsvv-glibc-2.25-49’...
fetching path ‘/nix/store/l2nf661lkdx24r2nsf6kln5zncamqg9n-linux-headers-4.4.10’...
fetching path ‘/nix/store/b0z23b9gbkj4p5rm52hlmf86mqq1n7f3-ncurses-6.0-20170902-man’...
fetching path ‘/nix/store/2a8q4a7pvwf9p3whzrgd7s03nqp7n3xm-pem-0.2.2-data’...
fetching path ‘/nix/store/8i9xl98kswgbani8bkrxr023nh4i51k5-attr-2.4.47’...
fetching path ‘/nix/store/flb9ar1xdd13c606aa4my9miy3iv4vyk-bash-4.4-p12’...
fetching path ‘/nix/store/r1cf76rskp19gphnlxk8zlrc3ycpcgvx-binutils-2.28.1-lib’...
fetching path ‘/nix/store/b6571mr8rfn82psy4lhizaz3w09fnz6a-acl-2.2.52’...
fetching path ‘/nix/store/5dnva19r2z20jahsx3jxm565qwjxsynl-bzip2-1.0.6.0.1’...
fetching path ‘/nix/store/d4yib20lqn7krrqmm0wwbwjxjfa78xqp-coreutils-8.28’...
fetching path ‘/nix/store/z470j6lybdsy4ql972k392490bprhd2g-binutils-2.28.1’...
fetching path ‘/nix/store/by3lqpgph3c4maz6vb2xhd64vhagfc67-bzip2-1.0.6.0.1-bin’...
fetching path ‘/nix/store/kkrg56qh1l655bcdr6amyp7k59ndf81z-diffutils-3.6’...
fetching path ‘/nix/store/lp49ww69vllq2mwsd38rpzfr9h448397-ed-1.14.2’...
fetching path ‘/nix/store/7yj6x2spcq8bk8c4rxij76h36h9559sb-expand-response-params’...
fetching path ‘/nix/store/871adhqrxl37bpi5w9g9g6y0i1n4f9cd-findutils-4.6.0’...
fetching path ‘/nix/store/pyqzyl3yvam1magahsm8xahx5hs1ngh9-gawk-4.1.4’...
fetching path ‘/nix/store/ic5criggbnpfrdnxdhdpkq11birkfz5m-gcc-6.4.0-lib’...
fetching path ‘/nix/store/rs1q5pq11g9q3c9h5s631jik13znxsi2-ghc-8.0.2-doc’...
fetching path ‘/nix/store/50h9s25lzbs3a8s3rvpd02vj6l28din8-glibc-2.25-49-bin’...
fetching path ‘/nix/store/z5z8ldravlksmw7fqalyzr4i75x8ayjv-gmp-6.1.2’...
fetching path ‘/nix/store/zsfnlmvw8k7akg1s0ypdy5jd1kq0d8hn-glibc-2.25-49-dev’...
fetching path ‘/nix/store/2d2in2wqdgxr0p210lv17dvxibpnfw49-gmp-6.1.2-dev’...
fetching path ‘/nix/store/8g2x5qjqyv9a7glmvpzv1wylnbf1cwvw-gnumake-4.2.1’...
fetching path ‘/nix/store/h5c2vfaxhpv7v0p1vlh3h7sdiphsi4rv-gnused-4.4’...
fetching path ‘/nix/store/kpnj0h0340wd0i86q0523527ikbz62ll-gnutar-1.29’...
fetching path ‘/nix/store/9j72vyzlcikn12l72nhdig7sksc0z38c-google-gflags-2.2.0’...
fetching path ‘/nix/store/abk6h8g0hj6dyk75h320mgls3ygshl0w-gzip-1.8’...
fetching path ‘/nix/store/afs50wwrblgpnmva9ibzdjv7nqr7b6y3-jemalloc-4.5.0’...
fetching path ‘/nix/store/hhcby2ncg7s75bm8f87j4i7wjzx20nvw-libffi-3.2.1’...
fetching path ‘/nix/store/7ydrnkyarbpd3qa3fzhg8ms6nnl70g3l-lz4-131’...
fetching path ‘/nix/store/lnj4ih1y1yjxbj5h1rh01pzp5lk6h8hi-ncurses-6.0-20170902’...
fetching path ‘/nix/store/cr49q6vvyhfs48dg15ys3mghfzgc80i7-openssl-1.0.2l’...
fetching path ‘/nix/store/44dbwrwfy6lj45jy02d0rjbj9930nwf3-patch-2.7.5’...
fetching path ‘/nix/store/ld4sw9wx8d616mb6jq5hdcd5m06iq39x-ncurses-6.0-20170902-dev’...
fetching path ‘/nix/store/bl1mv4i6ywns4hy0nvbdn93m9i12ryna-patchelf-0.9’...
fetching path ‘/nix/store/dy1fjqfnk1w0q2nix38b21cjqx218val-paxctl-0.9’...
fetching path ‘/nix/store/pd5c65d1d99hn33831lxmrgqhnxg7q6z-pcre-8.40’...
fetching path ‘/nix/store/yj4b630bm6yscdw8j2sa1sb61j3rdqsy-perl-5.24.2’...
fetching path ‘/nix/store/g6lmh8m6zzg7cn024kfmi1vz8673vd26-plutus-prototype-0.1.0.0-data’...
fetching path ‘/nix/store/s6wz7l5h0ya6qciy0xcxwv05l50snfy8-gnugrep-3.1’...
fetching path ‘/nix/store/lwyhqyx7sm3va37pv1jxzaz2v7g4b4fv-snappy-1.1.4’...
fetching path ‘/nix/store/j41pm590lflva7kkx643kycix8njjrld-xz-5.2.3’...
fetching path ‘/nix/store/i8wz3m067dzbs5x2glhxvcg7lvds1942-zlib-1.2.11’...
fetching path ‘/nix/store/zv86mp9qr1kk2sxv174fxrmly82wakr0-xz-5.2.3-bin’...
fetching path ‘/nix/store/jn350na5wcshwsixpq1wbskdp7r3x0r3-openssl-1.0.2l-bin’...
fetching path ‘/nix/store/g65l985579ri87i8m3906a2nmyrl24a2-gcc-6.4.0’...
fetching path ‘/nix/store/xq5dw2qxz9b82xh53119xd40ffmwabd4-rocksdb-5.1.2’...
fetching path ‘/nix/store/r8rj711df5n2c7pbzlcwnpfhwzvm45sw-openssl-1.0.2l-dev’...
fetching path ‘/nix/store/dsjkns6r9g860vn0idy2072f6cli0gky-stdenv’...
fetching path ‘/nix/store/v6s9mvcg8wqpgbbmf86fq1h5sy0jv15b-xz-5.2.3-dev’...
fetching path ‘/nix/store/q8k7r5zbf03ydrpm7imfzds5b2nmdf0a-zlib-1.2.11-dev’...
building path(s) ‘/nix/store/j323vm17wnb7bsqx8ysimmava4x9818l-remove-references-to’
fetching path ‘/nix/store/kd7vb1afwvm2k65n9qjdw767w6lnwsrd-gcc-wrapper-6.4.0’...
fetching path ‘/nix/store/rzqyfil4xmja85w5sm13m107j1zm8d7s-ghc-8.0.2’...
fetching path ‘/nix/store/jqdysr2sm8v0sqap8i0kd45zw6frgk50-stdenv’...
fetching path ‘/nix/store/2gx9z100j14w9470psd54fn49pkxkac4-SHA-1.6.4.2’...
fetching path ‘/nix/store/6y968gbrr2qwc7jjzhlyw03i8m4bmfiy-abstract-par-0.3.3’...
fetching path ‘/nix/store/hrxkcm0lnnp54m99rxmr7z2alah8g6n8-ansi-terminal-0.6.3.1’...
fetching path ‘/nix/store/b2sn3ynmdf79xm6y47gbkck6svnc01d3-appar-0.1.4’...
fetching path ‘/nix/store/xdbdlyinkmzy1c0yp5sjlm4pnpf6zz5x-auto-update-0.1.4’...
fetching path ‘/nix/store/sr86clfd6x7b1qbignfa7xgk6gnbixiz-ansi-wl-pprint-0.6.7.3’...
fetching path ‘/nix/store/ykshn1xm77wzly666jzrgmfz5ll1dmsq-autoexporter-1.1.2’...
fetching path ‘/nix/store/9a9x0c6wmwvz2drppkq89c0rfivxdx7b-base-compat-0.9.3’...
fetching path ‘/nix/store/9c4w6cvif6qk84nrkz0r4gqr7vc7nbis-base-orphans-0.6’...
fetching path ‘/nix/store/40xjxxc8b48ml760fk2wy4ya8xdidkp5-base-prelude-1.2.0.1’...
fetching path ‘/nix/store/9j420kzl4l0qap5q5y546fjq5npybdad-base16-bytestring-0.1.1.6’...
fetching path ‘/nix/store/d1yjrprvmcll230v3x1ym86x8zvq72rq-base58-bytestring-0.1.0’...
fetching path ‘/nix/store/0hx866jack2dln98fy3b0yzvix1hb9i3-base64-bytestring-1.0.0.1’...
fetching path ‘/nix/store/y5ap1y5d1cnz3kidhixs8srqw4rxd5d5-bindings-DSL-1.0.23’...
fetching path ‘/nix/store/ix9blfmdcqvz2cjrh1q9l7a0pwlbsz1z-byteable-0.1.1’...
fetching path ‘/nix/store/9b1f2a3fhmmjav8l4z65c6vli2c97myh-byteorder-1.0.4’...
fetching path ‘/nix/store/dfi6ajp001slfq743km73j8fdas39080-call-stack-0.1.0’...
fetching path ‘/nix/store/82sr919h30qm5cjmb1k5zcfnprgaxgd3-cereal-0.5.4.0’...
fetching path ‘/nix/store/0iw9nb2b0pllrcb2qh3cvi7n8mxg454z-clock-0.7.2’...
fetching path ‘/nix/store/mgliggkmc6rdpfisa51i7w96alx2hr0n-HUnit-1.5.0.0’...
fetching path ‘/nix/store/wk0ibin1jsrd2p2h3f32kb5ihlgfrisn-cmdargs-0.10.17’...
fetching path ‘/nix/store/vc9x1x709famswk1971ym4samfczzqpc-control-monad-omega-0.3.1’...
fetching path ‘/nix/store/0vrpw8p43yf8dk5rn1yh796fzqqx8vgy-cryptohash-md5-0.11.100.1’...
fetching path ‘/nix/store/hvyiwlh39k8n3ls2ijviqzx8nq878v7m-cryptohash-sha1-0.11.100.1’...
fetching path ‘/nix/store/mw2jfhhw70b5ml6b83rv666ahbd63b49-data-accessor-0.2.2.7’...
fetching path ‘/nix/store/prhk2d3d02qzc30d5h6g70sxa3zrcbk1-data-default-class-0.1.2.0’...
fetching path ‘/nix/store/1682bnncb7rllsi29dhmgglc8vdcixwz-digest-0.0.1.2’...
fetching path ‘/nix/store/c6rrb00yb9sv9gwcmlm7vam623l5yfnb-dlist-0.8.0.3’...
fetching path ‘/nix/store/lf0sqkvww7b2p6jbqz2x7gd7g3f3m3kh-data-default-instances-containers-0.0.1’...
fetching path ‘/nix/store/qcmxq3ags4zb3h24m987pby2mb3x8mr2-easy-file-0.2.1’...
fetching path ‘/nix/store/an78i15sinqah1lqxq93r4grz5dphsq7-data-default-instances-dlist-0.0.1’...
fetching path ‘/nix/store/nvxs2ydc0g8cqy85bxzds5d1f79dkd9y-ed25519-0.0.5.0’...
fetching path ‘/nix/store/dr0r31ivqviqfwl350ccjnshcws9kynr-entropy-0.3.7’...
fetching path ‘/nix/store/k5s4c7i9p2qvwa847jn23z9x3m22c4nk-erf-2.0.0.0’...
fetching path ‘/nix/store/nxbmhplf3k3ig5rsqr5l4n7jn6w345sy-extensible-exceptions-0.1.1.4’...
fetching path ‘/nix/store/v0ga0yaicm3q1m05y574fn1whfxs769r-extra-1.5.3’...
fetching path ‘/nix/store/zldnw7nn8gmh5833xgb8970wgzf52qaw-file-embed-0.0.10’...
fetching path ‘/nix/store/knqf8vb3fway6scygvg4rw7p5cd6lldg-filelock-0.1.1.2’...
fetching path ‘/nix/store/dxwr51am2gp9lqjqz517k33sir0lbl23-foundation-0.0.13’...
fetching path ‘/nix/store/vgn723arcfs9l846hbrq0hq752gs06rp-generic-deriving-1.11.2’...
fetching path ‘/nix/store/7vdmk8w2y59zdd0w83g5ghfijdksrbk3-generics-sop-0.3.1.0’...
fetching path ‘/nix/store/xbf6l1nk1h7fwg1gwqqmnzz95vg856bi-gitrev-1.3.1’...
fetching path ‘/nix/store/fmkraqg7ykfwh6jj079979lyqwj5fivz-half-0.2.2.3’...
fetching path ‘/nix/store/a9chdxli5b0kd1l7mg25q2r676ndwwvv-hex-0.1.2’...
fetching path ‘/nix/store/ghkbm6c87nbb7l8wri44bl21azhn822w-hourglass-0.2.10’...
fetching path ‘/nix/store/jiba5rn62kd1484qjiydg8bi8wmww2jr-hscolour-1.24.2’...
fetching path ‘/nix/store/ryp53admmjd9rpg9gbij8zrbq391jyf8-hspec-discover-2.4.4’...
fetching path ‘/nix/store/1gy5r9sclpxspyggsm7k7i0gvyz8wgr3-hspec-expectations-0.8.2’...
fetching path ‘/nix/store/hj3hw6y9bvw7cp36dm3lw5nh2fnv8g7c-integer-logarithms-1.0.2’...
fetching path ‘/nix/store/f0df9h6igy2cfh5lglgj6d0ig4kf7gqw-memory-0.14.6’...
fetching path ‘/nix/store/nikr9k5id7mzz1d4cw3hvawnrvbb3rls-microlens-0.4.8.1’...
fetching path ‘/nix/store/awjjqypgpacd4xp97k9ylyq6v6bbap1d-monad-loops-0.4.3’...
fetching path ‘/nix/store/5a39g6k7lmbv4cwkxplhpjbxfbzzj8cm-mtl-2.2.1’...
fetching path ‘/nix/store/85517imxlc4jjm583nva4arb2h41aa0q-asn1-types-0.3.2’...
fetching path ‘/nix/store/jgzhmj983w4r2wgvw7481jr9kpbr43kv-cryptonite-0.23’...
fetching path ‘/nix/store/13nn2l0pvc3jy8vc2y8dh6nipl28y64c-natural-transformation-0.4’...
fetching path ‘/nix/store/mdhv7zxnbg2qgqq9chjkyxmbccyk09hs-asn1-encoding-0.9.5’...
fetching path ‘/nix/store/6iz0bqx3a3qc8jfxmn001h80ixd3qr10-network-2.6.3.2’...
fetching path ‘/nix/store/928nq1zrxim4pgg598bx5xqprv1490s2-asn1-parse-0.9.4’...
fetching path ‘/nix/store/hfkkqzqw7m1w6dazwl3bzxjv0895y5h7-iproute-1.7.1’...
fetching path ‘/nix/store/42wyaijdy7v979krqvdbb06zym3d9fb4-network-info-0.2.0.8’...
fetching path ‘/nix/store/df7bf73snmyld4y4a77j2mzyi0vzyfmf-cryptonite-openssl-0.6’...
fetching path ‘/nix/store/vw9xlbanc062ds7wbn8w1376cdn8gry1-old-locale-1.0.0.7’...
fetching path ‘/nix/store/f62wgbfrpkknlvssgrv6izmvvq74vfwq-parallel-3.2.1.1’...
fetching path ‘/nix/store/4g0hn88h2qg703d55f4c8fni1qkm6kds-pem-0.2.2’...
fetching path ‘/nix/store/vls1av4rl2rwy4yn9193fxajkgj1fd65-data-default-instances-old-locale-0.0.1’...
fetching path ‘/nix/store/q7ih57a82pyda2mlwkplcmdk7s5ic21i-old-time-1.1.0.3’...
fetching path ‘/nix/store/abnxr6ah99b56zkirqm63x38sch2zaqq-prelude-extras-0.4.0.3’...
fetching path ‘/nix/store/jbmgxddlp9zdjj89far5v0bhfaqhv6ai-data-default-0.7.1.1’...
fetching path ‘/nix/store/r291j0713hdjymsz4px3i6fb1d3ikx4i-primitive-0.6.2.0’...
fetching path ‘/nix/store/43inmkznjb7kcpgnhy3jcqwq5ai0pn40-random-1.1’...
fetching path ‘/nix/store/x4qj0389syzrgrp2ikxca58cxdkii7sy-reflection-2.1.2’...
fetching path ‘/nix/store/k6f7drbaaiqm3dpfggwwrflg6mp0c8sq-abstract-deque-0.3’...
fetching path ‘/nix/store/rfz0qavkqk7i3kqix8rfkf8cbkvy1maf-monad-par-extras-0.3.3’...
fetching path ‘/nix/store/ng7b1hg0prnwqpwf3mpmm7g0gqbmb4wv-operational-0.2.3.5’...
fetching path ‘/nix/store/whbi6aw6zyfxpvsfy0cg16im0bccgq6p-safe-0.3.15’...
fetching path ‘/nix/store/36yfplwgbp18acf4hy1fmwb5dvdcnqyx-scrypt-0.5.0’...
fetching path ‘/nix/store/ns4p339c4i0zvfvcs79mr1cpbcgb7xcb-semigroups-0.18.3’...
fetching path ‘/nix/store/976cfb758rav7wy576mzsfn62vhz78h3-setenv-0.1.1.3’...
fetching path ‘/nix/store/kwyrcqaknca4gmk5pf69lw0ldpni7f65-simple-sendfile-0.2.25’...
fetching path ‘/nix/store/vrmwr3qd8jidrniipqa6p2vwk1h1dvq1-socks-0.5.5’...
fetching path ‘/nix/store/00h4yapkvslcbwnb2ymmqr4485pggf81-split-0.2.3.2’...
fetching path ‘/nix/store/4d363sp2wl8k1ig84n680sag5fhrr728-stm-2.4.4.1’...
fetching path ‘/nix/store/26akzw7cij5ir5v28w8977jw4r69pl7f-stringsearch-0.3.6.6’...
fetching path ‘/nix/store/f6n0niicibsnmz24c60wdxcggpf1yzmc-syb-0.7’...
fetching path ‘/nix/store/pvhpvsx000daql4b12pcb2azgx98psjy-StateVar-1.1.0.4’...
fetching path ‘/nix/store/zsff4pljmqkm65n6mzlyisrhqj0p998s-async-2.1.1.1’...
fetching path ‘/nix/store/sas3nvh95z0gg3nshfk59y4zsknqpzdc-systemd-1.1.2’...
fetching path ‘/nix/store/cqj3bcnyv0l6958j4kh474pphdm4ysjm-tar-0.5.0.3’...
fetching path ‘/nix/store/89g1viy6l1cxgrmmqwckxkzfvp4lka8c-text-1.2.2.2’...
fetching path ‘/nix/store/fmazg0pddxb4l0vknh0k8s5q78ab08fy-tf-random-0.5’...
fetching path ‘/nix/store/ll42l16jpkbvd56gshqk7c5mk98h6lqb-th-abstraction-0.2.5.0’...
fetching path ‘/nix/store/n0djhiqlc0lyhkhxrqjl08nhd7abrrhq-QuickCheck-2.9.2’...
fetching path ‘/nix/store/7q867i8kpvjcl7985jsykj773j5hi7a6-th-expand-syns-0.4.3.0’...
fetching path ‘/nix/store/jgddcrvx59vgrykbyayj3mza5xlkwbxd-generic-arbitrary-0.1.0’...
fetching path ‘/nix/store/cb48zr5hr4ivqqqvvsizgw6nq5pa888l-quickcheck-io-0.2.0’...
fetching path ‘/nix/store/ggwv324rgyakfj9il8v3i9adv5yb4yps-th-lift-0.7.7’...
fetching path ‘/nix/store/x17vgd35lb4xpz07g7r0l8m72q4fv0nw-hspec-core-2.4.4’...
fetching path ‘/nix/store/37qk8jwdijf21z9rykmj44z8b9ap2vgc-blaze-builder-0.4.0.2’...
fetching path ‘/nix/store/2hkqg60k762v26m46bhqglna5y2i191p-cborg-0.1.1.0’...
fetching path ‘/nix/store/r6lim96p4waln7mdxknmv2alcfz3kk8a-blaze-markup-0.8.0.0’...
fetching path ‘/nix/store/nl0jvp3w6y8q88szxdlkwk51blr1qppx-cookie-0.4.2.1’...
fetching path ‘/nix/store/jx9zrrr1r8c5h36rh03llb86kjdpx7kf-double-conversion-2.0.2.0’...
fetching path ‘/nix/store/1r2mziqg5dinv6r82wvvcfgmmkqc833y-blaze-html-0.9.0.1’...
fetching path ‘/nix/store/l41v7acmahgy6h0lfy25zbr72ay6k7kb-hashable-1.2.6.1’...
fetching path ‘/nix/store/yg1g1hh6mrmyc06y0vc2dlx2wdsmrc4p-hspec-2.4.4’...
fetching path ‘/nix/store/w2hjdjwlksz00nfwcxj0ppkzz7ywz68l-cardano-crypto-1.0.0’...
fetching path ‘/nix/store/jhqfayk6cr18prpfcbv8zvchrqw2j97l-case-insensitive-1.2.0.10’...
fetching path ‘/nix/store/yjli2hng9aq9vqf3jc2r117k84hm91bv-mime-types-0.1.0.7’...
fetching path ‘/nix/store/y78wxgx4n81yf7236ifk9ih08fp9nbaa-network-transport-0.5.2’...
fetching path ‘/nix/store/h7gzm2bjlr6c7b3rxg9ai2nl3385w2rb-http-media-0.6.4’...
fetching path ‘/nix/store/0q117q9i6jqf6xv9bkcm9p7yidypq7dg-http-types-0.9.1’...
fetching path ‘/nix/store/n2xkxi24jj2l2n2nkcm7frhik5wj77cn-network-transport-inmemory-0.5.1’...
fetching path ‘/nix/store/lfh9rwyfja5c8fhalnd12mniqwa3raav-parsec-3.1.11’...
fetching path ‘/nix/store/1m6znb1ykgs122pv5m2na9f8p2x9qnhs-polyparse-1.12’...
fetching path ‘/nix/store/swldn50hq86kl99ppkjny6apr3k788jw-psqueues-0.2.3.0’...
fetching path ‘/nix/store/367p0r6j9ldanhhfkcmrny0vplx078sm-canonical-json-0.5.0.0’...
fetching path ‘/nix/store/agh70w6vxhw8i7lcsqwnga818yc7p6yx-cpphs-1.20.8’...
fetching path ‘/nix/store/zcpl6mzx78xkdl6myjj5hgv8c21bkxcv-neat-interpolation-0.3.2.1’...
fetching path ‘/nix/store/zvmzvnnqw8zy17s1qy5mmqwvisxyvvr9-network-uri-2.6.1.0’...
^[fetching path ‘/nix/store/lwvnvf5l63irkhrwbbqy95j8ffrk22s0-scientific-0.3.5.1’...
fetching path ‘/nix/store/ccr1zidlqvys56fiw2zg8y788rvd9yzx-system-filepath-0.4.13.4’...
fetching path ‘/nix/store/kxpmk4zl36nph7ymfa6kacl76fn98vam-text-format-0.3.1.1’...
fetching path ‘/nix/store/caifh5lf4np7jkn0yhhf4z8l6cxv6hpc-attoparsec-0.13.1.0’...
fetching path ‘/nix/store/fn41251rwg6753xh3830xs4r5rvcvahl-th-reify-many-0.1.8’...
fetching path ‘/nix/store/2sciak1xd9rfmx5gj74r7n2bl21g7f5i-formatting-6.2.4’...
fetching path ‘/nix/store/v5xah2nhf5hygzshgw1cscd41646d11k-time-locale-compat-0.1.1.3’...
fetching path ‘/nix/store/faqn96n8xv96y43kghasyfm2y1cmdi9k-time-units-1.0.0’...
fetching path ‘/nix/store/sz1z97275ljs6dp2wmn7hrwgygalirzv-fmt-0.5.0.0’...
fetching path ‘/nix/store/jmqxk2acjiq3vkglv5j3fwhkyxkrmlsz-attoparsec-iso8601-1.0.0.0’...
fetching path ‘/nix/store/x0hsfnk95g7wn2llvypgrl4sa4rx9rv9-http-date-0.0.6.1’...
fetching path ‘/nix/store/xmbksccx75klzrd0x17qm2pps2mzazc7-semver-0.3.3.1’...
fetching path ‘/nix/store/gg4j59jrcpmy3jv8lri8s33zwhkgfhh7-transformers-compat-0.5.1.4’...
fetching path ‘/nix/store/xkyddvlil3xwlcwrf3jyagfjxhydnny6-type-operators-0.1.0.4’...
fetching path ‘/nix/store/m2w033lh148ra7nj4qhmni6k8lqxx996-unbounded-delays-0.1.1.0’...
fetching path ‘/nix/store/winsc6b5q2baa4yl6w2r9glayh46b0ic-MonadRandom-0.5.1’...
fetching path ‘/nix/store/zh44bg80xchgvwr4m0ij96xvl1wpq6s1-constraints-0.9.1’...
fetching path ‘/nix/store/296b4qcwk12xg605dyxmmb4pd6cdkq4y-concurrent-extra-0.7.0.10’...
fetching path ‘/nix/store/312pd1gdk3knifhfrxccjd081w3bl61x-deriving-compat-0.3.6’...
fetching path ‘/nix/store/nphrycjv682xvz5n6mrl1madh2z5mlpy-exceptions-0.8.3’...
fetching path ‘/nix/store/msga1izc15i0m3326r822y5i0ip356zk-microlens-mtl-0.1.11.0’...
fetching path ‘/nix/store/0f438n0s414jkbacgj2kf9jfg3hrql3x-mmorph-1.0.9’...
fetching path ‘/nix/store/fpwndcxf3sgzyzmcb74dp8p380y23j01-optparse-applicative-0.13.2.0’...
fetching path ‘/nix/store/hv6wxnydjml90p4m03rzlfwlsynirpxp-random-shuffle-0.0.4’...
fetching path ‘/nix/store/bxf64prfhbnq0nkw3c72lb0d87zfvxd3-safe-exceptions-0.1.6.0’...
fetching path ‘/nix/store/3d97lrilf8fsp172gi3lqk80qvzccpv5-tagged-0.8.5’...
fetching path ‘/nix/store/1mhdpjjzr158c7a9y7cqb0hnmfkrgpac-transformers-base-0.4.4’...
fetching path ‘/nix/store/69anj95a05igj74ml9i3887qib61pkk9-unexceptionalio-0.3.0’...
fetching path ‘/nix/store/5y5sqmi8zv6zbmap3sng48swmp787845-distributive-0.5.3’...
fetching path ‘/nix/store/g1dx5j686w5kp4kvmy48bfydqg884mry-monad-control-1.0.2.2’...
fetching path ‘/nix/store/jzmncq97cc57yrsw86dlhlgawr0zgh4j-errors-2.2.1’...
fetching path ‘/nix/store/jxanh07m0ygzvw2ximkicwnnj20hj43z-unix-compat-0.4.3.1’...
fetching path ‘/nix/store/6dvz5ydy72285qmf4d0xwdir6kblx4qv-lifted-base-0.2.3.11’...
fetching path ‘/nix/store/4c44v8fs8dzjmkxhr0xm19rh67v5a5g7-unix-time-0.3.7’...
fetching path ‘/nix/store/n91vqgfwbc0kl67ma1k4mm2ra9z53q0j-unordered-containers-0.2.8.0’...
fetching path ‘/nix/store/yim9hlqr7wdsbf605paiy25rq83fjdsy-resourcet-1.1.9’...
fetching path ‘/nix/store/qbh4ip5j100k57ns463h8y9r1hm7ll1q-fast-logger-2.4.10’...
fetching path ‘/nix/store/qbaqvigvl38dlcxl3m6mb9lf5lfdyznq-conduit-1.2.11’...
fetching path ‘/nix/store/zcvsys6k2z2xklpl8nr85019vw8hzizw-ekg-core-0.1.1.3’...
fetching path ‘/nix/store/mz1w9mqyn2k02is40axffsfh1mrvb066-rocksdb-haskell-1.0.0’...
fetching path ‘/nix/store/7h1k843sjgadwkg3var4p31l3axgp4k3-ekg-statsd-0.2.2.0’...
fetching path ‘/nix/store/15izg48mmq14bzmx9mhmd25cbcsf6972-lzma-conduit-1.1.3.3’...
fetching path ‘/nix/store/q3ha03vz35bsdqcqr86bxz8a06in4n0z-utf8-string-1.0.1.1’...
fetching path ‘/nix/store/xildi0d1g9jnmjk9b2bbqsczim09hdjs-uuid-types-1.0.3’...
fetching path ‘/nix/store/mvw8fp1hghr7jxj034lf21fzqn2svvi2-vault-0.3.0.7’...
fetching path ‘/nix/store/8yyv3ad330rqnzmwm4w1kn0ab45ja21b-string-conversions-0.4.0.1’...
fetching path ‘/nix/store/4l7lzqjvm1y0nvf2s2vfiz6iy6xlajmf-uuid-1.3.13’...
fetching path ‘/nix/store/63smavrcrn6ybrq4wmnxxvp6rr9dla73-vector-0.12.0.1’...
fetching path ‘/nix/store/mngjvr1amwlyy8ildjf9rmv3xvvlqab0-void-0.7.2’...
fetching path ‘/nix/store/2nm6698lr3kz0s62m8g830vakm0v1v61-network-transport-tcp-0.5.1’...
fetching path ‘/nix/store/dmkaq8nlz046c806jx1cavvxvr9nwsn9-contravariant-1.4’...
fetching path ‘/nix/store/y480kmqq95yf4g1bqgakl2jvkafvq5kh-wai-3.2.1.1’...
fetching path ‘/nix/store/7wfvdb91qjl420zb42vi6inlscpbjrrw-comonad-5.0.2’...
fetching path ‘/nix/store/id8ay7jmid8c3hqlbjkp1wmcc1pi5q9p-kademlia-1.1.0.1’...
fetching path ‘/nix/store/c13qwawql5ki3fd2p09x2w8s10srvq72-aeson-1.1.2.0’...
fetching path ‘/nix/store/qy9w653h90iy4n3cq8w41gycvjj7v3xa-bifunctors-5.4.2’...
fetching path ‘/nix/store/mijvc5gl5caranrh0kh2w8fzwfzb2ahx-lrucache-1.2.0.0’...
fetching path ‘/nix/store/5v9basc3pha9j9zd1wbd3lrl6bq8zlg3-profunctors-5.2.1’...
fetching path ‘/nix/store/1f8h4rchmgdl673ns66m3gp8956bf39b-pvss-0.2.0’...
fetching path ‘/nix/store/8w8l115477a7psa0qbaj6jdwb7w36qrw-quickcheck-instances-0.3.12’...
fetching path ‘/nix/store/417s4ypir4h9hxnrw759d479c556ijng-aeson-pretty-0.8.5’...
fetching path ‘/nix/store/sh9riblgybym34j5rfdymnb3vlpxvfdn-ekg-json-0.1.0.6’...
fetching path ‘/nix/store/2i6dgq94k9r2j33zf1101q81nnfsk70z-safecopy-0.9.3.2’...
fetching path ‘/nix/store/ch4vb6p38dlfl743qffagyp5i1zx9qy9-semigroupoids-5.2.1’...
fetching path ‘/nix/store/cyaz3zj6w5fhw7v8nmagpw8vqkm0bdzv-th-lift-instances-0.1.11’...
fetching path ‘/nix/store/3dy8mz2x9fs5hjwyyzphxrz8ir24dp07-acid-state-0.14.2’...
fetching path ‘/nix/store/i4si3gkr1hbm6lcz3hakcxqnc334wfk4-free-4.12.4’...
fetching path ‘/nix/store/kvh74s8dpp5slk8l5qsph6l5x2sf6vbh-th-orphans-0.13.4’...
fetching path ‘/nix/store/c4wc2v9y96h6q5qsh0jipa1sjxzircpr-universum-0.7.0’...
fetching path ‘/nix/store/f54jbqi2zz9prls9mqidvdxyi5f71w8v-adjunctions-4.3’...
fetching path ‘/nix/store/dchy14aahmza9rq50z0qbfarg26rxhjj-either-4.4.1.1’...
fetching path ‘/nix/store/7zvmpws8gsp4vz3pdd91zzdz0l22dkhp-th-utilities-0.2.0.1’...
fetching path ‘/nix/store/s2nawngc54s8lpl7lfydnw48ii3cjg95-optparse-simple-0.0.3’...
fetching path ‘/nix/store/xsjdl37lcqqlpcf0z035d16bf5f9r90q-kan-extensions-5.0.2’...
fetching path ‘/nix/store/wcc8j0cg2sc8kizs76hfyynjras3xj21-uri-bytestring-0.2.3.3’...
fetching path ‘/nix/store/l8pcpvb9nqf7hm8q42wm9l570cisvq1j-vector-binary-instances-0.2.3.5’...
fetching path ‘/nix/store/xjk36rlz3lhc8rn44q8yfq60fr0pidsc-lens-4.15.4’...
fetching path ‘/nix/store/bwgfgg17rj62w6hnyijw70i3j33v4k1b-vector-th-unbox-0.2.1.6’...
fetching path ‘/nix/store/9lcc4nlw2ygx7shk5kaqbgv6sd3n7jq0-http-api-data-0.3.7.1’...
fetching path ‘/nix/store/yffxqy7ijqzmzlvn4rzf5nprvki08myh-math-functions-0.2.1.0’...
fetching path ‘/nix/store/s45rrabqsbprgi7ay3rpndsfanbbm5nf-servant-0.12’...
fetching path ‘/nix/store/zssrpgf9sdzrlgjzlv3rzsh1cxvri525-mwc-random-0.13.6.0’...
fetching path ‘/nix/store/1gc7s8kp8avq0m5jalji7ska35bghhyk-servant-blaze-0.7.1’...
fetching path ‘/nix/store/c7kvn75y1lpyyiak71gh3a6zmdim6zq6-insert-ordered-containers-0.2.1.0’...
fetching path ‘/nix/store/ininf0ki1iir8lhhjshh7p9k0lafj1wy-plutus-prototype-0.1.0.0’...
fetching path ‘/nix/store/jg53y75wjswnm5js40s0hbs42yfzradm-monad-par-0.3.4.8’...
fetching path ‘/nix/store/hpyznqqzawyk576pi1m74fvc1rf3lbv0-purescript-bridge-0.11.0.0’...
fetching path ‘/nix/store/f0ajnaq03xmnhd3m5illy4647xkq3qj1-servant-docs-0.11.1’...
fetching path ‘/nix/store/gsazyyx8fzg732gqxhb0bd7kln1xk9jc-swagger2-2.1.4.1’...
fetching path ‘/nix/store/846prn83isabk6z22zparmfnm9b9fl3s-vector-algorithms-0.7.0.1’...
fetching path ‘/nix/store/fj1a39mmgbdjd012jqf9x6ngw3mvzvd3-wai-logger-2.3.0’...
fetching path ‘/nix/store/rbzg4syncn4x9lpfi65wg8nd74b59n2m-mono-traversable-1.0.2.1’...
fetching path ‘/nix/store/md0hbqgzsxg5vpippsplkir124zmkb20-statistics-0.13.3.0’...
fetching path ‘/nix/store/g8il1ja39i73fmhrkd5rcyrnfd27wn1v-websockets-0.10.0.0’...
fetching path ‘/nix/store/69ps1410fmahvwx88g2kj1hvic7h5cnh-word8-0.1.3’...
fetching path ‘/nix/store/ly2997h2zvbn19fadzkx9hi7i8ka75kz-servant-swagger-1.1.4’...
fetching path ‘/nix/store/9kirmbq1n3v4vfvdwzb98ra4plldylna-http2-1.6.3’...
fetching path ‘/nix/store/k9w88zs819bzwmy4rz2c1zg5bd08qd0f-writer-cps-transformers-0.1.1.3’...
fetching path ‘/nix/store/xlw6ya3f4nd9n91h9pcr28xci08j33v1-x509-1.7.2’...
fetching path ‘/nix/store/5jqrghdyinlagqv1wid5k16slli3izff-transformers-lift-0.2.0.1’...
fetching path ‘/nix/store/52pys1ks83d4jjq2cyis4p5q150h5nmm-writer-cps-mtl-0.1.1.4’...
fetching path ‘/nix/store/95hl7clrx0zrz6g6javxpcjx3z849y5w-yaml-0.8.23.3’...
fetching path ‘/nix/store/2xbf9821arvcfxawy0lxhblgriqqwzl1-ether-0.5.1.0’...
fetching path ‘/nix/store/220siz2yiawgx6i3jj9cki3lpn2ladx4-x509-store-1.6.5’...
fetching path ‘/nix/store/37bv200k7xpqibdcb3hg8krcgxvmw0kl-log-warper-1.3.4’...
fetching path ‘/nix/store/lznrccq1d1mlp0836mdl4xqdxh3jmndp-x509-system-1.6.6’...
fetching path ‘/nix/store/9pi46g09vaii0cyi9zrba280q7wqsm2r-x509-validation-1.6.9’...
fetching path ‘/nix/store/dfgr5qd33497yvx3d81ahb7dsibcmw3g-zlib-0.6.1.2’...
fetching path ‘/nix/store/7fk1l6p1lmss8mq1w8v994mlqgk0wqmb-serokell-util-0.5.2’...
fetching path ‘/nix/store/v71yz1j8xs445bf1wy15rir6rfh4yiha-tls-1.3.11’...
fetching path ‘/nix/store/p076z7745hqzrg6yk1z5asm7gghgw7zi-streaming-commons-0.1.17’...
building path(s) ‘/nix/store/sbw7l2nf48nmqwjg5bvxblf8c8y40kmn-cardano-sl-binary-1.0.3’
fetching path ‘/nix/store/cr3zf2cf4d140bc6wsv5p87ysxry9lgx-conduit-extra-1.1.16’...
fetching path ‘/nix/store/xlyvs58cvi3c39yi676822mb2xmc3625-connection-0.2.8’...
fetching path ‘/nix/store/cy9vxrk9apdjh0vqbgjagmgc9gq96yyy-dns-3.0.0’...
fetching path ‘/nix/store/p6wr6n7nniysw4birw7bax6vd79f8pf3-http-client-0.5.7.0’...
fetching path ‘/nix/store/1x6dpsf7iv51sw4xnpqhdw537hqimspk-tls-session-manager-0.0.0.1’...
fetching path ‘/nix/store/83389b5ipswbrw2ypr6p0kvi3zlbd2wm-http-client-tls-0.3.5.1’...
fetching path ‘/nix/store/p0cjsmcmchbmhv2i7j78c4ig8gig5yyk-wai-extra-3.0.20.0’...
fetching path ‘/nix/store/aq0c1khbwf5asip8mbh0kykp0n3hf78l-http-conduit-2.2.3.2’...
fetching path ‘/nix/store/qszqg0vk6341f98s1xjgzcdvl8gh8c0d-warp-3.2.13’...
building path(s) ‘/nix/store/mqdc1r0kaw69bwfr15j3gjvi8dvjym86-cardano-sl-networking-1.0.3’
fetching path ‘/nix/store/14jfpvbn52yf4whf95h8g18yhl3fqxmw-cardano-report-server-0.4.0’...
fetching path ‘/nix/store/r16qciq85691n69vrkq3m8kl8iqnn6pb-wai-app-static-3.1.6.1’...
fetching path ‘/nix/store/jn4a01zl1k1nf1ljlhbas3y4g63laa94-warp-tls-3.2.4’...
fetching path ‘/nix/store/r5b9358zavyysd1dk5p9lxh0bbv937qp-ekg-wai-0.1.0.2’...
fetching path ‘/nix/store/j12qgvfgp56dlvsz5wivh0jd6zsm5vsv-servant-server-0.12’...
fetching path ‘/nix/store/j6xxfkamqm0vny8c9vjg80lb6nm56ikp-wai-websockets-3.0.1.1’...
fetching path ‘/nix/store/1agf19q8cwb0655ha8hj8p4gzw0nlml6-servant-generic-0.1.0.1’...
fetching path ‘/nix/store/mfd659h5bpchk9ymkf9ac7b3a069rl4s-servant-multipart-0.11’...
fetching path ‘/nix/store/jd1r29f13bmy1pkjayczx94spmi8ix6g-servant-swagger-ui-0.2.4.3.4.0’...
building path(s) ‘/nix/store/z0z95plwgrg8dlvacdylhwlxj2glj8vi-cardano-sl-util-1.0.3’
building path(s) ‘/nix/store/9w4842divrs2r9hbbcl1vc5fg9d5yjyw-cardano-sl-crypto-1.0.3’
building path(s) ‘/nix/store/8ww3pr5npg758rrkrpjhqqwsi92l1qk1-cardano-sl-core-1.0.3’
building path(s) ‘/nix/store/i80r2n75c6a46s866mbkk09qc0fwgbp3-cardano-sl-db-1.0.3’
building path(s) ‘/nix/store/5p36n6jnl5cfj2ic0pv160hr5j1ycrid-cardano-sl-infra-1.0.3’
building path(s) ‘/nix/store/zp66739z4bl24and2cf9mrqglci6pd4n-cardano-sl-lrc-1.0.3’
building path(s) ‘/nix/store/71dk6ajhrrcmlgw2yzi8ziwypwy8ngap-cardano-sl-delegation-1.0.3’
building path(s) ‘/nix/store/hah63lhl14l0jckm672ibiir16fyi2xy-cardano-sl-ssc-1.0.3’
building path(s) ‘/nix/store/l3mgsgawb89ri07xrraycjk095xncgyb-cardano-sl-txp-1.0.3’
building path(s) ‘/nix/store/zd61ipsy6dxj8w1glnkjgngak31yhcyz-cardano-sl-update-1.0.3’
building path(s) ‘/nix/store/ksbvgj6iga09f067hxgqw880nz1i95ln-cardano-sl-block-1.0.3’
building path(s) ‘/nix/store/qyv62fzcrwx81fi9v340q1hhwv0mp9di-cardano-sl-1.0.3’
building path(s) ‘/nix/store/1l9f8rlqzmr5hpvf5s001bd9cdv4p9xr-cardano-sl-client-1.0.3’
building path(s) ‘/nix/store/j2mpq53ip291arp865pqq4q9x7l46wpn-cardano-sl-generator-1.0.3’
building path(s) ‘/nix/store/cnbj1iir51nb6ni0v7k3bkqsdprzk49s-cardano-sl-wallet-1.0.3’
/nix/store/cnbj1iir51nb6ni0v7k3bkqsdprzk49s-cardano-sl-wallet-1.0.3
mdupont@debian-build-speed:~/experiments/cardano-sl$
mdupont@debian-build-speed:~/experiments/cardano-sl$ /nix/store/cnbj1iir51nb6ni0v7k3bkqsdprzk49s-cardano-sl-wallet-1.0.3/bin/cardano-node --version
cardano-node-1.0.3, git revision a32aa645d1329422e9ffcc17dec1d1cccba0f7fa
mdupont@debian-build-speed:~/experiments/cardano-sl$ git log -1
commit a32aa645d1329422e9ffcc17dec1d1cccba0f7fa
Author: James Michael DuPont <jamesmikedupont+build@gmail.com>
Date: Mon Dec 25 21:25:38 2017 -0500
update docs
mdupont@debian-build-speed:~/experiments/cardano-sl$
mdupont@debian-build-speed:~/experiments/cardano-sl$ /nix/store/cnbj1iir51nb6ni0v7k3bkqsdprzk49s-cardano-sl-wallet-1.0.3/bin/cardano-node --web --no-ntp --configuration-file ./lib/configuration.yaml --configuration-key mainnet_full --tlscert ./scripts/tls-files/server.crt --tlskey ./scripts/tls-files/server.key --tlsca ./scripts/tls-files/ca.crt --log-config ./scripts/log-templates/log-config-qa.yaml --topology topology-mainnet --logs-prefix state-wallet-mainnet/logs --db-path state-wallet-mainnet/db --wallet-db-path state-wallet-mainnet/wallet-db --keyfile state-wallet-mainnet/secret.key
I am testing the front end now, but the time api is working
So now I used the nix build, and yes I will have to update my docs.
I'm going to rebuild Daedalus tonight. I'm currently at work. I will let you known if that solved the problem.
Amazing! I wiped out everything and rebuild using debian in a Docker container and your fork. Guess what? Now everything is fine. This could mean two things: 1) Ubuntu creates the problem or 2) the official branch is the problem. To check I will create another Debian container with the official branch and see if that one will function...
That is great news! I am happy to hear it. The official branch should not be the problem, because I am just a little behind it. I think for some reason you got the old version.
I have been researching into the json api and will writeup a tutorial on using it.
On Thu, Dec 28, 2017 at 6:10 AM, Erik van Hannen notifications@github.com wrote:
Amazing! I wiped out everything and rebuild using debian in a Docker container and your fork. Guess what? Now everything is fine. This could mean two things: 1) Ubuntu creates the problem or 2) the official branch is the problem. To check I will create another Debian container with the official branch and see if that one will function...
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-354272164, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIVzaNgZqnooMU3lPlAmLc-_wiRd5dks5tE3czgaJpZM4RE5DM .
-- James Michael DuPont
It is almost impossible that I had the old version. I rebuild from scratch many times git cloning https://github.com/input-output-hk/cardano-sl.git
Restoring my wallet now...
I have only the cardano-sl backend in a Docker running Debian. This seems to be the ideal setup for staking later on.
Great!
On Thu, Dec 28, 2017 at 6:19 AM, Erik van Hannen notifications@github.com wrote:
It is almost impossible that I had the old version. I rebuild from scratch many times git cloning https://github.com/input-output-hk/cardano-sl.git
Restoring my wallet now...
I have only the cardano-sl backend in a Docker running Debian. This seems to be the ideal setup for staking later on.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/input-output-hk/daedalus/issues/603#issuecomment-354273289, or mute the thread https://github.com/notifications/unsubscribe-auth/AACIV_BjrAgDaDTf4hQFani2MGbJpGxmks5tE3lagaJpZM4RE5DM .
-- James Michael DuPont
It is Ubuntu. I just build the official branch in a Debian container and the timedifference API is there. So Ubuntu is the problem but I don't have a clue why...Anyhow I'm glad I finally managed to build the node and wallet. The wallet has finished restoring and I'm seeing my ADA!
Great news!
It's not oke yet. I have directed Daedalus to the Debian container running the official branch and then the Unexpected end of JSON input is there again. Directing it to your fork and the wallet is behaving properly and connects all the way...
wow, how strange.
I am getting this error on reload of the client, otherwise seems to work.
Posted on Utopian.io - Rewarding Open Source Contributors