Skip to content

Instantly share code, notes, and snippets.

@betaboon
Last active November 12, 2017 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betaboon/b239ce3730d0ba99e6c0b60bdaab8977 to your computer and use it in GitHub Desktop.
Save betaboon/b239ce3730d0ba99e6c0b60bdaab8977 to your computer and use it in GitHub Desktop.
nixops + virtualbox + docker + macos

What I'm trying to achieve

On a macos system i want to install nix, run nix-shell -p nixops and deploy nixos-containers into a local virtualbox.

create deployment

prerequirements

executed approach 1 or 2

steps

nix-shell -p nixops
nixops create deployment.nix -d test
nixops deploy -d test
nixops ssh vbox

what has worked so far:

  • install nix as described in the manual (curl https://nixos.org/nix/install | sh)

  • run nix-shell -p nixops and nixops create deployment.nix

  • create a nix-docker container using the script linked in approach 2. (works out of the box)

  • -> using: source start-docker-nix-build-slave (see nix-docker.log)

  • use the demo-vmdk as a build-slave

  • use nix to build in that build-slave (see debug.log)

  • -> using: nix-build -E 'with import <nixpkgs> { system = "x86_64-linux"; }; runCommand "foobar" {} "touch $out"'

  • deploy a virtualbox using nixops

what has not worked:

  • run nixops deploy successfully
  • -> currently deploying containers into a virtualbox breaks. deploying the virtualbox works.

further information:

  • macos: 10.12.4
  • nix: 1.11.15

approach 1 - virtualbox:

run a nixos virtualbox, use that as a remote build machine (https://github.com/3noch/nix-vbox-build-slave)

prerequisites

nix and virtualbox installed

steps

git clone https://github.com/3noch/nix-vbox-build-slave
source ./nix-vbox-build-slave/setup

problems

the script is not able to fully create a nixos-virtualbox using nixops.

as a workaround, you can use the demo-vmdk (from nixos.org) and do the following modifications to it:

  • enable ssh
  • add the proper ssh-key to roots authorized-keys

approach 2 - nix-docker

run a nixos docker, use that as a remote build machine (https://github.com/LnL7/nix-docker)

prerequisites

nix and docker-for-mac installed

steps

git clone https://github.com/LnL7/nix-docker
source ./nix-docker/start-docker-nix-build-slave

problems:

  • NIX_REMOTE_HOSTS as set by the script has no effect on multi-user (nix-daemon) installations
  • setting EnvironmentVariables set in /Library/LaunchDaemons/org.nixos.nix-daemon.plist seems to have no effect !?

findings

  • according to LnL NIX_REMOTE_HOSTS as set by both scripts does not take effect on nix multi-user installs (as with macos).
  • on multi-user installs the nix-daemon does the actual building, thus NIX_REMOTE_HOSTS has to be set for the daemon
  • setting environment-variables for nix-daemon is done in /Library/LaunchDaemons/org.nixos.nix-daemon.plist
monarch:nixops-test betaboon$ nix-shell -p nixops
# check if ssh-config-entry for root exists
[nix-shell:~/nixops-test]$ sudo cat /var/root/.ssh/config
Password:
Host nix-vbox-build-slave
HostName 192.168.56.101
# check if root can do passwordless ssh into build-slave
[nix-shell:~/nixops-test]$ sudo ssh -i /var/root/.ssh/id_rsa nix-vbox-build-slave -- uname -a
Password:
Linux nixos 4.9.61 #1-NixOS SMP Wed Nov 8 09:08:37 UTC 2017 x86_64 GNU/Linux
# check if remote-systems configuration is correct
[nix-shell:~/nixops-test]$ cat /etc/nix/remote-systems.conf
nix-vbox-build-slave x86_64-linux "/var/root/.ssh/id_rsa" 1
# check that current-load directory has been created
[nix-shell:~/nixops-test]$ ls -lah /run/nix/
total 0
drwxr-xr-x 4 root wheel 136 Nov 12 00:06 .
drwxr-xr-x 3 root wheel 102 Nov 12 00:06 ..
drwxr-xr-x 2 root wheel 68 Nov 12 00:06 current-load
[nix-shell:~/nixops-test]$ find /run/nix/
/run/nix/
/run/nix/current-load
# check that nix-daemon plist has the proper environment variables
[nix-shell:~/nixops-test]$ cat /Library/LaunchDaemons/org.nixos.nix-daemon.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.nixos.nix-daemon</string>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>/nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/bin/nix-daemon</string>
<key>StandardErrorPath</key>
<string>/var/log/nix-daemon.log</string>
<key>StandardOutPath</key>
<string>/var/log/nix-daemon.log</string>
<key>EnvironmentVariables</key>
<dict>
<key>NIX_BUILD_HOOK</key>
<string>/nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/libexec/nix/build-remote.pl</string>
<key>NIX_CONF_DIR</key>
<string>/etc/nix</string>
<key>NIX_CURRENT_LOAD</key>
<string>/run/nix/current-load</string>
<key>NIX_REMOTE_SYSTEMS</key>
<string>/etc/nix/remote-systems.conf</string>
<key>NIX_SSL_CERT_FILE</key>
<string>/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt</string>
</dict>
</dict>
</plist>
# check if running nix-daemon has the proper environment variables
# note: you can un-/load the deamon using launchctl
# to unload: sudo launchctl unload /Library/LaunchDaemons/org.nixos.nix-daemon.plist
# to load: sudo launchctl load /Library/LaunchDaemons/org.nixos.nix-daemon.plist
[nix-shell:~/nixops-test]$ sudo launchctl print system/org.nixos.nix-daemon
org.nixos.nix-daemon = {
active count = 1
path = /Library/LaunchDaemons/org.nixos.nix-daemon.plist
state = running
program = /nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/bin/nix-daemon
stdout path = /var/log/nix-daemon.log
stderr path = /var/log/nix-daemon.log
default environment = {
PATH => /usr/bin:/bin:/usr/sbin:/sbin
}
environment = {
NIX_REMOTE_SYSTEMS => /etc/nix/machines
NIX_CONF_DIR => /etc/nix
NIX_SSL_CERT_FILE => /nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt
NIX_BUILD_HOOK => /nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/libexec/nix/build-remote.pl
NIX_OTHER_STORES => /run/nix/remote-stores/*/nix
NIX_CURRENT_LOAD => /run/nix/current-load
XPC_SERVICE_NAME => org.nixos.nix-daemon
}
domain = com.apple.xpc.launchd.domain.system
minimum runtime = 10
exit timeout = 5
runs = 1
successive crashes = 0
excessive crashing = 0
pid = 79
immediate reason = speculative
forks = 17
execs = 1
trampolined = 1
started suspended = 0
proxy started suspended = 0
last exit code = (never exited)
event triggers = {
}
endpoints = {
}
dynamic endpoints = {
}
pid-local endpoints = {
}
instance-specific endpoints = {
}
event channels = {
}
sockets = {
}
spawn type = daemon
spawn role = (null)
jetsam priority = 3
jetsam memory limit (active) = (unlimited)
jetsam memory limit (inactive) = (unlimited)
jetsamproperties category = daemon
cpumon = default
properties = {
partial import = 0
launchd bundle = 0
xpc bundle = 0
keepalive = 0
runatload = 1
dirty at shutdown = 0
low priority i/o = 0
low priority background i/o = 0
legacy timer behavior = 0
exception handler = 0
multiple instances = 0
supports transactions = 0
supports pressured exit = 0
enter kdp before kill = 0
wait for debugger = 0
app = 0
system app = 0
creates session = 0
inetd-compatible = 0
inetd listener = 0
abandon process group = 0
one-shot = 0
requires reap = 0
event monitor = 0
penalty box = 0
pended non-demand spawn = 1
role account = 0
launch only once = 0
system support = 0
app-like = 0
inferred program = 0
joins gui session = 0
joins host session = 0
parameterized sandbox = 0
resolve program = 0
abandon coalition = 0
extension = 0
nano allocator = 0
no initgroups = 0
start on fs mount = 0
endpoints initialized = 1
disallow all lookups = 0
system service = 1
}
}
# check if cross-compilation on builder-slave works
[nix-shell:~/nixops-test]$ nix-build -E 'with import <nixpkgs> { system = "x86_64-linux"; }; runCommand "foobar" {} "touch $out"'
these derivations will be built:
/nix/store/l7zsz5b8niqnhcwsaqc4mk6a2szsdggk-foobar.drv
copying 1 missing paths (0.00 MiB) to ‘root@nix-vbox-build-slave’...
building ‘/nix/store/l7zsz5b8niqnhcwsaqc4mk6a2szsdggk-foobar.drv’ on ‘root@nix-vbox-build-slave’
/nix/store/q9m324xddq1a67f78m365q2an1x60r7l-foobar
[nix-shell:~/nixops-test]$ nixops create deployment.nix
created deployment ‘442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7’
442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7
# check if nixops deploy works
[nix-shell:~/nixops-test]$ nixops deploy
vbox> creating VirtualBox VM...
vbox> Virtual machine 'nixops-442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7-vbox' is created and registered.
vbox> UUID: 46705b48-8628-4645-9377-19ef9558a580
vbox> Settings file: '/Volumes/Storage1/VirtualboxVMs/nixops-442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7-vbox/nixops-442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7-vbox.vbox'
error: string index out of range
# NOTE: the problem above is solved by opening the virtualbox-vm-settings and clicking OK
[nix-shell:~/nixops-test]$ nixops deploy
vbox> creating disk ‘disk1’...
vbox> these derivations will be built:
vbox> /nix/store/d1a29szzfmwaj3471ir2fp2fisn0frnf-virtualbox-nixops-16.09.877.5b08a40.vmdk.drv
vbox> building path(s) ‘/nix/store/didvrv41q49w9wfj4syymrjml3npcpkn-virtualbox-nixops-16.09.877.5b08a40.vmdk’
vbox> 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
vbox> Clone medium created in format 'VDI'. UUID: 51fb36c3-f889-4127-9130-9ad63627adf1
vbox> attaching disk ‘disk1’...
vbox> Waiting for VM "nixops-442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7-vbox" to power on...
vbox> VM "nixops-442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7-vbox" has been successfully started.
vbox> waiting for IP address.................................................... 192.168.56.102
vbox> setting state version to 16.09
vbox> waiting for SSH...
test> building initial configuration...
error: assertion failed at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:33:1
(use ‘--show-trace’ to show detailed location information)
error: Command '['nix-build', '<nixpkgs/nixos>', '-A', 'system', '-I', 'nixos-config=/var/folders/qf/n1xghf7974v54qyl0qg4snnm0000gn/T/nixops-tmpK1Kr46/test-initial.nix', '-I', 'nixops=/nix/store/yl83xnrqd6bmgqbi1wapnpr37kiwpsmv-nixops-1.5.2/share/nix/nixops']' returned non-zero exit status 1
# above: it seems like nixops is trying to build the linux package on the darwin-machine. which results in the assertion-error.
# this seems to be the main issue currently. maybe this is a bug in nixops?
# try to set system argument for deployment (!! does not seem to be effective)
[nix-shell:~/nixops-test]$ nixops set-args --argstr system x86_64-linux
[nix-shell:~/nixops-test]$ nixops deploy
test> building initial configuration...
error: assertion failed at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:33:1
(use ‘--show-trace’ to show detailed location information)
error: Command '['nix-build', '<nixpkgs/nixos>', '-A', 'system', '-I', 'nixos-config=/var/folders/qf/n1xghf7974v54qyl0qg4snnm0000gn/T/nixops-tmp3gP_5G/test-initial.nix', '-I', 'nixops=/nix/store/yl83xnrqd6bmgqbi1wapnpr37kiwpsmv-nixops-1.5.2/share/nix/nixops']' returned non-zero exit status 1
{
network.description = "test deployment";
vbox = {
deployment.targetEnv = "virtualbox";
deployment.virtualbox.memorySize = 512;
deployment.virtualbox.vcpu = 1;
deployment.virtualbox.headless = true;
};
test = { resources, ... }: {
deployment.targetEnv = "container";
deployment.container.host = resources.machines.vbox;
};
}
PID/THRD SYSCALL(args) = return
79/0x22e: fcntl(0x4, 0x1, 0x0) = 0 0
79/0x22e: fcntl(0x4, 0x2, 0x1) = 0 0
79/0x22e: getsockopt(0x4, 0x0, 0x1) = 0 0
79/0x22e: ioctl(0x2, 0x4004667A, 0x7FFF5B33A88C) = -1 Err#25
79/0x22e: ioctl(0x2, 0x40487413, 0x7FFF5B33A890) = -1 Err#25
79/0x22e: write(0x2, "accepted connection from pid <unknown>, user betaboon\n\0", 0x36) = 54 0
79/0x22e: fork() = 1404 0
1404/0x50a4: fork() = 0 0
1404/0x50a4: thread_selfid(0x0, 0x0, 0x0) = 20644 0
1404/0x50a4: bsdthread_register(0x7FFFC95380F4, 0x7FFFC95380E4, 0x2000) = -1 Err#22
79/0x22e: close(0x4) = 0 0
1404/0x50a4: getpid(0x7FFFC95380F4, 0x7FFFC95380E4, 0x2000) = 1404 0
1404/0x50a4: __mac_syscall(0x7FFFC9543C46, 0x4, 0x7FFF5B33A598) = -1 Err#45
1404/0x50a4: csops(0x57C, 0xB, 0x7FFF5B33A5D8) = -1 Err#22
1404/0x50a4: close(0x3) = 0 0
1404/0x50a4: setsid(0x3, 0xB, 0x7FFF5B33A5D8) = 1404 0
1404/0x50a4: sigaction(0x14, 0x7FFF5B33A7C8, 0x7FFF5B33A810) = 0 0
1404/0x50a4: bsdthread_create(0x1048CED20, 0x7F8B8CD00EC0, 0x80000) = 19075072 0
1404/0x50a5: fork() = 0 0
1404/0x50a4: read(0x4, "cxin\0", 0x8000) = 8 0
1404/0x50a5: thread_selfid(0x0, 0x0, 0x0) = 20645 0
1404/0x50a4: write(0x4, "oixd\0", 0x10) = 16 0
1404/0x50a4: read(0x4, "\017\001\0", 0x8000) = 24 0
1404/0x50a4: lstat64("/nix/store\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/store/.links\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/profiles\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/temproots\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/db\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/gcroots\0", 0x7FFF5B339870, 0x8000) = 0 0
1404/0x50a4: getuid(0x7FFF5B339AE9, 0x7FFF5B339870, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/profiles/per-user\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: chmod(0x7F8B8CD010E0, 0x3FF, 0x8000) = 0 0
1404/0x50a4: issetugid(0x7F8B8CD010E0, 0x3FF, 0x8000) = 0 0
1404/0x50a4: stat64("/nix/store\0", 0x7FFF5B33A490, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix/store\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: lstat64("/nix\0", 0x7FFF5B339860, 0x8000) = 0 0
1404/0x50a4: stat64("/nix/var/nix/db/reserved\0", 0x7FFF5B33A490, 0x8000) = 0 0
1404/0x50a4: open("/nix/var/nix/db/big-lock\0", 0x202, 0x180) = 3 0
1404/0x50a4: fcntl(0x3, 0x1, 0x0) = 0 0
1404/0x50a4: fcntl(0x3, 0x2, 0x1) = 0 0
1404/0x50a4: fcntl(0x3, 0x8, 0x7FFF5B3395E0) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/db/schema\0", 0x7FFF5B339680, 0x7FFF5B3395E0) = 0 0
1404/0x50a4: open("/nix/var/nix/db/schema\0", 0x0, 0x0) = 5 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B3394A0, 0x0) = 0 0
1404/0x50a4: read(0x5, "7\0", 0x1) = 1 0
1404/0x50a4: close(0x5) = 0 0
1404/0x50a4: access("/nix/var/nix/db\0", 0x6, 0x1) = 0 0
1404/0x50a4: sysctlbyname(hw.ncpu, 0x7, 0x7FFF5B339274, 0x7FFF5B339268, 0x0) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/db/db.sqlite\0", 0x7FFF5B339080, 0x7FFF5B339274) = 0 0
1404/0x50a4: stat64("/nix/var/nix/db/db.sqlite\0", 0x7FFF5B338548, 0x7FFF5B339274) = 0 0
1404/0x50a4: open("/nix/var/nix/db/db.sqlite\0", 0x1000002, 0x1A4) = 5 0
1404/0x50a4: fstatfs64(0x5, 0x7FFF5B338850, 0x1A4) = 0 0
1404/0x50a4: statfs64(0x7F8B8CD01B20, 0x7FFF5B337CB8, 0x1A4) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B338498, 0x1A4) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B338420, 0x1A4) = 0 0
1404/0x50a4: stat64("/nix/var/nix/db/db.sqlite\0", 0x7FFF5B3384B0, 0x1A4) = 0 0
1404/0x50a4: pread(0x5, "SQLite format 3\0", 0x64, 0x0) = 100 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B337E90) = 0 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B337E90) = 0 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B337E90) = 0 0
1404/0x50a4: stat64("/nix/var/nix/db/db.sqlite-journal\0", 0x7FFF5B337E50, 0x7FFF5B337E90) = -1 Err#2
1404/0x50a4: stat64("/nix/var/nix/db/db.sqlite-wal\0", 0x7FFF5B337E50, 0x7FFF5B337E90) = -1 Err#2
1404/0x50a4: fstat64(0x5, 0x7FFF5B337E48, 0x7FFF5B337E90) = 0 0
1404/0x50a4: pread(0x5, "SQLite format 3\0", 0x1000, 0x0) = 4096 0
1404/0x50a4: stat64("/nix/var/nix/db/db.sqlite\0", 0x7FFF5B337E30, 0x1000) = 0 0
1404/0x50a4: open("/nix/var/nix/db/db.sqlite-wal\0", 0x1000202, 0x1A4) = 6 0
1404/0x50a4: fstat64(0x6, 0x7FFF5B337290, 0x1A4) = 0 0
1404/0x50a4: geteuid(0x6, 0x7FFF5B337290, 0x1A4) = 0 0
1404/0x50a4: fchown(0x6, 0x0, 0x0) = 0 0
1404/0x50a4: fstatfs64(0x6, 0x7FFF5B3375B0, 0x0) = 0 0
1404/0x50a4: sysctl([CTL_HW, 7, 0, 0, 0, 0] (2), 0x7FFFD2271E00, 0x7FFF5B337B70, 0x0, 0x0) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B337C80, 0x7FFFD2271E00) = 0 0
1404/0x50a4: open("/nix/var/nix/db/db.sqlite-shm\0", 0x1000202, 0x1A4) = 7 0
1404/0x50a4: fstat64(0x7, 0x7FFF5B337B50, 0x1A4) = 0 0
1404/0x50a4: geteuid(0x7, 0x7FFF5B337B50, 0x1A4) = 0 0
1404/0x50a4: fchown(0x7, 0x0, 0x0) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337D10) = 0 0
1404/0x50a4: ftruncate(0x7, 0x0, 0x7FFF5B337D10) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337D10) = 0 0
1404/0x50a4: fstat64(0x7, 0x7FFF5B337C80, 0x7FFF5B337D10) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337D88) = 0 0
1404/0x50a4: fstat64(0x7, 0x7FFF5B337C80, 0x7FFF5B337D88) = 0 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0xFFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x1FFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x2FFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x3FFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x4FFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x5FFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x6FFF) = 1 0
1404/0x50a4: pwrite(0x7, "\0", 0x1, 0x7FFF) = 1 0
1404/0x50a4: mmap(0x0, 0x8000, 0x3, 0x1, 0x7, 0x0) = 0x10507D000 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337D88) = 0 0
1404/0x50a4: fstat64(0x6, 0x7FFF5B337D28, 0x7FFF5B337D88) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337D88) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337D88) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B337E58) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B337E48, 0x7FFF5B337E58) = 0 0
1404/0x50a4: pread(0x5, "SQLite format 3\0", 0x1000, 0x0) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B3379F8) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x8) = 8 0
1404/0x50a4: read(0x4, "\023\0", 0x8000) = 200 0
1404/0x50a4: write(0x4, "stla\0", 0x8) = 8 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 224 0
1404/0x50a4: lstat64("/nix/var/nix/temproots\0", 0x7FFF5B3395D0, 0x8000) = 0 0
1404/0x50a4: open("/nix/var/nix/gc.lock\0", 0x202, 0x180) = 8 0
1404/0x50a4: fcntl(0x8, 0x1, 0x0) = 0 0
1404/0x50a4: fcntl(0x8, 0x2, 0x1) = 0 0
1404/0x50a4: fcntl(0x8, 0x8, 0x7FFF5B338CE0) = 0 0
1404/0x50a4: lstat64("/nix/var/nix/temproots/1404\0", 0x7FFF5B3395E0, 0x7FFF5B338CE0) = -1 Err#2
1404/0x50a4: open("/nix/var/nix/temproots/1404\0", 0x202, 0x180) = 9 0
1404/0x50a4: fcntl(0x9, 0x1, 0x0) = 0 0
1404/0x50a4: fcntl(0x9, 0x2, 0x1) = 0 0
1404/0x50a4: close(0x8) = 0 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fstat64(0x9, 0x7FFF5B339BA0, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\002\0", 0x1000, 0x2000) = 4096 0
1404/0x50a4: pread(0x5, "\002\001&\0", 0x1000, 0x1D0000) = 4096 0
1404/0x50a4: pread(0x5, "\n\006\017\0", 0x1000, 0x356000) = 4096 0
1404/0x50a4: pread(0x5, "\005\0", 0x1000, 0x1000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0xE000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 824 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dsyj1sp3h8q2wwi8m6z548rvn3bmm3vc-builder.sh\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\002\0", 0x1000, 0x1D1000) = 4096 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x338000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0xF000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2600 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/23w63m4jipdm14f3ay665yzzxqkhh24p-unpack-bootstrap-tools.sh\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x32000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 720 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4izrwkvlcq389ai6nmc7xp3m8kkjqbbf-sh.drv\0", 0x33) = 51 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0175\0", 0x1000, 0x168000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 744 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1c8pcc6ziakj1zd9crg74a049gqfji80-bzip2.drv\0", 0x36) = 54 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x2B000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 744 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/w5iiwwxrq8vrc3q78gfyvw2dfnlm2zhd-mkdir.drv\0", 0x36) = 54 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\002\b\221\0", 0x1000, 0x3C1000) = 4096 0
1404/0x50a4: pread(0x5, "\n\017&\0", 0x1000, 0x33B000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 728 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rpil6dbj0vw5zkx813h8jjw2jlsr3p37-cpio.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\362\0", 0x1000, 0x10A000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 824 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p556m8y7wsphrkdsqkwk920w2mdj8ljk-bootstrap-tools.cpio.bz2.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\tv\0", 0x1000, 0x371000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1640 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1g8vp2i1fmq064axgj1741rv09r39p7g-reexported_libraries\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2336 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/z347hsajryw593h802ggb63lbr3gpv2b-standard-sandbox.sb\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\002m\0", 0x1000, 0x220000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/i1wbwsx8q2g3rh8mr972021805cxj5a9-bootstrap-tools.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\t\341\0", 0x1000, 0xB1000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 824 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/mjjy30kxz775bhhi6j9phw81qh6dsbrf-move-docs.sh\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\002^\0", 0x1000, 0x23F000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/81ikflgpwzgjk8b5vmvg9gaw9mbkc86k-compress-man-pages.sh\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\004>\0", 0x1000, 0x2E9000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/vgz4sms56q3dnwrvcpkjq26vs16gr646-strip.sh\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\b\033\0", 0x1000, 0x2C2000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2792 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xfgjfjcq34fwfbfi1idp2nh81kpigch7-patch-shebangs.sh\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x311000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 7928 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/scf9318hx6pad0wf0qx8a79h635aamfb-multiple-outputs.sh\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0166\0", 0x1000, 0x1F7000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 728 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/z82dl6ialp166drqihzkz67nkl6w3l16-move-sbin.sh\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001]\0", 0x1000, 0x28D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 960 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/a92kz10cwkpa91k5239inl3fd61zp5dh-move-lib64.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001^\0", 0x1000, 0x32F000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/15kgcm8hnd99p7plqzx7p4lcr2jni4df-set-source-date-epoch-to-latest.sh\0", 0x4F) = 79 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\002B\0", 0x1000, 0x23000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "@Ericson2314): Restore using associative array once Darwin\n # nix-shell doesn't use impure bash. This should replace the O(n)\n # case with an O(1) hash map lookup, assuming bash is implemented\n # well :D.\n local varSlice=\"$var[*]\"\n # ${..-} ", 0x8000) = 8192 0
1404/0x50a4: read(0x4, " xz -d < \"$fn\" | tar xf -\n ;;\n *.tar | *.tar.* | *.tgz | *.tbz2)\n # GNU tar can automatically select the decompression method\n # (info \"(tar) gzip\").\n tar xf \"$fn\"\n ", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "en\n mkdir -p \"${!outputDev}/nix-support\"\n # shellcheck disable=SC2086\n printWords $propagatedNativeBuildInputs > \"${!outputDev}/nix-support/propagated-native-build-inputs\"\n fi\n fi\n\n if [ -n \"${setupHook:-}\" ]; ", 0x8000) = 4528 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/812i5d4m0vqwfsghphxp46b0y6gr4a4k-setup.sh\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3824 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/k7jkj0prg0rqhgaav0y9fic1ikgdgs3i-stdenv-darwin-boot-0.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x1A1000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 336 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/i9hzp0qam1ck48cg6lj786z40n0khqcf-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/x62r60nkjnd0rsxgm5i4pac3526n62zk-bootstrap-libcxx.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\002\177\0", 0x1000, 0x1B0000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1768 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b3j5j6bynb4xpcspbzfxks476kxgshh8-bootstrap-libcxxabi.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\274\0", 0x1000, 0x139000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1832 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8894vhw5hzr6d70x6k1riipqq522a3z1-bootstrap-Libsystem.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001 \0", 0x1000, 0x3B9000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3816 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jygvqvjqhlc1lddrf7qz22x2c9f84jmq-stdenv-darwin-boot-0.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x173000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 6728 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1q20x7kixd7xlkz7p9zb6dpcxi1c7xvq-ld-wrapper.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\n\363\0", 0x1000, 0x2FD000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 5448 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/439km7wq2080g1wwri2vww5d30hmc3v6-cc-wrapper.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001\027\0", 0x1000, 0x22D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 5984 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gkxipvb1gxzz9spxpxjbm84scxs8axxq-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\016b\0", 0x1000, 0x2CE000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 3024 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/65df84g7kbpc74diqq3i7sh5br720xj6-add-flags.sh\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001\250\0", 0x1000, 0x301000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ah7qlhv44jns4r1nm3zx13ri7xdwlil1-add-hardening.sh\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1496 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3jxrlskcvbjsqm3rkfkv2dblnlshajb9-utils.sh\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x54000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x12000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "n\\n\\necho \\\"$ccLDFlags\\\" > $out/nix-support/cc-ldflags\\necho \\\"$ccCFlags\\\" > $out/nix-support/cc-cflags\\n\\n##\\n## User env support\\n##\\n\\n# Propagate the wrapped cc so that if you install the wrapper,\\n# you get tools like gcov, the manpages, etc. as well ", 0x8000) = 2544 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xi5jxfxqwlbzq3j1d7qpjm3qibv0x53d-clang-wrapper-9.9.9.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7gr87fxr2ihnksc8rzy3kxd5l6mxhdrr-stdenv-darwin-boot-1.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x20D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 3456 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b6ill8amfg0gki49zapm4asrrw9zzgz9-builder.sh\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 280 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ycwm35msmsdi2qgjax1slmjffsmwy8am-write-mirror-list.sh\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001n\0", 0x1000, 0x312000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "csclub.uwaterloo.ca/nongnu/ http://mirror.cedia.org.ec/nongnu/ http://ftp.igh.cnrs.fr/pub/nongnu/ http://mirror6.layerjet.com/nongnu http://mirror.netcologne.de/savannah/ http://ftp.cc.uoc.gr/mirrors/nongnu.org/ http://nongnu.uib.no/ http://mirrors.fe.up.p", 0x8000) = 2896 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/42jprac7f62mb7lpl48a6y0qvadihwlb-mirrors-list.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bqsz7w0zanswdvlhzamspi51d67g39mq-xz-5.2.3.tar.bz2.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x162000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2488 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3g5q7gw3f1s18j5238jn6q2g1826n8xk-xz-5.2.3.drv\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\a-\0", 0x1000, 0x45000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 3480 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8p6c74ygk5kvm0pmk98fsgf43cy3i5hc-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x21F000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r94jvia6zvb7n7n10grm3nalda4awxmx-libiconv-44.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\004L\0", 0x1000, 0x367000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2496 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fbqj1pqpxlxvyqigaib1hsglkrpqcl85-libiconv-osx-10.11.6.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001/\0", 0x1000, 0x21A000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 424 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7csbcr45fh1vznzhy023rwmhww3akhvg-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3176 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pps1qbbyhimcair2a2krscbsjlzqxh1p-pkg-config-0.29.2.tar.gz.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\004*\0", 0x1000, 0xFC000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/f4bvwqvj0y3z6blvh0knz71a8yq1c45p-requires-private.patch\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001C\0", 0x1000, 0x1BA000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2608 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b2a1sc41b0k3wa8w6bwy46q6knlrsrrh-pkg-config-0.29.2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l8mdh3fnpr6jgnay5ba7rwasjxh0yjh7-m4-1.4.18.tar.bz2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x392000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 504 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/hvz9dmw8ka9y3kc8asay2rgvi0n689d6-s_isdir.patch\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x9F000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bibr7yi2haq2h24av9w2m8hxx6ksssna-darwin-secure-format.patch\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2352 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qzpl8yzrrbv1balf7j8r3crzkxz2grfb-gnum4-1.4.18.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\250\0", 0x1000, 0x180000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 280 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gyhbyximhn4nkrg60rzc6r3v4y9xnfy5-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001i\0", 0x1000, 0x91000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xckg35fb0idrwq91kh9zix2k0bcbqqgn-perl-5.24.3.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "08/07\n-case \"$nm\" in\n- '') ;;\n- *)\n- for p in $plibpth\n- do\n- if $test -r $p/libndbm.so; then\n- if $nm $p/libndbm.so >/dev/null 2>&1 ; then\n- echo 'Your shared -lndbm seems to be a real library.'\n- ", 0x8000) = 696 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2xihh65mm3hjwd3d6lfrh1r54pnbghzp-no-sys-dirs.patch\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001%\0", 0x1000, 0x285000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 664 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n315a3g9bcxlypqzbm36nzrrg40h6lcj-cpp-precomp.patch\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001)\0", 0x1000, 0x123000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 664 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kpvjp14gxsms233yjiya3wiijrc3783x-sw_vers.patch\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\002\226\0", 0x1000, 0x278000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x13000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4792 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/abskwb1f70s3zdjyaisn3gkq8ahgyxyi-perl-5.24.3.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/s9wpj7am5gnijvv3lvjmkd41bf8nlnvd-bison-3.0.4.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\230\0", 0x1000, 0x110000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2512 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pki5iwbsrwwp58fd1cwalzkk3gq1gpq9-bison-3.0.4.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/331ysmr1578gs3jngy5vyzmapd98xhsv-flex-2.6.4.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x388000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2296 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/w89chs3fk7a3zln5rcnpl7kykpgqvp2c-flex-2.6.4.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3400 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jakshq500spgvsmx45zr187552jjc8lg-bzip2-1.0.6.0.1.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0xB6000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 608 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r8acyr4xb2yw1k73qjzm9sxmpws27gjr-CVE-2016-3189.patch\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2648 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/66yywi652b8651jp4rk3mcfdmqafpsgx-bzip2-1.0.6.0.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 304 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dhdp9vwy886bbdsvgqkg9h2ydigzbmli-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\017\254\0", 0x1000, 0x2ED000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xy5vnkir88c5ashh79jydh2l6s78ghdg-unzip60.tar.gz.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\f\357\0", 0x1000, 0x1CF000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rdkdki1f24q8mqgnbsyk7gmh28c027ks-CVE-2014-8139.diff\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\016\344\0", 0x1000, 0x1BE000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1472 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/d9b2qrrq32jzdsdx4y33inzrra5n5z5n-CVE-2014-8140.diff\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3D6000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 5384 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6np2acjv1nxcg0xzsv9a76wyrpxznkna-CVE-2014-8141.diff\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001\023\0", 0x1000, 0x57000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1688 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pdcj2chp5c2gvm2jc3shbajfc62kbx1i-CVE-2014-9636.diff\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001T\0", 0x1000, 0x2EF000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6zqn6w9rwkgfa6z1hpagnh5xhz2dag6m-CVE-2015-7696.diff\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001a\0", 0x1000, 0x65000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1504 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2cq4hsc1v8ylccspw8351r72s56w1fia-CVE-2015-7697.diff\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1480 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1k1wn8807yizgz3ghnbd4k6zsc0dzfkr-CVE-2014-9913.patch\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1272 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/97d26l91h0db8h0qkmhxwi5d8shrilv6-CVE-2016-9844.patch\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\vc\0", 0x1000, 0x8D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p46prhgmv7ibjh9igfkbc6zfxbbi6sk5-dont-hardcode-cc.patch\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x15000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4480 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dmwdbqd5aq84d10v2rrkpqdvrzs7gm7j-unzip-6.0.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3840 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5j3br4v6a54xsjlxs6337rvzqmmblv10-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x1D7000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5288 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ppn4nfn81fcp8d3i3qhls4jn18rdpg55-stdenv-darwin-boot-1.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 5200 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xkd7xmcvzzign8fr3rj83vjp7mj8ijc5-make-wrapper.sh\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 632 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/819fzxfwzp7zhhi4wy5nkapimkb1bsx5-die.sh\0", 0x33) = 51 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1840 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r1wd408wvws9vv8l235jxcs9491zh8bv-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/s8bjshlh2ljm0i2h84g23j95f03vrnv3-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/g2vk68ib0hk2wp7a6a0yavmaw09hdhxw-bsdmake-24.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\006\265\0", 0x1000, 0x382000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3512 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/0g9wpqprshf6qdj1yw2abf9rqpswl1hl-bsdmake-dev-tools-3.2.6.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\003D\0", 0x1000, 0x11000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n5rq5591w2zzzqdvpidj50s66ajl15w3-adv_cmds-119.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bfwi78q0m3flfxznm7zqp0m3hil31a29-adv_cmds-osx-10.5.8.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\002@\0", 0x1000, 0xF5000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/52i9kh171qx5xpcy2cl34k789w4xzssw-cmake-3.9.4.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x19B000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/km0lihlpv8qlm35ghmdmj8kl84yzfs0d-search-path-3.9.patch\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3928 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dyxwq2i672lqkwqxba5ln8gf9hhxzbg7-cmake-boot-3.9.4.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nv10gbyfdhwyk8wwkm35nzlyqldiv6y2-libcxxabi-4.0.1.src.tar.xz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x250000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p1lbbjhajrvfrg3lf1ayyfgyiphdy6sg-libcxx-4.0.1.src.tar.xz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bwspix3xv1mzsiqsxyfjx0sx3basy8zc-llvm-4.0.1.src.tar.xz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0013\0", 0x1000, 0x1C0000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/x2h78fjg1y72r2gzxbkcm1zlvqnalg99-libc++abi-4.0.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1376 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pk4y5z7yf9aa8hcwvz3ghyjvqax5f97l-fix-darwin-dylib-names.sh\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1888 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5wl76n2lrabyqrakzz5rbb2jn8zff4rh-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x293000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 336 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/i9hzp0qam1ck48cg6lj786z40n0khqcf-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1608 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/a81z5qvpdwdzsdyyy5mbfp8ycymnrj00-pthread_mach_thread_np.patch\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3808 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5pph1grjr36zj2c5kgz97xsjmn9lazl3-libc++-4.0.1.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3C6000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1bn09cg05c5sf3vlqdjffg44xsl9wx5b-dyld-360.22.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7czsc0gxw80cgq39cwqf0i11yz93v19a-dyld-osx-10.11.6.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lvw7y31ab8q4gzzpk3yvbfajya0b9p7b-bootstrap_cmds-93.tar.gz.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\231\0", 0x1000, 0xCC000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4184 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9wis2kg92dfv4gnf1mv7v7zb27akqpd8-bootstrap_cmds-dev-tools-7.0.drv\0", 0x4D) = 77 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0xAC000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pp3kd7npsc3lbypiak2336b9b5rlizvz-unifdef-2.6.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6m5svqvi09x063xw17jzx5ini13mbvk7-unifdef-2.6.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9nnmiq8pznxjhvh5cwikfxd00j0ckja9-xnu-3248.60.10.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 7288 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wwbpcn39brwcidb2zd8xpgi620yd5hdm-xnu-osx-10.11.6.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\017\270\0", 0x1000, 0x17E000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3840 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7x5zq1fdd9qksypwm6ga5qx8wsmlh8zm-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r6hgnwh6k0wg8zw78gb3sfgvhxm9vcy8-texinfo-6.5.tar.xz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x22000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2328 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qk0c63vcdkxp78czmfidv7amsi4ci464-texinfo-6.5.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0xFE000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/84d601y7ja33x9afjc7rmdmdlq9xyxvs-lzip-1.19.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ddv1valvsr8ighpl4sbanmqgg4ayrqz9-lzip-1.19.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8mnggqfn1sc9skr3ma3im45rrd92qc2v-ed-1.14.2.tar.lz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/w1v5gwc3k07y6svq3cnzmixa9rmqp56j-ed-1.14.2.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\002-\0", 0x1000, 0x255000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qbf8jjqqnw5mrhvpcrrq9q74qwsi8kb4-Libc-825.40.1.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0012\0", 0x1000, 0x2B6000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2512 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jq2q7zpibql480gqnbxz1bf87lpgz0w9-Libc-osx-10.8.5.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0xEC000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xy5v3mnf3v7myg256wwy0gc17sdqc2ws-Libc-1082.50.1.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nkihglvh60dsawid9iwzjrx08vpxf5qg-Libc-osx-10.11.5.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\212\0", 0x1000, 0xD7000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/racdzgwpy5hd28vidxli3kgjd8nxv6ig-Libm-2026.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jnmzim1wphz78rb84yndv9svxph3qibx-Libm-osx-10.7.4.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8r01yma25ildzrm7wc29ldwm23yxbbg4-Libinfo-477.50.4.tar.gz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2256 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rvwafc76fm5qla2nydsx7d42r70dipc3-Libinfo-osx-10.11.6.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1r8vr8x0pf8264gs73g2x6pffqdmgjdi-architecture-268.tar.gz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2208 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wrjy1lsvdbfmhzfrdx47fxadzmlh5pc3-architecture-osx-10.11.6.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gs4cdxyjj6fhgk44i7jy8xvp8ypkzlgf-libclosure-65.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2032 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3qcf25fia9clzx4a6xgm9py8n18g04a9-libclosure-osx-10.11.6.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jfy0ml5spcmbqx15y7cg54m0xpx0667i-CarbonHeaders-18.1.tar.gz.drv\0", 0x4A) = 74 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x39D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2192 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8vjb6sqgc693c6yk933388j8ccb190xj-CarbonHeaders-osx-10.6.2.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ckr9hx3mqm1i7w89rsdffjrvhxm9nhv0-libdispatch-442.1.4.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x149000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2288 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/hgps9kv3vga4p5bcnal4ammikql0nrk0-libdispatch-osx-10.10.5.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x247000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6mw23m4wixsw9l05kjrl1rnq8gig1wcj-ncurses-5.9.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1960 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/i4ai4idhj7d7qdyhv601568hna0b5car-clang.patch\0", 0x38) = 56 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/aq2dwzb5xawlp6yn9nqmd9l94vg9nnz7-ncurses-5.9.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0xD0000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qbsfbhz4qdhmbbh6cxrzs86q3i29y8ks-CommonCrypto-60075.50.1.tar.gz.drv\0", 0x4F) = 79 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sjqaagzv78abgf3sazj5dxg6rhm202pj-CommonCrypto-osx-10.11.6.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/yicnwmsxwk677mwxbq4x1ya151cwacrj-copyfile-127.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2024 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lnw4mlqr88r95p0kdzc9a7lxxpf9g0z5-copyfile-osx-10.11.6.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x307000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x24000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/srnqj12s8jdpjvphnsil9ww2x8qpwmm2-removefile-41.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x137000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/km4g3dszvkn34rswn1azfgz4zimp1hiz-removefile-osx-10.11.6.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/01dr2rp5z9fl5ywryvdzv41p5ag3isqk-launchd-842.92.1.tar.gz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x10000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b1awvmjm3ndm702rgabrn831y0b9arbx-launchd-osx-10.9.5.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9c0j971xl66i9jmgn9bpaaxmhqd6pfix-ppp-809.50.2.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2352 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ryw9l7m58vlpk8ax6ihr2g3af4pnawhj-ppp-osx-10.11.6.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/z5724k48rm5x3qx6frz6shdwjh61l1g1-IOAudioFamily-203.3.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ydq7v0lkxbp7vccivwyy22p96hjdi90y-IOBDStorageFamily-14.tar.gz.drv\0", 0x4C) = 76 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/81338skp5k6lkcz9560wxllc9sqx920j-IOCDStorageFamily-51.tar.gz.drv\0", 0x4C) = 76 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3152 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ix5la40wbjqslxfpdaq687k2bazjjlly-IODVDStorageFamily-35.tar.gz.drv\0", 0x4D) = 77 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\003q\0", 0x1000, 0x3AF000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rmvrqqflfdff2igx561h1sxghlwmbf9n-IOFWDVComponents-207.4.1.tar.gz.drv\0", 0x50) = 80 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/amw961py93x1p4b92xn4x7kf3z3n40rf-IOFireWireAVC-423.tar.gz.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sn3gq9pjyvjn433r3c8nbwbppj055b7c-IOFireWireFamily-458.tar.gz.drv\0", 0x4C) = 76 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sysafy3rhd590iwvqnhjb2rd3z5ynpbh-IOFireWireSBP2-427.tar.gz.drv\0", 0x4A) = 74 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3288 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1d84z1fv5zx5b2bal3khn1d6lh0n2l69-IOFireWireSerialBusProtocolTransport-251.0.1.tar.gz.drv\0", 0x64) = 100 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x78) = 120 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fr6axs9mszyhvd43yqc610alm2pvrmp3-IOGraphics-485.40.1.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\002\034\0", 0x1000, 0x273000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n18yz64703h9mwc4rhi3ajp9ywpy1py4-IOHIDFamily-606.40.1.tar.gz.drv\0", 0x4C) = 76 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0xDB000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n066rwm9qkx7hdgfqwyh6mhwgfchh0by-IOKitUser-1050.20.2.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/i6h7mi5mh8gmmshkllv4h6bzm01a6qh1-IONetworkingFamily-101.tar.gz.drv\0", 0x4E) = 78 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/96d2gpvp7f9cn137jbi2vkv5gd3gz86z-IOSerialFamily-74.20.1.tar.gz.drv\0", 0x4E) = 78 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x7E000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wijzwkm4yn2zlas0sq1zj5dn8kj3s2zl-IOStorageFamily-172.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x13C000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l7fvba1qgsm2qmvmcbg79mhk207fr42a-IOUSBFamily-630.4.5.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/x0y6q4qx16q9xl04cc6id19xj7yvkdxz-IOUSBFamily-560.4.2.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "orkStats.h $dest/network\\ncp IONetworkingFamily-*/IONetworkUserClient.h $dest/network\\n\\n# ps: missing IOUPSPlugIn.h\\ncp IOKitUser-*/ps.subproj/IOPowerSources.h $dest/ps\\ncp IOKitUser-*/ps.subproj/IOPSKeys.h $dest/ps\\n\\n# pwr_mgt: ", 0x8000) = 7584 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/a4ivg7cs61ncqfdadlpixvqhk61avf69-IOKit-osx-10.11.6.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\n8\0", 0x1000, 0x274000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x28000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kbd4jrvhnbpwhkd8a9jzq8a4fd3nk4s9-eap8021x-222.40.1.tar.gz.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2152 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/67jrs78fia91hrksf6vwl7dfxdp7ql3x-eap8021x-osx-10.11.6.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/zqf8cgpnh2dkglbvj86pj34xgxdj372f-Security-55471.14.18.tar.gz.drv\0", 0x4C) = 76 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001k\0", 0x1000, 0x2E8000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 7192 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kdabpbpgh0qbcri0qf8srsjhydrqqc9n-Security-osx-10.9.5.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3D2000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r3c8i75iwwbaa52h4lcxmalcnzh6v4zz-configd-453.19.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, " -Ihelper -Iderived -F. -c SCDNotifierWait.c -o SCDNotifierWait.o\\ncc -I. -Ihelper -Iderived -F. -c SCDNotifierInformViaCallback.c -o SCDNotifierInformViaCallback.o\\ncc -I. -Ihelper -Iderived -F. -c SCDNotifierInformViaFD.c -o SCDNotifierInformViaFD.o\\ncc ", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "re/wwbpcn39brwcidb2zd8xpgi620yd5hdm-xnu-osx-10.11.6.drv\0", 0x8000) = 128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dlmbksb60l208wxck7na7hhbz9n703fz-configd-osx-10.8.5.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/h7hr2cqlvfrvvjbnsqx5dx3l4psvwvb8-mDNSResponder-625.41.2.tar.gz.drv\0", 0x4E) = 78 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x1DE000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1022gr426pdkpkh6kb0fi7q9xmjm4p0m-mDNSResponder-osx-10.11.6.drv\0", 0x4A) = 74 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\002\244\0", 0x1000, 0x14000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/c4lmq83g7shwv2pi2y9prachhh50q7hc-libresolv-60.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/a3gkav9r4bjs3b7kp0l7mf86wc9a5c8z-libresolv-osx-10.11.6.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xmh2z7fzh7jzz5dy2d1sh1w6jgysjdyy-Libnotify-150.40.1.tar.gz.drv\0", 0x4A) = 74 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x1C4000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/v6inwia5cc8mqvcw19nphfqz8v6l8wbk-Libnotify-osx-10.11.6.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\002\300\0", 0x1000, 0x261000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8an24yy8h0zm2sn20w98dic2ixnj8m0j-libplatform-125.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2032 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/zkrh6v6dxrwa5gm6y4g54g74l24ivmgs-libplatform-osx-10.11.6.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3kma3ldb8fxp8nk9xsvbd67lfr51l8qf-libutil-43.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2008 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7x4sml6pd1r7rkqgbl1rnlzdi7j9w6np-libutil-osx-10.11.6.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ih5lq5x44fwmch654yafdspwd2c7bmqx-libpthread-138.10.4.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\f\004\0", 0x1000, 0xB4000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2768 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/583d6w6aryfkydg1b2b12xk9bv2nw485-libpthread-osx-10.11.6.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gwyx5rv7lpmk96693cdzlyf46iqqqzdb-objc4-680.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b5h5vwahrds27hcli17nakyisszdi63c-objc4-osx-10.11.6.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2n32wsx56dj5zzchin464syp1qmp9rga-autoconf-2.69.tar.xz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3B000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2376 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/s6bkr7rc36jza0qxd41580fgi591sq73-autoconf-2.69.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 296 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bywzpy250jb6327d89ddk7dk1z1r1rbk-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x2D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gzx1pvivgfvphzr2y7dkr02w22chz4bl-automake-1.15.1.tar.xz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2568 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/hp535l93l1cs2cnxnmpmk72slicaja9s-automake-1.15.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1536 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/cdips4lakfk1qbf1x68fq18wnn3r5r14-builder.sh\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001\311\0", 0x1000, 0x12D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2y696pk2dlwxjd9p73bw65ncdlmjsjf0-gettext-0.19.8.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p2fp6i7hjx9af1wbwr32k217wp2dxmiw-absolute-paths.diff\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3712 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/scnrq2br9vyc4k8vpc8ajylsqfqvwjnl-gettext-0.19.8.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sgl4vy878s3d7981ymlyqybgx6wmpndm-gettext-1.05.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2640 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lj30i39nc1j9b1sgk6hgfbcirx0c3sva-perl-LocaleGettext-1.05.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8s8vmyyd16hp068778q4hjp6n4l25387-help2man-1.47.4.tar.xz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2944 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/0bwz6afkxq8knldgj05s1ini55wvgp9l-help2man-1.47.4.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b972lhdr747yc3pv0w8fafhc0n9bhwzj-libtool-2.4.6.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2680 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/z5dmkj2dqbn1xwg49p0gcm5fvzakf2bv-libtool-2.4.6.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3904 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8ibim98b1f05cb8bqizzm194xa86qslg-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\022\0", 0x1000, 0x77000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1344 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/z8xm7gv55rnbig8vacadf10ifvh3dz6z-ld-rpath-nonfinal.patch\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 784 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r9iy2wdkq3w0n1hbyg92c2sqg3vcbkhl-ld-ignore-rpath-link.patch\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4648 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/12qbv4xm8zl8hg271c92yl2nsyc9la6b-cctools-port-895.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r1b7v5jdnbz8v1dn3aqrqxhdp48ivgqr-Csu-85.tar.gz.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2280 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/a50l5pl414mba4bk6fxcbizl2b46cx8n-Csu-osx-10.11.6.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "alpha_l\n_isascii\n_isatty\n_isblank\n_isblank_l\n_iscntrl\n_iscntrl_l\n_isdigit\n_isdigit_l\n_isgraph\n_isgraph_l\n_ishexnumber\n_ishexnumber_l\n_isideogram\n_isideogram_l\n_islower\n_islower_l\n_isnumber\n_isnumber_l\n_isphonogram\n_isphonogram_l\n_isprint\n_isprint_l\n_ispunc", 0x8000) = 7280 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/47y9cjz7bjdalg6j5ha1zadq91rl6pia-system_c_symbols\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\rC\0", 0x1000, 0x108000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "elf_trap\n_host_set_UNDServer\n_host_set_exception_ports\n_host_set_special_port\n_host_statistics\n_host_statistics64\n_host_swap_exception_ports\n_host_virtual_physical_table_info\n_host_zone_info\n_i386_get_ldt\n_i386_set_ldt\n_important_boost_assertion_token\n_int", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "ssign\n_task_assign_default\n_task_create\n_task_for_pid\n_task_get_assignment\n_task_get_emulation_vector\n_task_get_exception_ports\n_task_get_mach_voucher\n_task_get_special_port\n_task_get_state\n_task_info\n_task_name_for_pid\n_task_policy\n_task_policy_get\n_task_", 0x8000) = 2040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l16baw9gjc4n2m9vgp8gxrygw4wy8kni-system_kernel_symbols\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\001\337\0", 0x1000, 0x319000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 200 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/567akx8m4gbzcrkz72251fyr1xfnyswp-system_symbols\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/iq0avx9b4gfyw2z9p6ihp8q15f4j5kim-cpio-2.12.tar.bz2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001>\0", 0x1000, 0x2A3000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dfw5rry3xbgy4xkqhgb50k808zdi03f6-patchutils-0.3.3.tar.xz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2504 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8djp1rizc1dblv8svnb0mpa0c3lwvc17-drop-comments.patch\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sviqs4d8m1hjkvqp7pay0bzib5xrrcwx-patchutils-0.3.3.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3872 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4l32i39qckfsifrz16s25aw0fnynvf02-CVE-2015-1197-cpio-2.12.patch.drv\0", 0x4E) = 78 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1kdsfn67g8h7gzmrawir80qckc4pb5gs-CVE-2016-2037-out-of-bounds-write.patch\0", 0x54) = 84 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x2F000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x68) = 104 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2376 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xjxlh8h2v505ywrjwdiav9p2jaacf4a2-cpio-2.12.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/d9296wpcrcm4zkn39xjcqb4ll3vvhgwm-Libsystem-1226.10.1.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "xport_library $out/lib/libSystem_internal.dylib \\\\\\n $args\\n\\nln -s libSystem.B.dylib $out/lib/libSystem.dylib\\n\\n# Set up links to pretend we work like a conventional unix (Apple's design, not mine!)\\nfor name in c dbm dl info m mx poll proc pthread rpc", 0x8000) = 3928 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/55if8i80fl8p8wa9f0hqg5z28ml7yd2l-Libsystem-osx-10.11.6.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wpyfddr2pp4wpdbsdjndi06nncq3d62i-ICU-531.48.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jc4sydwrddhvy7qvwdnn5c7lsx70q5iq-ICU-osx-10.10.5.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fj794gzlay5g76c2bpnikni048kf7n59-CF-1153.18.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x204000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2312 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/00b3z5q1xww9k744xjdyw7z2jxpwlpqn-add-cfmachport.patch\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/62m6bi0kp6fsmsv2viidf3j7vcs3afjg-cf-bridging.patch\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 760 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/yqxfl9fcx05654gdigil1dp07x6l63i7-remove-xpc.patch\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x20C000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5584 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ixw2d84r2majk8kmcq2agzs7s8gkp8vr-CF-osx-10.10.5.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 2800 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jik02mkz72r2f6hhxnlhp6h5f0fi89gw-expand-response-params.c\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/y4y3kpcqsp53zcis3nb34jls7d5flxwc-expand-response-params.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "\\nccLDFlags+=\\\" -L/nix/store/cp0dhigj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib\\\"\\nccCFlags+=\\\" -B/nix/store/cp0dhigj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib\\\"\\n\\n\\n\\n# Find the gcc libraries path (may work only without multilib).\\n\\n\\necho \\\"$ccLDFl", 0x8000) = 2864 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/484wpcrrs0661kjpizhjfskxhxjjwim0-clang-wrapper-9.9.9.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 7104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/j1my6bnyn1l0kb4gdi0pkwhhlmdddl0h-stdenv-darwin-boot-2.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9dwxa9vzcidbjaz3m8f0sqk4l59yzdkx-zlib-1.2.11.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/89iaa932ykj2xs3k4ydp06wvi3m9b54w-zlib-1.2.11.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "csclub.uwaterloo.ca/nongnu/ http://mirror.cedia.org.ec/nongnu/ http://ftp.igh.cnrs.fr/pub/nongnu/ http://mirror6.layerjet.com/nongnu http://mirror.netcologne.de/savannah/ http://ftp.cc.uoc.gr/mirrors/nongnu.org/ http://nongnu.uib.no/ http://mirrors.fe.up.p", 0x8000) = 2896 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/42jprac7f62mb7lpl48a6y0qvadihwlb-mirrors-list.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/h7732h1ny90nkvhani2my41r4j7jxga1-binutils-2.28.1.tar.bz2.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 496 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/q9pypsrw5slh7m607scrbx7y6bbn01bl-new-dtags.patch\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 528 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wy1lrg34fw2f1msbiws3b60n8wmg8rvn-dtneeded.patch\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 656 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sqbhaaayam0xw3a3164ks1vvbrdhl9vq-deterministic.patch\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, " definitions\\n\"));\n fprintf (file, _(\"\\\n+ -z execheap Mark executable as requiring executable heap\\n\"));\n+ fprintf (file, _(\"\\\n -z execstack Mark executable as requiring executable stack\\n\"));\n fprintf (file, _(\"\\\n+ ", 0x8000) = 472 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/warg8i0kjfr2hkc3lz3kwfgj9q8hvny3-pt-pax-flags.patch\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 688 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jxhica5y04jd182c2b3xzap31ixxplw2-no-plugins.patch\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4368 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jhj3j6f3iq5ccgl14cay9fgva7jln2na-binutils-2.28.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/52i9kh171qx5xpcy2cl34k789w4xzssw-cmake-3.9.4.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3928 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dyxwq2i672lqkwqxba5ln8gf9hhxzbg7-cmake-boot-3.9.4.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nv10gbyfdhwyk8wwkm35nzlyqldiv6y2-libcxxabi-4.0.1.src.tar.xz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p1lbbjhajrvfrg3lf1ayyfgyiphdy6sg-libcxx-4.0.1.src.tar.xz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bwspix3xv1mzsiqsxyfjx0sx3basy8zc-llvm-4.0.1.src.tar.xz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3208 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nb14bhm9nqghnr9aczp4b586y1c7s3h3-libc++abi-4.0.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gwyx5rv7lpmk96693cdzlyf46iqqqzdb-objc4-680.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3184 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4rv2sijbgf8xxi9dli7qmjk8dvd2l2zw-objc4-osx-10.11.6.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x2FE000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sgl4vy878s3d7981ymlyqybgx6wmpndm-gettext-1.05.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2640 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lj30i39nc1j9b1sgk6hgfbcirx0c3sva-perl-LocaleGettext-1.05.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 6824 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/m9f70v1zq1ngl4w31idzd8lpfg6vn0x9-stdenv-darwin-boot-2.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x1D3000) = 4096 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x34000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1904 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4jm88vd0y0v1kvw46761a7m49hqd79z9-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9fnqlikpn1vqcfgni2zwl2ha8jcab994-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8s8vmyyd16hp068778q4hjp6n4l25387-help2man-1.47.4.tar.xz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3008 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pih0gh37db6s0px96ky8cb81gylfxa70-help2man-1.47.4.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b972lhdr747yc3pv0w8fafhc0n9bhwzj-libtool-2.4.6.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2744 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nkayii8sg8vv26c2xnyjh7b64p1k8rdh-libtool-2.4.6.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3904 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8ibim98b1f05cb8bqizzm194xa86qslg-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4720 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l189swzkapi7zp3j73bc802v8ii2k07n-cctools-port-895.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3536 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4mgm4z8vlfwlki316l7awxd2s418mxpw-cctools-binutils-darwin.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/cgpn80p05qqhsvp5i0z873fidk54yz2d-bash-4.4.tar.gz.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/z302abn6fk3dvryjdq0vhiwhg1gj8s0p-bash44-001.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jvvlasrld40g0rlwhmpqign82f27mifl-bash44-002.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8m5ky9ppp2q97z34v3pih16k2v6680i5-bash44-003.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/zwvdjmhmkl9jlg8qr4v7zjjpyz7ma2aj-bash44-004.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3D5000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p76x3dvklaswdbaz4i8f3z5py40ba8x5-bash44-005.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xhkl10cgpdlzz09n9ql2x2ckrhy611wr-bash44-006.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6lp316x99cvm3jgzpimhxfq2hgq0jqsx-bash44-007.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6pb1f4xcribgw9dn1cbh3jj68lskybix-bash44-008.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9623ndrzsi4b6i3j5vkncd0ad57lxqvb-bash44-009.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/608fh3g6hyxd02rvqmqdjdyh7gpyw5n6-bash44-010.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gby1lwzd7y86q70vs05jss8kfy1chfd0-bash44-011.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x348000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3040 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/yma4f230vdd29pi0736j2zmlskgzjp16-bash44-012.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5832 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3ma3q2qf60gvsqs4w0k2krcyikr1pvhf-bash-4.4-p12.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1960 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5dbhkc929lg7mqabq49mi9vsgqaf3dws-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3880 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/90fkz3q3vp2fnpr0836nx6i8b445n4sq-libc++-4.0.1.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3840 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5j3br4v6a54xsjlxs6337rvzqmmblv10-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/g2vk68ib0hk2wp7a6a0yavmaw09hdhxw-bsdmake-24.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jlk1ifly7d2ihfnqnl7w0khc1fzway7p-bsdmake-dev-tools-3.2.6.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n5rq5591w2zzzqdvpidj50s66ajl15w3-adv_cmds-119.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8854r64i70s80c72qdw77jargrss3dha-adv_cmds-osx-10.5.8.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2176 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pccsqiaw7nka14kws3bf38a046g9sism-expand-response-params.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "gj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib64\\\"\\n ccCFlags+=\\\" -B/nix/store/cp0dhigj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib64\\\"\\nfi\\nccLDFlags+=\\\" -L/nix/store/cp0dhigj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib\\\"\\nccCFlags+=\\\" -B/nix/store/cp0dh", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b12c88p8z55w1xygga4cm165jgnq6bwh-clang-wrapper-9.9.9.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8an24yy8h0zm2sn20w98dic2ixnj8m0j-libplatform-125.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/x8v5xbchljh3wpr9kag7ivz4jmxc73df-libplatform-osx-10.11.6.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x3A000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fj794gzlay5g76c2bpnikni048kf7n59-CF-1153.18.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5648 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/cmpg5495ws72wnxxc22zj1px25dzr31a-CF-osx-10.10.5.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 7296 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/49g808p7nkdzs4j5ypb4lw4ncqglwkxc-stdenv-darwin-boot-3.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "csclub.uwaterloo.ca/nongnu/ http://mirror.cedia.org.ec/nongnu/ http://ftp.igh.cnrs.fr/pub/nongnu/ http://mirror6.layerjet.com/nongnu http://mirror.netcologne.de/savannah/ http://ftp.cc.uoc.gr/mirrors/nongnu.org/ http://nongnu.uib.no/ http://mirrors.fe.up.p", 0x8000) = 2896 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/42jprac7f62mb7lpl48a6y0qvadihwlb-mirrors-list.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bqsz7w0zanswdvlhzamspi51d67g39mq-xz-5.2.3.tar.bz2.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2544 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4swl0bh9pyfm6k2fladnm9yffpz4q59x-xz-5.2.3.drv\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1gx9g971kax8vjglpbpdndlxhphvl4q5-gmp-6.1.2.tar.bz2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2544 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xnmn2zm4jpki8kfw8jarnxp2ycwny5im-gmp-6.1.2.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r94jvia6zvb7n7n10grm3nalda4awxmx-libiconv-44.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2560 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rnkqsga3w0pnk6lm8nnw3srialk521pj-libiconv-osx-10.11.6.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3176 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pps1qbbyhimcair2a2krscbsjlzqxh1p-pkg-config-0.29.2.tar.gz.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2664 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5a7rk6bqypr4x9p6anmhwz3sbmzv97xr-pkg-config-0.29.2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/f5q3yjvr9jdbwpszz5pkam6bc2n7ny73-make-4.2.1.tar.bz2.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 936 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2vcw4vlinll7w0qkn4kjcagzrv4cz2gz-impure-dirs.patch\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 4616 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gx43idih3p4jij884bwqkdx9wfnsym9s-pselect.patch\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2864 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l68fmczmwlpak4wd8yrnmk3acils5bf8-gnumake-4.2.1.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/mhdgi4jys57l0x6syxlkipwjms2vlq0i-coreutils-8.28.tar.xz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2864 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/hw59y7rf8w28s123b51ac57kbd0azjvh-coreutils-8.28.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/22iv9509iwcggxm540gjjlph7l8xvdvx-findutils-4.6.0.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3A7000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 712 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dfp60bl1bf40rmimww2c3yp621fzbiqn-memory-leak.patch\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 536 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4r8s8hcwyvvvnpcncps09zscqkh5qapx-no-install-statedir.patch\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2872 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kzd30rvjgl5x00sc5darkd32diz5m1lp-findutils-4.6.0.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3400 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jakshq500spgvsmx45zr187552jjc8lg-bzip2-1.0.6.0.1.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/yyjjg02dss6vd9g1p21nv0r568iwlkxv-bzip2-1.0.6.0.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9dwxa9vzcidbjaz3m8f0sqk4l59yzdkx-zlib-1.2.11.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2760 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/56wcakryjcppgwgkc14hynaz0bf924pc-zlib-1.2.11.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 7008 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dd4zgqgqfwq1arjfirmzzkrjqr7h45dp-stdenv-darwin-boot-3.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 864 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qdzkimfyd4qsmmg3ya2blr06rkmy3002-find-xml-catalogs.sh\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1928 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/j3bpiygz2kww3yp4n9376l2aqayd1y0a-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b4cx3v2c0gssdyy4z36m09d06g91nmxp-libxml2-2.9.5.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3200 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/q1xhsdknhsaxdfcdcl6lbyjjvb5anf3j-libxml2-2.9.5.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x151000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4xn08v55qss75kvpi32dz10hz5bdy0v5-libffi-3.2.1.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/yxhscbf2wx7d39zczwq634k9fwfhbhs1-libffi-3.2.1.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x3E000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bwspix3xv1mzsiqsxyfjx0sx3basy8zc-llvm-4.0.1.src.tar.xz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5c4gns2drkwb1d86lsqcas6pkr0k5dk4-compiler-rt-4.0.1.src.tar.xz.drv\0", 0x4D) = 77 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 544 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qmm77p2ac15f6y07a3n2w1sidd55wqsx-site.tmac\0", 0x36) = 54 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xr8vlgzhdcqaiyk8kywx00dm02pd2sny-groff-1.22.3.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3016 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l7svxrd42hs4qda56d1hijr0cg4xjczr-groff-1.22.3.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/52i9kh171qx5xpcy2cl34k789w4xzssw-cmake-3.9.4.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3928 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dyxwq2i672lqkwqxba5ln8gf9hhxzbg7-cmake-boot-3.9.4.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qz07la17aaabx8pqmf98h4iy1asqbd65-openssl-1.0.2m.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 912 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ppi54bf8q8qh0svvf0wrxxknqg0aw814-nix-ssl-cert-file.patch\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 856 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/643v92q6nbnndsc6r0vgvs1gscnjmyal-use-etc-ssl-certs-darwin.patch\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3824 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/f9fi1ml4ckz1q3f2875ixjarmdpvpicl-openssl-1.0.2m.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ayhi2dcfqnafy3jm3sryvnfg0mpjdqhp-db-5.3.28.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 5104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n5zdpjy8n4wj92qxd2gdr8mhv01jss7p-clang-5.3.patch\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 592 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ky3k9vamivjyji36043nrkz194l7966g-CVE-2017-10140-cwd-db_config.patch\0", 0x4F) = 79 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2464 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6z628j9whcf9lwabn6rfmlq7w9vz4br9-db-5.3.28.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xdwji0ivarmhr4cxi22wqzikjm6a7s83-gdbm-1.13.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9pkv97ym2gf7zcrzc4s9jym2kndc8fpx-gdbm-1.13.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3128 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fnx49h2r67gw64qcmvzm3qa0fhb9y53c-sqlite-autoconf-3210000.tar.gz.drv\0", 0x4F) = 79 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3768 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xfiahyjcivs3r1m95jr7mx8av5mjisar-sqlite-3.21.0.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3pzyz1a7zf7jqpd3dsxdxaj1139pkp6m-readline-6.3.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 888 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bw6aa38615ww5karcn8kslsf5hxgz412-link-against-ncurses.patch\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 696 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/v3fnnlch7i18q6ga55dqc05ig9nry17r-no-arch_only-6.3.patch\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/39qimqq45r4ddbhvlzfmix6qlr9gykb0-readline63-001.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fwfmpy34bxmmzkyzd5fksdgr2jb28x70-readline63-002.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rril9v62lv843a9bznqcid7xwiql39g9-readline63-003.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/g5dmlajax874d3cqr45ghpns52dds5gh-readline63-004.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rj92zcm3n1ddrbr28ik45nwgiqp9avgc-readline63-005.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/hfs7rx5nnv6sq8j3w1zdbdhh9c97lwia-readline63-006.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bb93bqwrs2pjxha64nba0gh2y2b9hazk-readline63-007.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x42000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/4w1d1lvwsb5m91gh1a09jjcaiq72s5lk-readline63-008.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4840 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6645yzgb63a16nscjhlzqrir2j15bsa9-readline-6.3p08.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 784 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/y1i1s4j2gvy3faqa1jp966brnm6c7wi8-setup-hook.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1968 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qz65rcfkbaslh1mfxns4l462mz2a7v31-python-setup-hook.sh.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/96m6jmhxpmfcszj3nj09nxsi9kwkly1a-Python-2.7.14.tar.xz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1592 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/cfk04ans56xql9l6waqhqzzd60g9rzxi-search-path.patch\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dxscwf37hgq0xafs54h0c8xx47vg6d5g-nix-store-mtime.patch\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1344 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dfyfzha1vnab8kfnxi99v9ikfdfnpm7k-deterministic-build.patch\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 3712 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/j4qih762a8gfa4lfnrivaf9cv8drinjq-properly-detect-curses.patch\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, " 'linker_exe' : [\"cc\"],\n- 'archiver' : [\"ar\", \"-cr\"],\n- 'ranlib' : None,\n+ executables = {'preprocessor' : None,\n+ 'compiler' : [\"cc\"],\n+ 'compiler_", 0x8000) = 4400 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jz6dsvd5kzk5fggmw0m14wklza5m2zks-python-2.7-distutils-C++.patch\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1gx9g971kax8vjglpbpdndlxhphvl4q5-gmp-6.1.2.tar.bz2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2488 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9s1333jyc214nfqzlnahywwz7s3bpfwa-gmp-6.1.2.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/mhdgi4jys57l0x6syxlkipwjms2vlq0i-coreutils-8.28.tar.xz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2808 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lf58yqkxw22ph81nfdgrv391fkc6s5yf-coreutils-8.28.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\307\0", 0x1000, 0x1B4000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "re/6z628j9whcf9lwabn6rfmlq7w9vz4br9-db-5.3.28.drv\0", 0x8000) = 1576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/vcqf5h5907pwjpi5wk2r6v5lgbl9jpfs-python-2.7.14.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6mw23m4wixsw9l05kjrl1rnq8gig1wcj-ncurses-5.9.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5144 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/9z3ykw788f50yhi4fnn3s1ldyyg5s99x-ncurses-5.9.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1216 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5qfqlm3vn2gbh3v28ahb9f74fq3wyw8l-llvm-outputs.patch\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 6200 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/d7avv43m8kb9f69qpdvjpzw9way580yf-llvm-4.0.1.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r6hgnwh6k0wg8zw78gb3sfgvhxm9vcy8-texinfo-6.5.tar.xz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2384 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/a89r22kqn8bs7zy6haq260r66cqvixg0-texinfo-6.5.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/84d601y7ja33x9afjc7rmdmdlq9xyxvs-lzip-1.19.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8xy9rnisk0kq5djx5w4ab0n31b9n4cwj-lzip-1.19.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8mnggqfn1sc9skr3ma3im45rrd92qc2v-ed-1.14.2.tar.lz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2176 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/v2kfg7myf5x9fmjkci0l7k3nz3wspcrk-ed-1.14.2.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/81b5idcb6i61mnf8iifxy207cswr17ym-diffutils-3.6.tar.xz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2544 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7im6w9j2kn2vfr6aw6lh1fsbjmlv13s0-diffutils-3.6.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/k3c61xm74kk8i1zhh1gnxhms9gipxrkz-expand-response-params.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x48000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "96d5m5qmdws4k417jvy2-bootstrap-tools/lib64\\\"\\n ccCFlags+=\\\" -B/nix/store/cp0dhigj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib64\\\"\\nfi\\nccLDFlags+=\\\" -L/nix/store/cp0dhigj0lxg96d5m5qmdws4k417jvy2-bootstrap-tools/lib\\\"\\nccCFlags+=\\\" -B/nix/store/cp0dhigj0lx", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/jxrpv77pcx7v1q12rfyybpcv4bwn7fcd-clang-wrapper-9.9.9.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gwyx5rv7lpmk96693cdzlyf46iqqqzdb-objc4-680.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/cjvynr93xpsjzin38lmigwsfv0i86k62-objc4-osx-10.11.6.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sgl4vy878s3d7981ymlyqybgx6wmpndm-gettext-1.05.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2640 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lj30i39nc1j9b1sgk6hgfbcirx0c3sva-perl-LocaleGettext-1.05.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1896 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/92ki2z9y56cnna8kg0k0c7g3kqb3av4q-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/vbxgv93r2szdc022xpy13nzrnl7nnzra-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8s8vmyyd16hp068778q4hjp6n4l25387-help2man-1.47.4.tar.xz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3000 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/j5nv9jryvm9zj8j695g422czs9lkadvj-help2man-1.47.4.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b972lhdr747yc3pv0w8fafhc0n9bhwzj-libtool-2.4.6.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2736 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dppflvic1v8p4g7fh4j2yxp8b2afg3rp-libtool-2.4.6.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3904 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8ibim98b1f05cb8bqizzm194xa86qslg-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/f2ryapimqppvp6kjsjwhc0kfcgcfa101-cctools-port-895.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wpyfddr2pp4wpdbsdjndi06nncq3d62i-ICU-531.48.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2632 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fx7r8p40picwgf1z388565g54rppc7iq-ICU-osx-10.10.5.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8an24yy8h0zm2sn20w98dic2ixnj8m0j-libplatform-125.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bd4k36kq5kibiddpgrp1fkf8x955b15v-libplatform-osx-10.11.6.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fj794gzlay5g76c2bpnikni048kf7n59-CF-1153.18.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5640 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/q0gqfcs58iimdyr8jnpypxi3xc4q5qpv-CF-osx-10.10.5.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4960 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fk96brda6pdkafl026cxnncv1q9rqizm-stdenv-darwin-boot-4.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4736 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/n1q2x9h1b4jpa29m4bwv0x9wsm2jzc7i-stdenv-darwin-boot-4.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 360 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ji24g9ychlik5nj2g8hqrg06cn9sn41j-autoreconf.sh\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "csclub.uwaterloo.ca/nongnu/ http://mirror.cedia.org.ec/nongnu/ http://ftp.igh.cnrs.fr/pub/nongnu/ http://mirror6.layerjet.com/nongnu http://mirror.netcologne.de/savannah/ http://ftp.cc.uoc.gr/mirrors/nongnu.org/ http://nongnu.uib.no/ http://mirrors.fe.up.p", 0x8000) = 2896 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/42jprac7f62mb7lpl48a6y0qvadihwlb-mirrors-list.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l8mdh3fnpr6jgnay5ba7rwasjxh0yjh7-m4-1.4.18.tar.bz2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2408 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/zbq8yxpw8nhqwvj9z3rpzadjz2s3fxz5-gnum4-1.4.18.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xckg35fb0idrwq91kh9zix2k0bcbqqgn-perl-5.24.3.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5008 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gxw0c3x778ynxi3kvzxnqgmk1i75vc3c-perl-5.24.3.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2n32wsx56dj5zzchin464syp1qmp9rga-autoconf-2.69.tar.xz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2432 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8frzhd9zh65x3g1d8spks681gfzv1f7s-autoconf-2.69.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gzx1pvivgfvphzr2y7dkr02w22chz4bl-automake-1.15.1.tar.xz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2624 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5bi6gc12bdscwzhbyhv5r405l09ff8x7-automake-1.15.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2y696pk2dlwxjd9p73bw65ncdlmjsjf0-gettext-0.19.8.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3784 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/c6156ljizcfcan9jk7hbfscppdf626dv-gettext-0.19.8.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x3C3000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/sgl4vy878s3d7981ymlyqybgx6wmpndm-gettext-1.05.tar.gz.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2696 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/r3fxnfy3a2as5f52gxigm0ch0jirih9v-perl-LocaleGettext-1.05.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1896 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1dxn13w52gah7miqh2x4vb2b3yfq4sld-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2160 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/2asrxn4sqzaz7wbw0phjdlqaz0j82drk-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8s8vmyyd16hp068778q4hjp6n4l25387-help2man-1.47.4.tar.xz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3000 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/k51ypydjbz8zi05mriiz97i412ad5zyi-help2man-1.47.4.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/b972lhdr747yc3pv0w8fafhc0n9bhwzj-libtool-2.4.6.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2736 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p138gpsy1z5vpbvnyjwbincnjkw0as8g-libtool-2.4.6.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2800 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5abqx1h64xn9n345g6njs89f1fjfck7f-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ky7jv01cbv9i39nd8z918nzw0vqy5z5b-tar-1.29.tar.xz.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1208 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qhj9305b2qgvkqzx4n697nanj5cr9fjf-CVE-2016-6321.patch\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2624 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nar0ylvpwsx4kfy2jizypw441ip11wxd-gnutar-1.29.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ss41pkvl9ayqs45fb4rvvs8hvd2pad4d-gzip-1.8.tar.xz.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2680 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gz61i3hqasrnvz31rbhawvbvk3faxp3y-gzip-1.8.drv\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/dicvswpsy3ksk68f2kkbvqd9ws1n4h3b-sed-4.4.tar.xz.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x4D000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2304 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/51nlirm8r0j526kzavmanjiimwivg09m-gnused-4.4.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3vq9a03rfpf20gpr630li5rjkxgaqkq3-gawk-4.1.4.tar.xz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2608 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kas7rncp7562vvp4i19xmxvssl93ghr6-gawk-4.1.4.drv\0", 0x3B) = 59 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8m48qanwcfqhrp36nzhprz0wyhk2riyn-pcre-8.41.tar.bz2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2600 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/f2dh61ix9ygm6kfh8fs7kyybdh2k2kmp-pcre-8.41.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3048 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fhg1m6apsazig390l6a6qfkf05p3l5j3-grep-3.1.tar.xz.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3024 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/vcaaylfls4v3a2a49rq8i80rl5j9llyx-gnugrep-3.1.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3112 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/p1nqfl8ckcd7ikrqq2142xfa9zx9f708-libedit-20160903-3.1.tar.gz.drv\0", 0x4C) = 76 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 1088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/g3b8qdwdcgqvi5j6xh096ivrnln30f3h-01-cygwin.patch\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2968 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/nfd27v1yky82niwgj39x0cs0zrcbcs2x-libedit-20160903-3.1.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 1952 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/7j7zip2yjgmf3mhz0qyfh5rngag26rwz-hook.drv\0", 0x35) = 53 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\0", 0x1000, 0x6A000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/1n9rf5q535vywiysx4g38v0svij2cd5a-cfe-4.0.1.src.tar.xz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3152 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/d67hnr73rg86pd1vx743289pkpym70jl-clang-tools-extra-4.0.1.src.tar.xz.drv\0", 0x53) = 83 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x68) = 104 0
1404/0x50a4: read(0x4, "\a\0", 0x8000) = 744 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3v8bbqa9l59q4z9nldgwzjcz3hrzbxif-purity.patch\0", 0x39) = 57 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339350) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339998) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339988, 0x7FFF5B339998) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339D68) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/w41kqlscc0qk0kzgc24cax1wa9gf242k-clang-4.0.1.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xmiffz1glkjcxmvwdn3fwhcfz2kjg4lp-patch-2.7.5.tar.xz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wcha12rqbbk5kd69m0kyazfdi481jg9d-patch-2.7.5.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3072 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/s9wpj7am5gnijvv3lvjmkd41bf8nlnvd-bison-3.0.4.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2576 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bfr3dw44p0z1f5dn7nbqmjkylqdafhl3-bison-3.0.4.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/h7732h1ny90nkvhani2my41r4j7jxga1-binutils-2.28.1.tar.bz2.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4360 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/x7pw8m2jhai3265sxqh9d97xgrzrpw8x-binutils-2.28.1.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gwyx5rv7lpmk96693cdzlyf46iqqqzdb-objc4-680.tar.gz.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/x7fcv7wnjzg2s54p9rdkmbibg1y71mz0-objc4-osx-10.11.6.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3056 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xy5vnkir88c5ashh79jydh2l6s78ghdg-unzip60.tar.gz.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4536 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ni5l8mx9w9h2rm5x3wsfb9748aiwgbgc-unzip-6.0.drv\0", 0x3A) = 58 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3904 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/l2b06h8bpy1wz8sih06kg718y9zk7q0z-source.drv\0", 0x37) = 55 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x48) = 72 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ialdljjml33y3bgajax7l8jpv4szwiw0-cctools-port-895.drv\0", 0x41) = 65 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3528 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/v6v1829fxllma48hzjg6l2y8jcfnmh9i-cctools-binutils-darwin.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2168 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/rivxi07j6ljp7dv1c109aq40820nn8i5-expand-response-params.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wpyfddr2pp4wpdbsdjndi06nncq3d62i-ICU-531.48.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2632 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kq281568h5ypb79c62maqwi4rk5bv4as-ICU-osx-10.10.5.drv\0", 0x40) = 64 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x50000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3136 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/ckr9hx3mqm1i7w89rsdffjrvhxm9nhv0-libdispatch-442.1.4.tar.gz.drv\0", 0x4B) = 75 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x60) = 96 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2344 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/grixx60l70l5avqqm6y38ff2zw5c0yad-libdispatch-osx-10.10.5.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/8an24yy8h0zm2sn20w98dic2ixnj8m0j-libplatform-125.tar.gz.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/kcvi23rch1iw2pfy7xnrkf8ghcnqrgri-libplatform-osx-10.11.6.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3120 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/01dr2rp5z9fl5ywryvdzv41p5ag3isqk-launchd-842.92.1.tar.gz.drv\0", 0x48) = 72 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2224 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xk0fcixhw0h0pyhpysllbdfnf1ilpn9q-launchd-osx-10.9.5.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3104 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gs4cdxyjj6fhgk44i7jy8xvp8ypkzlgf-libclosure-65.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2088 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/y6sk7ai01n0nyzs7n16d3rjaak02c6vm-libclosure-osx-10.11.6.drv\0", 0x47) = 71 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fj794gzlay5g76c2bpnikni048kf7n59-CF-1153.18.tar.gz.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 5640 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/50h3nm2adbkzv038qkl8w8dvzvwnr2nz-CF-osx-10.10.5.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "store/0njz1pw3c3had0fjl0lwiz69wgnc7dnm-patch-2.7.5 /nix/store/pyd4whd4v0s5gnbcc09mdi6d17822xyp-xz-5.2.3-bin\"),(\"name\",\"stdenv-darwin\"),(\"out\",\"/nix/store/7ixg4yx8q7y4fq27am95hb1z8g0wwgc1-stdenv-darwin\"),(\"preHook\",\"export NIX_ENFORCE_PURITY=\\\"${NIX_ENFORCE", 0x8000) = 4416 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/5ipgmdb8h9xlfrfjd46m6jqvkcr3lgm8-stdenv-darwin.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x61000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "e compiler tool search\\n# path explicitly.\\nif [ -e \\\"/nix/store/b4dhfycqjkbi3vw2friagn3qjxz4bh10-clang-4.0.1/lib64\\\" -a ! -L \\\"/nix/store/b4dhfycqjkbi3vw2friagn3qjxz4bh10-clang-4.0.1/lib64\\\" ]; then\\n ccLDFlags+=\\\" -L/nix/store/b4dhfycqjkbi3vw2friagn3qjx", 0x8000) = 3520 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/g58ndj6bb493a6vjw36gn0vw9k9ld34p-clang-wrapper-4.0.1.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "af1afm3j5iw3-gzip-1.8 /nix/store/5160d88kblq076j9q17g3prx0xifin99-bzip2-1.0.6.0.1-bin /nix/store/izlk6krpnww6m8nraxs539iwg0zhlshq-gnumake-4.2.1 /nix/store/axikcsz4wh2qpi5zmlfsmm4jx8wm8s1g-bash-4.4-p12 /nix/store/0njz1pw3c3had0fjl0lwiz69wgnc7dnm-patch-2.7.5", 0x8000) = 4704 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/wgzzapyfvi2g393az8l7m1h1xir5r6s0-stdenv-darwin.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3064 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/xckg35fb0idrwq91kh9zix2k0bcbqqgn-perl-5.24.3.tar.gz.drv\0", 0x43) = 67 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4976 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3hmcc5npzz9iiyvxrj41nwfj8vs22bi9-perl-5.24.3.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3096 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/qz07la17aaabx8pqmf98h4iy1asqbd65-openssl-1.0.2m.tar.gz.drv\0", 0x46) = 70 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3856 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/3vhcp3dxc2b3gym5pnb5vcns1wykw2dh-openssl-1.0.2m.drv\0", 0x3F) = 63 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/fng61y2927hf6v0y125h90ghhhgrqdsg-libssh2-1.8.0.tar.gz.drv\0", 0x45) = 69 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2632 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/6c55hj435rjfcb9rixdx9ab65iiz8par-libssh2-1.8.0.drv\0", 0x3E) = 62 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3176 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/pps1qbbyhimcair2a2krscbsjlzqxh1p-pkg-config-0.29.2.tar.gz.drv\0", 0x49) = 73 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2648 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/lpyhl9sbgmx59x68wawwmsdyvaldyj0a-pkg-config-0.29.2.drv\0", 0x42) = 66 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3080 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/cx9q2w8sifvixn0jf8mvjm5cqgxapq8r-curl-7.56.1.tar.bz2.drv\0", 0x44) = 68 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\n\001\033\0", 0x1000, 0x284000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x58) = 88 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 4200 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/v565gyvi7p761md9nq6a4jmiv2w2agy8-curl-7.56.1.drv\0", 0x3C) = 60 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 8192 0
1404/0x50a4: read(0x4, "ongnu/ http://savannah.c3sl.ufpr.br/ http://mirror.csclub.uwaterloo.ca/nongnu/ http://mirror.cedia.org.ec/nongnu/ http://ftp.igh.cnrs.fr/pub/nongnu/ http://mirror6.layerjet.com/nongnu http://mirror.netcologne.de/savannah/ http://ftp.cc.uoc.gr/mirrors/nongn", 0x8000) = 2936 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/bqgmfi8cnpxmli2lga499z89hmjca6s3-mirrors-list.drv\0", 0x3D) = 61 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x50) = 80 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 3416 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/gccphqjh07iikm74nfvgdycn1m0aqcvr-virtualbox-nixops-16.09.877.5b08a40.vmdk.xz.drv\0", 0x5C) = 92 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: pread(0x5, "\r\0", 0x1000, 0x3DB000) = 4096 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x70) = 112 0
1404/0x50a4: read(0x4, "\b\0", 0x8000) = 2152 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: write(0x9, "/nix/store/d1a29szzfmwaj3471ir2fp2fisn0frnf-virtualbox-nixops-16.09.877.5b08a40.vmdk.drv\0", 0x59) = 89 0
1404/0x50a4: fcntl(0x9, 0x9, 0x7FFF5B339460) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B339A98, 0x7FFF5B339AA8) = 0 0
1404/0x50a4: fcntl(0x7, 0x8, 0x7FFF5B339E78) = 0 0
1404/0x50a4: write(0x4, "stla\0", 0x68) = 104 0
1404/0x50a4: read(0x4, "\0", 0x8000) = 0 0
1404/0x50a4: __pthread_markcancel(0x903, 0x7F8B8D80FA00, 0x8000) = 0 0
1404/0x50a5: poll(0x700001230EC8, 0x1, 0xFFFFFFFF) = -1 Err#4
1404/0x50a5: __pthread_canceled(0x0, 0x1, 0xFFFFFFFF) = 0 0
1404/0x50a5: __disable_threadsignal(0x1, 0x1, 0xFFFFFFFF) = 0 0
1404/0x50a4: __semwait_signal(0xF03, 0x0, 0x0) = 0 0
1404/0x50a4: close(0x9) = 0 0
1404/0x50a4: unlink("/nix/var/nix/temproots/1404\0", 0x0, 0x0) = 0 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B33A400) = 0 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B33A400) = 0 0
1404/0x50a4: unlink("/nix/var/nix/db/db.sqlite-shm\0", 0x8, 0x7FFF5B33A400) = 0 0
1404/0x50a4: munmap(0x10507D000, 0x8000) = 0 0
1404/0x50a4: close(0x7) = 0 0
1404/0x50a4: close(0x6) = 0 0
1404/0x50a4: unlink("/nix/var/nix/db/db.sqlite-wal\0", 0x8000, 0x7FFF5B33A400) = 0 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B33A430) = 0 0
1404/0x50a4: fcntl(0x5, 0x8, 0x7FFF5B33A430) = 0 0
1404/0x50a4: fstat64(0x5, 0x7FFF5B33A2F0, 0x7FFF5B33A430) = 0 0
1404/0x50a4: stat64("/nix/var/nix/db/db.sqlite\0", 0x7FFF5B33A380, 0x7FFF5B33A430) = 0 0
1404/0x50a4: close(0x5) = 0 0
1404/0x50a4: close(0x3) = 0 0
79/0x22e: accept(0x3, 0x7FFF5B33AB20, 0x7FFF5B33B714) = -1 Err#4
79/0x22e: wait4(0xFFFFFFFF, 0x0, 0x1) = 1404 0
79/0x22e: wait4(0xFFFFFFFF, 0x0, 0x1) = -1 Err#10
79/0x22e: sigreturn(0x7FFF5B33AA60, 0x1E, 0x1) = 0 Err#-2
nix-vbox-build-slave x86_64-linux "/var/root/.ssh/id_rsa" 1
$ source start-docker-nix-build-slave
## Use Docker Container as Nix Build Slave
##
## Usage: source -bash
##
## Note: if you experience issues, you can clean up the build slave artifacts and start over by:
## 1. rm -r ~/.nix-docker-build-slave
## 2. Delete entry in ~/.ssh/config for
## Host "nix-docker-build-slave"
## 3. Delete the docker container named
## nix-docker-build-slave
>>> Downloading SSH credentials for the docker container
>>> Adding an entry to /Users/betaboon/.ssh/config for nix-docker-build-slave
>>> Starting docker container: nix-docker-build-slave
(This may fail if the container was already created.)
Unable to find image 'lnl7/nix:ssh' locally
ssh: Pulling from lnl7/nix
d8b6382e6689: Pull complete
68210515caf7: Pull complete
2a62008feb31: Pull complete
7d51914ffd31: Pull complete
2bf7635f26da: Pull complete
a359b97e6d07: Pull complete
d0a1c1c68c0f: Pull complete
Digest: sha256:0b4b24c204a2bf7564b9916fbddffd059c919eb8934d6a60c6d0c7444e185ccc
Status: Downloaded newer image for lnl7/nix:ssh
9753de6932423d32d4faae818a978ddb15094701fdc8cdb5e4439a426fce3276
>>> Writing remote systems configuration to /Users/betaboon/.nix-docker-build-slave/remote-systems.conf
>>> Running SSH test
The authenticity of host '[127.0.0.1]:3022 ([127.0.0.1]:3022)' can't be established.
RSA key fingerprint is SHA256:ZeEJ3dH1w0PiCcuohuI3324h/bd64wZvXs9O88C1qsE.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[127.0.0.1]:3022' (RSA) to the list of known hosts.
SSH connection is working.
>>> Setting $NIX_REMOTE_SYSTEMS to use /Users/betaboon/.nix-docker-build-slave/remote-systems.conf
$ echo $NIX_REMOTE_SYSTEMS
/Users/betaboon/.nix-docker-build-slave/remote-systems.conf
$ cat remote-systems.conf
nix-docker-build-slave x86_64-linux "/Users/betaboon/.nix-docker-build-slave/insecure_rsa" 1
$ nix-shell -p nixops
[nix-shell:~]$ nixops create deployment.nix
created deployment ‘d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f’
d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f
[nix-shell:~]$ nixops deploy
vbox> creating VirtualBox VM...
vbox> Virtual machine 'nixops-d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f-vbox' is created and registered.
vbox> UUID: a55340ba-cadd-4aa9-a509-718b5495cba6
vbox> Settings file: '/Users/betaboon/VirtualBox VMs/nixops-d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f-vbox/nixops-d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f-vbox.vbox'
error: string index out of range
[nix-shell:~]$ nixops deploy
vbox> creating disk ‘disk1’...
vbox> 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
vbox> Clone medium created in format 'VDI'. UUID: ffb863bf-7acd-4664-9d89-fc4d864b3d3e
vbox> attaching disk ‘disk1’...
vbox> Waiting for VM "nixops-d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f-vbox" to power on...
vbox> VM "nixops-d5a1619c-c71b-11e7-8c1c-f45c89c6ee3f-vbox" has been successfully started.
vbox> waiting for IP address.......................... 192.168.56.101
vbox> setting state version to 16.09
vbox> waiting for SSH...
test> building initial configuration...
error: assertion failed at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:33:1
(use ‘--show-trace’ to show detailed location information)
error: Command '['nix-build', '<nixpkgs/nixos>', '-A', 'system', '-I', 'nixos-config=/var/folders/0q/hbnfh3zx2fd_jwt8627m3jq00000gn/T/nixops-tmpxSA2Sj/test-initial.nix', '-I', 'nixops=/nix/store/yl83xnrqd6bmgqbi1wapnpr37kiwpsmv-nixops-1.5.2/share/nix/nixops']' returned non-zero exit status 1
[nix-shell:~]$ nixops deploy --show-trace
test> building initial configuration...
error: while evaluating the attribute ‘config.system.build.toplevel’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:252:5:
while evaluating ‘foldr’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:34:20, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:132:12:
while evaluating ‘fold'’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:37:15, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:41:8:
while evaluating ‘showWarnings’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:98:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:105:16:
while evaluating ‘foldr’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:34:20, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:98:23:
while evaluating ‘fold'’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:37:15, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:41:8:
while evaluating the attribute ‘warnings’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:44:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:75:45, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:52:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:312:9:
while evaluating the option `warnings':
while evaluating the attribute ‘isDefined’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:344:5:
while evaluating ‘filterOverrides’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:419:21, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:328:18:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:425:8:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:17:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:28, called from undefined position:
while evaluating ‘dischargeProperties’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:386:25, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:324:62:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:216:48:
while evaluating the attribute ‘config.warnings’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/boot/systemd.nix:710:5:
while evaluating ‘mapAttrsToList’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:223:23, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/boot/systemd.nix:710:29:
while evaluating the attribute ‘services’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:44:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:75:45, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:52:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:312:9:
while evaluating the option `systemd.services':
while evaluating the attribute ‘isDefined’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:344:5:
while evaluating ‘filterOverrides’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:419:21, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:328:18:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:425:8:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:17:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:28, called from undefined position:
while evaluating ‘dischargeProperties’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:386:25, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:324:62:
while evaluating the attribute ‘condition’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:467:14:
while evaluating the attribute ‘condition’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:467:14:
while evaluating the attribute ‘condition’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:467:14:
while evaluating the attribute ‘services.klogd.enable’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:44:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:75:45, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:52:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:312:9:
while evaluating the option `services.klogd.enable':
while evaluating the attribute ‘isDefined’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:344:5:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:333:19, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:333:14:
while evaluating the attribute ‘value._type’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:424:73:
while evaluating the attribute ‘value.content’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:482:14:
while evaluating the attribute ‘default’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/services/logging/klogd.nix:12:7:
while evaluating ‘versionOlder’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/strings.nix:351:22, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/services/logging/klogd.nix:12:17:
while evaluating ‘getVersion’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/strings.nix:375:16, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/services/logging/klogd.nix:12:31:
while evaluating the attribute ‘boot.kernelPackages.kernel’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/boot/kernel.nix:27:9:
while evaluating the attribute ‘kernel.override’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/top-level/all-packages.nix:12525:12:
while evaluating the attribute ‘linux_4_9’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/top-level/all-packages.nix:12445:3:
while evaluating ‘callPackageWith’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:113:35, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/top-level/all-packages.nix:12445:15:
while evaluating ‘makeOverridable’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:72:24, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:117:8:
while evaluating anonymous function at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix:1:1, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:74:12:
while evaluating anonymous function at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:1:1, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix:3:1:
assertion failed at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:33:1
error: Command '['nix-build', '<nixpkgs/nixos>', '-A', 'system', '-I', 'nixos-config=/var/folders/0q/hbnfh3zx2fd_jwt8627m3jq00000gn/T/nixops-tmpA0JDin/test-initial.nix', '--show-trace', '-I', 'nixops=/nix/store/yl83xnrqd6bmgqbi1wapnpr37kiwpsmv-nixops-1.5.2/share/nix/nixops']' returned non-zero exit status 1
$ nix-info
system: "x86_64-darwin", multi-user?: yes, version: nix-env (Nix) 1.11.15, channels(root): "nixpkgs-18.03pre119383.eafd703a63", nixpkgs: /nix/var/nix/profiles/per-user/root/channels/nixpkgs
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTD
s/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.nixos.nix-daemon</string>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>/nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/bin/nix-da
emon</string>
<key>StandardErrorPath</key>
<string>/var/log/nix-daemon.log</string>
<key>StandardOutPath</key>
<string>/var/log/nix-daemon.log</string>
<key>EnvironmentVariables</key>
<dict>
<key>NIX_BUILD_HOOK</key>
<string>/nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/libexec/
nix/build-remote.pl</string>
<key>NIX_CONF_DIR</key>
<string>/etc/nix</string>
<key>NIX_CURRENT_LOAD</key>
<string>/run/nix/current-load</string>
<key>NIX_OTHER_STORES</key>
<string>/run/nix/remote-stores/*/nix</string>
<key>NIX_REMOTE_SYSTEMS</key>
<string>/etc/nix/machines</string>
<key>NIX_SSL_CERT_FILE</key>
<string>/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt</strin
g>
</dict>
</dict>
</plist>
Host nix-vbox-build-slave
HostName 192.168.56.101
$ source nix-vbox-build-slave/setup
Network name: build-slave-vbox
Network UUID: c53da6e6-c71e-11e7-b961-f45c89c6ee3f
Network description: Unnamed NixOps network
Nix expressions: /Users/betaboon/nix-vbox-build-slave/physical-vbox.nix
+-------------+----------------------+------------+---------------------------------------------------------+------------+
| Name | Status | Type | Resource Id | IP address |
+-------------+----------------------+------------+---------------------------------------------------------+------------+
| build-slave | Stopped / Up-to-date | virtualbox | nixops-c53da6e6-c71e-11e7-b961-f45c89c6ee3f-build-slave | |
+-------------+----------------------+------------+---------------------------------------------------------+------------+
Deployment already created.
****** Deploying build slave.
build-slave> creating disk ‘disk1’...
build-slave> 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
build-slave> Clone medium created in format 'VDI'. UUID: 9edecea8-a565-477f-854d-648de6f25739
build-slave> attaching disk ‘disk1’...
build-slave> Waiting for VM "nixops-c53da6e6-c71e-11e7-b961-f45c89c6ee3f-build-slave" to power on...
build-slave> VM "nixops-c53da6e6-c71e-11e7-b961-f45c89c6ee3f-build-slave" has been successfully started.
build-slave> waiting for IP address........................... 192.168.56.102
build-slave> setting state version to 16.09
build-slave> waiting for SSH...
building all machine configurations...
these derivations will be built:
/nix/store/0699qxmlv0rg0bja5yq56a70dghzk83i-etc-nixos.conf.drv
/nix/store/ggm6lysaa766jay18g2mkk039g8j3lfb-pam-environment.drv
/nix/store/0agkv026qx32b88x8yha9i7z6pv5cswm-vlock.pam.drv
/nix/store/0b74ayz53bn7rgnnmigp0djdzrb7phbx-groupmems.pam.drv
/nix/store/0kspvf58dfndv61afh1627yai7h74dkl-xlock.pam.drv
/nix/store/0q2mlj32iwkf2f9h2w52nz40cdqn2my5-unit-nix-daemon.socket.drv
/nix/store/10sbdsblkkg47hqk6x55xm9jakrwrxfb-unit-remote-fs-pre.target.drv
/nix/store/18hzgchimaj7hpsbn51z5j6gp5z2jmq8-unit-systemd-journal-gatewayd.socket.drv
/nix/store/1bnfhyg41558i9hshs5r6hqmgyg7yynf-unit-mdadm-grow-continue-.service.drv
/nix/store/1fakkjvfa8avcbfn1vndmn8abv3gkk84-unit-dbus.socket.drv
/nix/store/1p0b94cd3gx48qqn76n7gk9xpks1rnqg-unit-nix-daemon.service.drv
/nix/store/ly2r7bcqdlbbhh75k6s5sm12377mqfja-set-environment.drv
/nix/store/1phiwgdy34cqyh4yl3wcwl5basjcwlq6-etc-profile.drv
/nix/store/1w5l771bk3cflp2wicgnjfy3xd0ydl0n-unit-script.drv
/nix/store/1ywj4mwrbljrrhdpjqh2ddwq3mvqahq4-etc-sleep.conf.drv
/nix/store/1zyjwdk7wl2sy0pk3g9apxa9jdzc2ixm-dhcpcd.conf.drv
/nix/store/22wbzv2p27h4dlia0p0ggbylqg2x3fx4-unit-fs.target.drv
/nix/store/6m5cm8vdvnysmjxcg4yb39qiagfys89q-initrd-fsinfo.drv
/nix/store/hgpxycdxvv0m0bks4qs9177a0fqsksqx-kernel-modules.drv
/nix/store/ijq418l5bcff1jd1mwisxy5p8jkrkwg8-kernel-modules-shrunk.drv
/nix/store/q4fpdaghnjbkzv2h95iai1rwc7448hzq-mounts.sh.drv
/nix/store/26nhpdl96z8mjhzxs4fqph6la11vbvah-stage-1-init.sh.drv
/nix/store/6sl6xgyfgx721d0953grp0030w236lxb-nixos-help.drv
/nix/store/qlf8vh0nr707ngllzivlyql41qwwcyk1-system-path.drv
/nix/store/26x9vcdbvpn6phi4i1ki73a5fqbzvgi1-unit-polkit.service.drv
/nix/store/x1vvw8fj726gvs8fpavjvssr96likp69-nixos.conf.drv
/nix/store/2g0icqsyk062y40m45w5kyrx2aqr2vwc-unit-systemd-modules-load.service.drv
/nix/store/2npkm2xpsaxnjxmahi27nvpp2gszslda-chfn.pam.drv
/nix/store/806m67034ql8dxr85h2dahw39dfnvhaw-unit-script.drv
/nix/store/iqsgm8rn8v5qpyl8apq1drvzp0p3f5k6-reload-container.drv
/nix/store/j8yz2zibrgdkzsgbd8haqrilyf8afbfn-unit-script.drv
/nix/store/pzjg41pwvqqf40l5f6s9d6n5kwfgx631-unit-script.drv
/nix/store/fz0i9lm6lghc037fajhdgihqcn13d8y6-container-init.drv
/nix/store/xscb506n142d1hz78c27n3fcfr3fkyz2-unit-script.drv
/nix/store/2yrwav2znjx64ixkjx6y51h4hz22zgcq-unit-container-.service.drv
/nix/store/30nzsn7rhas4lgy7xcns81cpg2nxjcax-firewall-start.drv
/nix/store/33y0z9amhb4r0hzk232399gijwaamlzz-vconsole.conf.drv
/nix/store/3cx8q4297mppjsk1q9xr4m8xk1zlg3xd-etc-ssh_known_hosts.drv
/nix/store/3kn8pgjnymz0lvb0kxy52r6q2h2r9z25-unit-encrypted-links.target.drv
/nix/store/3kxwrh0fyglcj0hfs1vzdi42x58mi0vl-etc-system.conf.drv
/nix/store/41frpxq22i320xdkbxj60962djwq5lk1-nscd.conf.drv
/nix/store/450c4jsdy4pz580w0p7fg72si0ah713j-etc-bashrc.drv
/nix/store/4gcjgh2xqy6jwkpm07i4fyin3nyln7a3-unit-ip-up.target.drv
/nix/store/4h350dmwamgbjvjki738qnk1fw0a847z-unit-systemd-remount-fs.service.drv
/nix/store/4m3ig6dbkivrvfkr4zk3a23lh479vs3z-usermod.pam.drv
/nix/store/rif1fa95c6k9mhvb5si92bqh7bvlj83s-unit-script.drv
/nix/store/4mbpb5g4sjj4knwnn0l8famxv016wx4r-unit-prepare-kexec.service.drv
/nix/store/6afyhl87bfhi6fdyz0n1b4vyvw016f56-dbus-conf.drv
/nix/store/4miqg3nc9jq399jry8myy8m3vandv4cp-unit-dbus.service.drv
/nix/store/5009y9gdczpj0fz78yk3gfvlq04maihm-unit-user-.service.drv
/nix/store/5ls5x0ilr71v580gpcqindzx32k76clr-unit-systemd-user-sessions.service.drv
/nix/store/686ingsb9qggqh3j56mqrk5pqqnf9bzz-screen.pam.drv
/nix/store/6ccp6h9kqagma79vgprhlxqjc5d2yrxi-extra-udev-rules.drv
/nix/store/7bj023wh1hsjw8jkywgqrdyd2xdfas6b-etc-resolvconf.conf.drv
/nix/store/7k0cjlwydgvfqv0qy7qpzlwl3h47lkry-sshd_config.drv
/nix/store/7mrxiiysx6hqpkh31rxy3zj6bs9w85np-unit-script.drv
/nix/store/7mf04m6kd3j962dlwmbmzhxy33ya56av-unit-update-locatedb.service.drv
/nix/store/7vrkam94knjamh1icsw21nrfsjfailpx-unit-systemd-vconsole-setup.service.drv
/nix/store/83mc23zykg6cqmczbgz57lzk4hxnh47s-smb-dummy.conf.drv
/nix/store/8cf541068j3vbliv297l89m89jbn6d96-client.conf.drv
/nix/store/8n4yzi3kd969rishpvh7x4dismm3xfdm-etc-fstab.drv
/nix/store/901izjc7fxx8riz8b82g3n0zvl6f12y9-chpasswd.pam.drv
/nix/store/9jcgb77zqiia0d53br22y42nr96zq8b9-useradd.drv
/nix/store/b6aiqqjhknvlwz3nv479kq37nri0xmrs-dhcpcd.exit-hook.drv
/nix/store/brj1p9kfm4jx7zv3c9kaw8jg2974j216-etc-logind.conf.drv
/nix/store/c13y61137jg0ds3ip235ilizqnw925nv-su.pam.drv
/nix/store/cdf9p8xrayqa2rryfrl91mn8w5nkkhhw-polkit-1.pam.drv
/nix/store/ch1p68bvg7144as8kxndarxi4k7kxk9k-issue.drv
/nix/store/db5935xhjjqrkhz1zqs3ixzyhgbv05ws-chsh.pam.drv
/nix/store/ds7h2njdiklnsr7r847frindia0wnhmb-cups.pam.drv
/nix/store/f3lafahd7mv4gf75jckcr60xgp28mzqf-locale.conf.drv
/nix/store/f3x4m1zgll2sgrvisyl2x2hbk21a4vhq-passwd.pam.drv
/nix/store/fch7bzvpwpzd051kmwbmjmd8h97zmj3f-etc-shells.drv
/nix/store/gmjkns8c3gv5d8s1sz0mzgv8zidi9ga8-etc-nixos.conf.drv
/nix/store/hqfzd7lr4fwg7qciqjzdiknxvinbaf0g-sshd.pam.drv
/nix/store/ys84zlv9slkx3aca9s8a6js1v7bgsydc-unit-ssh-agent.service.drv
/nix/store/hrdghy9jgznjlarkl447719if2j0d0z3-user-units.drv
/nix/store/hwparfxkgwxw99h9hjkl89l9yi68896p-groupdel.pam.drv
/nix/store/ivmxkpnbnyi2jhfdz46v38aw2w4g4hj2-etc-ssh_config.drv
/nix/store/crxcdw3f262r0rvx28zghw23gdv4d4vc-extra-hwdb-file.drv
/nix/store/k52i85dv8ih2dm3bgwc76pi4qpzwml42-udev-rules.drv
/nix/store/kw4a0x5gm1vw8w7y3pb8l8ak0fgnj56f-runuser.pam.drv
/nix/store/lcy0sdanr73s2sphygv32a7f1f8vjjzc-etc-10-nixos.rules.drv
/nix/store/lsd9x7jbbsw79rl7qhwyayiz24pcj3l1-login.pam.drv
/nix/store/mbakcpfdacggx9ajl5yhsg83qa4ql0fq-groupmod.pam.drv
/nix/store/phqx290v16j6dabjqhxivzvzn0nwvl4p-systemd-user.pam.drv
/nix/store/b9nsy73vigzpprks61hamas0nfffkv4a-audit-disable.drv
/nix/store/mxp01hgb6zg5ja1dmhjjf2xn83xl8x6d-audit-stop.drv
/nix/store/9ki6z5rxfhrvl7cfmqk1i29gzdl0bibn-unit-audit.service.drv
/nix/store/a0v96f1x7lvw2f6d6nljmyj7whh27zkg-unit-network-setup.service.drv
/nix/store/a733ycrg7iic2nv6s3gafby7y8zjlg6x-unit-cpufreq.service.drv
/nix/store/bgxz6pqbcl4gl6gsd3ly82wm2acfk1fr-ntp.conf.drv
/nix/store/schdi3fwkv01z873n5jvnsi67slpn1hf-unit-script.drv
/nix/store/cb5sdfkya685fh6jnrc548d291g2mn76-unit-ntpd.service.drv
/nix/store/chlgc4cb5v8pm3qz8zrhvgmv794j9x3j-unit-systemd-binfmt.service.drv
/nix/store/d49vh4k8akdiny4h8i4kp62l583wlsbh-unit-serial-getty-.service.drv
/nix/store/djcirig494d6ar93wl3lmn23gkrhrpdv-unit-systemd-rfkill-.service.drv
/nix/store/dk3pffa1dwdpkr9yaj8ddpb2vrhir02q-unit-systemd-backlight-.service.drv
/nix/store/dn7jsbaqpa5gnmpn43i409gqlh31dj10-unit-systemd-sysctl.service.drv
/nix/store/fm1dfwz0l7iqn3qp0vfbww3a2vwk9xjv-unit-remote-fs.target.drv
/nix/store/qaz03lfbdmh88nyj1zpvy3q0j2cii8wp-unit-script.drv
/nix/store/fp97b1inbki5av05cvy157373i6yjvh6-unit-sshd.service.drv
/nix/store/gxc3hrx2hhd9pk9mcn8v5ywzi50acbj3-unit-network-pre.target.drv
/nix/store/gziw9w59m61qq1qy236r4vasmxjsf53i-unit-systemd-logind.service.drv
/nix/store/h8jwm4756ab09vlp0939cr2h5zz03iy3-unit-console-getty.service-disabled.drv
/nix/store/hjj1cm4f8b3diivy4h742vzvml0lywp3-unit-mdadm-shutdown.service.drv
/nix/store/ik61psfpd15k2x7zl2nk18hbl4kik1m3-unit-systemd-update-utmp.service.drv
/nix/store/ikx5mr2z5qvr8k5a0xhrz5car85qmqaj-unit-network-online.target.drv
/nix/store/p99ryz83y9gf5aw30npgg3a8d36bjq8s-unit-script.drv
/nix/store/iv0qbpp334al3w0c7k1fwj5lkmm8402w-unit-get-vbox-nixops-client-key.service.drv
/nix/store/hnrgwy4a396hd61mqfy13lqkc4fpy6hs-unit-script.drv
/nix/store/jcn6ysn60h67478jqf165rnkmqnv65i3-unit-nixos-upgrade.service.drv
/nix/store/jmwq9rav4zxpqc8z4fxfrxzg4qz28svx-unit-dhcpcd.service.drv
/nix/store/k3kzzr0lszks46mijjw573qj74zpkrq7-unit-virtualbox.service.drv
/nix/store/kn3l2anzv2phl6492hma33wrzc76yrva-unit-alsa-store.service.drv
/nix/store/l0zza3ivcc9kmcikcvrlhg0c2ndmq3cn-unit-udisks2.service.drv
/nix/store/lq2cyc2zxjsf48znyi5yk1dm4xw8b68f-unit-nixops-keys.service-disabled.drv
/nix/store/lvnxz124kyyikcjd1n8xvl54g8rgbzqz-unit-script.drv
/nix/store/n473ms87g86rypw9hi3fqd5r4ny13i6i-unit-pre-sleep.service.drv
/nix/store/fqkhv2lyannh5a81y608l78jwshnz8xf-unit-script.drv
/nix/store/g98cdvmiycin6p98xz90m36fmjyb0fni-unit-script.drv
/nix/store/w0jv1vrsxl1lrzf93xfni8cw30k196iy-etc-hosts.drv
/nix/store/wlh0hl9nniy9q5shxkrqjvmd065qbkl6-etc-nsswitch.conf.drv
/nix/store/p01hqc2k5722vhjdyxwjxyljjs0i44p3-unit-nscd.service.drv
/nix/store/p61dhqrjmy40f0y8dgkdvvc74gim3w1z-unit-mdmon-.service.drv
/nix/store/njqw31y67hxb1p4np57q21f08nwz4b61-firewall-stop.drv
/nix/store/rxh25nchpg1izawbl1ib0dmad68gsbsi-firewall-reload.drv
/nix/store/pnvia0b7iil4v4vhws2b5xf29vnybp8l-unit-firewall.service.drv
/nix/store/r96ak8q65w7mp5gqabq1qryv8mfz5nij-unit-save-hwclock.service.drv
/nix/store/xrwpjncz57y77l5qzicmixvgkyjakyqf-unit-script.drv
/nix/store/rga4as9iqw295wd3h8q4idwnbvn253k0-unit-post-resume.service.drv
/nix/store/ypxqqgndz66gnm0lybvirv6n2w2qzqfa-unit-script.drv
/nix/store/rh6wl24m145w3v6xj0qfj87vy82fqwh9-unit-network-local-commands.service.drv
/nix/store/rmg3p5mg9nwlbb18sdxhkq3zk5kg7qhm-unit-systemd-journal-flush.service.drv
/nix/store/sj4zi9gxjgiw6fca4b5wcjbhs2x4mwzc-unit-systemd-udevd.service.drv
/nix/store/v02rgrlz3wvqas1rf47bh5i9jyl5cmid-unit-getty-.service.drv
/nix/store/vpxvjv1skgxkl6zr91yb61d4hy5ga5d8-unit-systemd-random-seed.service.drv
/nix/store/wfaa2kmbhqgbdr7kk5jnsaqpizfjnx8r-unit-post-resume.target.drv
/nix/store/wjv9kddv0lgm9ky3dyzay4clda1xh3i6-unit-network-interfaces.target.drv
/nix/store/ml8mccq684bcf7vb3cc9nzn0sd64098w-unit-script.drv
/nix/store/wwjx0m61fg4dymmysnpppz7z56h9wrfp-unit-nix-gc.service.drv
/nix/store/x00fh0xxyqrpndijnvphv6804n5jh2af-unit-dbus.service.drv
/nix/store/zgm7kjx07lxhjx9ahpf3ly0nqxs8wfmv-etc-journald.conf.drv
/nix/store/xnq8gm4iqmh6ca9zsv0rjfsf58qv1vrq-unit-systemd-journald.service.drv
/nix/store/xpfmvklnp7kzsn0jvmj1ap19x5zyh5hp-unit-rngd.service.drv
/nix/store/yasrj4anyzjd8lvwjgs5h8f3z8mdplga-unit-local-fs.target.drv
/nix/store/zvdc0q75l4mjar93c9vbsq3wgr3qm9kl-unit-container-getty-.service.drv
/nix/store/zvh0h5m89r6h80vj17yf047rab67f87x-unit-keys.target.drv
/nix/store/q64ibj2955sd7c79v47h978qj8h4mwrh-system-units.drv
/nix/store/qkhw80n7qh0yi5r2c5c29yma5mx52aka-etc-subuid.drv
/nix/store/rhf0yl6iwd8v5l3g0wf710bh7mbc1afa-sudo.pam.drv
/nix/store/rvxzq6pgixc6g2cvsp19hcq8px9pq7i2-login.defs.drv
/nix/store/s6dr7299mn5jvrih4nwmdbzqwvdifnrs-runuser-l.pam.drv
/nix/store/ss2k1n1li74f0c9mv8lwn3ckp85cd59d-xscreensaver.pam.drv
/nix/store/v4jm4nwp3a99mp8lz57pzc0wf4m71c7r-i3lock-color.pam.drv
/nix/store/w0k4870y8m4g2d859wivcjnqdmfjvzd9-hwdb.bin.drv
/nix/store/wqc4arlqjwv4mp0si45jpsnyzgmskyg0-other.pam.drv
/nix/store/x85f4hlw2izylnm5g902imbjs6l6yvq7-etc-os-release.drv
/nix/store/xv0nzj4n779yavcxnaslg5lm259v90yi-etc-nixos.conf.drv
/nix/store/y4bvxkxwdq53vn02n5jmw4a2aqs6n8sf-groupadd.pam.drv
/nix/store/yqazid74a9mnkhh99hp08zgddx1dl1a2-etc-subgid.drv
/nix/store/z4k0yhrqfpyi9j814hyxmkd9qg5y4ndj-i3lock.pam.drv
/nix/store/zbfk08lwaz6yg1vz25kj2r9yb3a7ahs8-userdel.pam.drv
/nix/store/zcviwc9623jc91i6bwc7xxfkx05kp1vs-ftp.pam.drv
/nix/store/znvsxwyzddyar1d2rmk507rw8a20vzjh-useradd.pam.drv
/nix/store/8h8n45gwckby7nvkz7rssfqzqbzmsb33-etc.drv
/nix/store/rng9d1sn4wcbjx19v1j2fiq00nncppkf-grub-config.xml.drv
/nix/store/9rq8vsm1k7qnb639njf1z8422xvri3vk-install-grub.sh.drv
/nix/store/gbca81nzryjbl2k24xyizna99gi2ds6z-mdadm.conf.drv
/nix/store/ikzscla5r7dc8vv0snd7abr300y32dmg-initrd.drv
/nix/store/lw3bkyp1jdv8h76f0rkf6mkxl24xaalf-users-groups.json.drv
/nix/store/dg5a4l82zigmxgpkmvbsm3q00hplll7g-nixos-system-build-slave-16.09.1943.25f4906da6.drv
/nix/store/p80zjzafwkks8q4sb8jbhy9f3y9pll2a-nixops-machines.drv
these paths will be fetched (194.77 MiB download, 860.08 MiB unpacked):
/nix/store/08a1ii9zz438985fkcfpv8bxb9fxa652-linux-headers-4.4.10
/nix/store/0pwrd2phx6a3x76ii896b0vg9xrqb4ds-sudo-1.8.19p2
/nix/store/13li4gws408cj5z91kzzzx3ynabi5q8f-perl-String-ShellQuote-1.04
/nix/store/1888amazy5mzkgj8pl5am0qkv7k6bn9n-gawk-4.1.3-info
/nix/store/195jpyav7kc75swh74fhkgmkn60mms52-libXau-1.0.8
/nix/store/1bwyw8iywr53mcdjyq931hwfgj8kn2x2-gzip-1.8-man
/nix/store/1piphl62vlb9n9sd3f3rn9cnvdsmcr45-man-db-2.7.5
/nix/store/1vhgkmby6lkm6qz3kv6pmzylv1599z7y-Gnome_Dark.png
/nix/store/222s1mvzd1qipjklq13mrhrjgfngq9fd-diffutils-3.5
/nix/store/27bkikmvach3w1phmcllgm6rb8lblz6k-libgudev-230
/nix/store/298j8jhnlc8gjr9hsbq80b889gc12fk4-btrfs-progs-4.6.1
/nix/store/29b4zlgc7550lyvj9d2v703b1xkly9w0-keymap
/nix/store/2cc8arbak0v93xwxpkckyvid00q1hypz-nixos-manual
/nix/store/2igbp5cmafb3k80m8w9y9pa7chv9j0z2-iana-etc-2.30
/nix/store/2ij54lmg02915s43kdwlf5hf5qnm04xx-shadow-4.4
/nix/store/2l6lq1xd2nfbsivcm4wk4iqy6v5wqjd3-libevent-2.0.22
/nix/store/2mvblw8kq86ncaidjrp3x4rssy1lhlhi-binutils-2.27
/nix/store/2qcqnjg57a9j2q3j0wsg8pyxvc07s4a8-p11-kit-0.23.2
/nix/store/37wsnhbvbbkd7s9r2bpjah1ymx8sg4vh-libXcursor-1.1.14
/nix/store/3lrrcmflamqypls9zyjnvv05zbi56hbl-nixos-container
/nix/store/3q04isgbzkn4ryy74mrwyn8nsv5swz85-curl-7.53.0-man
/nix/store/3vzff9jqsh2jky54jbzkir801y352d0h-gnugrep-2.25-info
/nix/store/4czadkc5w36fvw9bdzsrk53hysl44mc8-fc-cache
/nix/store/4i6wmdy31pcjj8xj62g22qxk606b76sm-libXrender-0.9.10
/nix/store/4qkndqzkvflqmaqlckwfiys8sk494x01-udev-rules
/nix/store/52a7f0x0hzz3pym2bbak9rdy3qfgw7nw-perl-DBD-SQLite-1.50
/nix/store/52m8ssm6y8715gpaa2dq31rpn9jsrj9s-fontconfig-2.11.1-lib
/nix/store/55r7n6zcbg02zg2jh6m06v7cv7xhpp43-libsamplerate-0.1.8
/nix/store/56k1qvqglmwh5jwhjlm3znmdakgk8wfv-glib-2.48.2
/nix/store/5720hnm4l2sa7wj5d5i2pv5rkxy29yj4-ncurses-6.0
/nix/store/5cpnwwnasypdi7p0av6qbaf52y99gmdz-xz-5.2.2-bin
/nix/store/5cv8iqinh6wpyszkjfgcmf07wg15sq1b-e2fsprogs-1.43.3-bin
/nix/store/5dp83mndkfmjswpb7a3c0c142wi2n49i-mdadm-3.3.4
/nix/store/5gqnhir764mqmgsqxy0xsg1nwzzys3h4-fontconfig-2.10.2
/nix/store/5hzj9wys8ks81cnw996d372gpjgkybk4-fontconfig-2.11.1-bin
/nix/store/5p9sfjk5b95mfcq7s7fvx4b90njam05l-nixos-artwork-2015-02-27
/nix/store/5xww3qm1jiqp7gsawkw00ajn7h331g8i-netcat-gnu-0.7.1
/nix/store/60qwqs7w6sdgpwpbydcfmq66dsljzf5w-nuke-references
/nix/store/62ag6pkp2vcmahf3v80wwwh2ygamcg8k-openssh-7.4p1
/nix/store/65x0gh642y10k2p54ig3bm9v862bbvp9-coreutils-8.25-info
/nix/store/6bkk0dr0cnigr4x9y72lxxswvh3rv9pq-cracklib-2.9.6
/nix/store/6firznr8pfjy4m37qk7ys67xbbvg3cb4-libXext-1.3.3
/nix/store/6hi76sxwgd7lmsvq2rjvqiq6045axjfd-fc-cache
/nix/store/6k20svx8f5rjgb2bb16fpahza9azdhrq-perl-5.22.2-man
/nix/store/6mr2p2fzm66z8xdfhyjqhrzwc4ifgmv9-pciutils-3.5.1
/nix/store/6npq3r45lmwdyd978g4wl0cqqg9l0dzz-libgcrypt-1.7.3
/nix/store/6rhawr786hmpg0lw910rna03v0gbw93j-zlib-1.2.8
/nix/store/6scmpmlp8jid0dy3lsxajlp1g0shh1j6-bash-4.3-p48-info
/nix/store/75cn082pxrd4kild0a9lzncpn71wl1gx-fc-00-nixos-cache.conf
/nix/store/7m2ch0nyd74y3p8qbzrj3rnz7k81i54v-paxctl-0.9
/nix/store/7y6azp3wqbbf1wldyyam9zj49s8v09rp-bash-4.3-p48
/nix/store/7zrdd426mxwdhm24zych609qqz06hgzp-kbd-env
/nix/store/82bwc1ib9lh70s4bjhs8fibp8rhg1xmh-xz-5.2.2-man
/nix/store/843w2kwl2rfzwmyxdfk397bnl4bnhw32-ncurses-6.0-man
/nix/store/86lv9qpcaqmn6mgkhhqyvi5q4gr66znk-command-not-found
/nix/store/88ngwqz31d8pidghwh13cmzxf7jyvfq2-dosfstools-3.0.28
/nix/store/88rcm5cvzx57qvrisln9kr3dm211bs76-perl-XML-SAX-0.96
/nix/store/8b4aslwn4a4l6wpxgaisv49i4xnskp1x-which-2.21
/nix/store/8d1gp04jq5911vrk4avv1lkzlibhlhjn-libXt-1.1.5
/nix/store/8qwaxxhkd6fjiffh8df795d4401zzsgn-gmp-6.1.1
/nix/store/8rlyzn7cyq23a0gbg824nhddgb6m4207-xz-5.2.2
/nix/store/8vv3ci8a4hcp2zva8px2bnz7334rn9fw-libidn-1.33
/nix/store/8y1rlgghm2i7dily9ahlxnfkkrbq0fsn-nss-cacert-3.28.1
/nix/store/8yfvz914721764q6sb4mf5bvkaghfy8f-ntp-4.2.8p10
/nix/store/8yp50gnnibbbmg3b82drqrra8rwzsspq-openresolv-3.8.1
/nix/store/8zf540n6g47x5123vlnjfr5x5csbvxy9-libpng-apng-1.6.27
/nix/store/90sqjv0ny5qmdbbbxasfmk9vkc3swn4v-gawk-4.1.3-man
/nix/store/91gq1r39y4yfv4k95vl9szw1sg7v9rmg-patchelf-0.9
/nix/store/94pmx8vxavzjcn6lrcnym0ngbbhbpkwr-fontconfig-conf
/nix/store/95b6acaih0gq95n5l8rxkkmvk2gbinmd-util-linux-2.28.1
/nix/store/95vfigaqdg8jg5bk961k1x06j86p5fh0-findutils-4.6.0
/nix/store/9bb5zn3fs3d53p0yyf3gk17xdn4gylp1-lzo-2.09
/nix/store/9c8ma97cis9gpmhmzscn0w4319zypnwz-fontconfig-ultimate-2016-04-23
/nix/store/9h6g752dnx81s2zxr15cg3hx52sd1ihx-libssh2-1.7.0
/nix/store/9jpkxfndb5zz4k0slghq7fm020klx972-cpio-2.12
/nix/store/9kqbjh4bj40m1424xxblzhcn3i87hihb-freetype-2.6.5
/nix/store/9l9rfjxgrprvy2k3xk107026qxim270p-xauth-1.0.9
/nix/store/9m1dkj6qvzlbbv680q3xg3wn46nqmsmm-shadow-4.4-man
/nix/store/9rlzwmq480mc1pvnrxl6f8vd2pabgldh-libXcomposite-0.4.4
/nix/store/9rwlh5b1qm3azxsjl49f1fx18vd2s459-db-5.3.28
/nix/store/a4gqw44fc067l5gr730wcpi7whrpch3h-nixos-option
/nix/store/acsc2d6r6x6z9cdnks4ff5n0n84sw96z-python-2.7.13
/nix/store/adnla1w151sdirn0v4vs4v4m4m7xny82-libgpg-error-1.24
/nix/store/afacmagwdw2pavmgylnn677kz8j2crkc-libseccomp-2.3.1
/nix/store/anmxbyrjqidz1pzqi6nhrf1anchrrhq8-dvp-1.2.1
/nix/store/awf0miikacl11agx5bwbwds66xazcr8v-glibc-2.24-dev
/nix/store/b2diyjks6fkrdzg114l5rpqwrbj4ld6g-nixos-install
/nix/store/b2whp5q58rwi0rk7x37p4aq690ziqw83-fc-10-nixos-rendering.conf
/nix/store/bg0k4wfhscg0wjwq6vrfnnpic95j703h-libXdmcp-1.1.2
/nix/store/bm052v0zqk8w4gvfwqacszb6b9kijcs4-glibc-2.24-bin
/nix/store/bxh5d7mhqbx1vmwj9cfkybnf9vhj5a94-perl-DBI-1.636
/nix/store/c5y9w08xkiz6kvnscpjv3205gyr6iybz-gzip-1.8
/nix/store/c6pcdai9nwd2zmcnbz96j239mgs61qxj-gnused-4.2.2
/nix/store/c74rxqwg0pkl6ypf41wn5ca4fqn80ljw-util-linux-2.28.1
/nix/store/ccp1bw0pzfa52zyax9lsg6q1q2yxnprs-zfs-user-0.6.5.9
/nix/store/ccxbc5jfsqs0x5wh26j4d1ayn7h53yfw-boehm-gc-7.2g
/nix/store/cgsr2czwzvwkx6i6rs31z46f54mrx9m4-audit-2.6.6
/nix/store/chh9kar7cpcz48jpppfbw3i2b8xqv5p7-util-linux-2.28.1-bin
/nix/store/cj0zinnakxj5zd3fw8050l0ng5mlrwm5-gnutar-1.29
/nix/store/cj7j0yx3dm3d8g5dsass0yfzrrjn0q5n-openssl-1.0.2k
/nix/store/cjjwnhn6538i53c85zx50hnqj1fx2qpw-e2fsprogs-1.43.3-man
/nix/store/d946v434am522fab312v0h6vi177cmza-initrd-kmod-blacklist-ubuntu
/nix/store/d9ibgrwjb6q2i5h8s85a135cclgx6wpz-nixos-manpages
/nix/store/dd7arnxf9qzfnlw1b7pfzddfcayn0zha-dhcpcd-6.11.3
/nix/store/dgi2lh2bcag84h48g5fabj5sm0cy7wsn-fc-52-fontconfig-ultimate.conf
/nix/store/dh1pnwgqs8sxn62ig1b5ran5r9bx23wp-dbus-1.10.12-lib
/nix/store/dkx6r6b3l4wbcnphb5a1jgq4259vns3m-cpupower-4.4.59
/nix/store/dris5iaziqna4l3kafiyhr0wyx34gjmz-bzip2-1.0.6.0.1
/nix/store/drjy2sp7rchn7cz6srh630h3a0n1pbrm-libICE-1.0.9
/nix/store/dzk23p21s0dcc3b20dpyv936qx7qj637-extra-utils
/nix/store/f1jd0cj6zzlz3q5ms0qh5a6ack0rsj9p-libX11-1.6.4
/nix/store/f3s52jw9qyl8acj6zyicqg9drsn15xpd-libatasmart-0.19
/nix/store/f3wan424j5p0a06p02byvn4gq5g2x234-stdenv
/nix/store/fj04zd7xrkmr0d8bq2vg6zcxgvicn6vb-lvm2-2.02.140
/nix/store/fnq2nh1qrimy2f15kynyfc6ipj7651vk-systemd-231-man
/nix/store/fpnhll3wq97b49zbnbryg1bizfg3dqng-libXmu-1.1.2
/nix/store/fppxbbq1max5f86kwm0sm3mxfy6vl3ab-glibc-locales-2.24
/nix/store/frwgycm10xvcs7bw7y579ymxvmxp9gsh-perl-File-Slurp-9999.19
/nix/store/g1nwg4q7svjr6xjl530609s70rr7asjf-iputils-20151218
/nix/store/gabjbkwga2dhhp2wzyaxl83r8hjjfc37-bash-4.3-p48
/nix/store/gbayld2hmashk004xph8qhp1n6p9cpgk-nano-2.6.3
/nix/store/gdlmyqxapv0y258nk9w46jcyj8q8hbcm-kmod-23
/nix/store/giw76m1rb4rbwcynaaczss882y8w11n3-stage-2-init.sh
/nix/store/gmd96i0yfrm6n4l97hkwf787viq9jlbf-dejavu-fonts-2.37-minimal
/nix/store/gmsyb2glj4dpv4h7b7cm42qwd6m3w9kq-iptables-1.6.0
/nix/store/gmzmfhjibgl4mkxjq9h318mg1xpi3fz5-gnused-4.2.2-info
/nix/store/gp5n5nm2g7yk776vw9lawfw4jnsmfxjw-less-481
/nix/store/gpf86xshp2pcq4rdwzx84svscqlrkl7c-linux-pam-1.2.1
/nix/store/gs36amglhgii6i9nb7wrlps2lnvcq4f6-gcc-5.4.0-lib
/nix/store/gw7f531wvfln4b3xidbsi627g1vg1wj7-unbound-1.5.10-lib
/nix/store/h1bqq6nfkrlvfywf28j3as1j76013vz6-alsa-utils-1.1.0
/nix/store/h1yxx0d10n4lksj9hjr3997zxs5zml90-host-20000331
/nix/store/h4wn6rpgy44qgv196mckx4hvh3lrvxji-mount.vboxsf
/nix/store/h4yx42bm29m31n7pyvdv754a3b2dx3pc-texinfo-6.1
/nix/store/h6dqjcrfz499sy9a8kb1pcv3f0n60qjf-nghttp2-1.14.1-lib
/nix/store/h9z832pqgcn7dnkqkmp4pwvmbvy0yq89-nano-2.6.3-info
/nix/store/hb61in5qxb0a0nfkf9hqa0449vg1lkc5-nix-1.11.8
/nix/store/hc8qdq9i1zsn8axk5y2azzgkkaikv7g3-fc-52-nixos-default-fonts.conf
/nix/store/hgb29f6hg7dy6r71qhyf8399b8ay38jz-libunwind-1.1
/nix/store/hia247wa09mffcyp66412zg8gliqyw91-bzip2-1.0.6.0.1-bin
/nix/store/hklwrh21s4xjmkc47l3q42xlwzgf2cwi-linux-4.4.59-dev
/nix/store/hpsg8y9fa4qrdrswqlzznj9z2nk6bnvs-perl-XML-LibXML-2.0122
/nix/store/hpsibmnn10hvnjrnnqfh3b7rz5ffp04b-gnutar-1.29-info
/nix/store/i1s6x7jqrh5v4qx56ip0wlq3x647zjw7-libXfixes-5.0.2
/nix/store/i44r89dxags3dd2v5vdmfh2vk5yybibc-audit-2.6.6-bin
/nix/store/i8ckniqmycarliga9rw8lam6699km54p-libSM-1.2.2
/nix/store/ig3x72cffqvj2gsgwnl40jbzm4vdmj9s-bcache-tools-1.0.7
/nix/store/igaqcqp8is533jkaj755f8q2n6yp4s7s-diffutils-3.5-info
/nix/store/ihiqspldk3kxxlaf40w5pcp1zvy28sc0-system-generators
/nix/store/iqp01gwbr5s916b8ws5p3rygixzjk655-firmware
/nix/store/ixrygianc2ccgj2y82pj6y8c3f9gz10y-attr-2.4.47
/nix/store/iz00i4pj2mhcpd9f0adz4y8c5qfdvigw-libedit-20160903-3.1
/nix/store/j0wm8l2560232pfdkayblrmiwass6l6q-libnftnl-1.0.6
/nix/store/j17jf808imgmmrpi2ghi5r9mpk1spw2j-nix-1.11.8-man
/nix/store/j2shnl8v9hqndid6hklzmmrx6gx46jwf-ca-certificates.crt
/nix/store/j6jwrfjmnz0mjyja57h9drcfayw13a84-rng-tools-5
/nix/store/jdp0dbxb9kiql25j6rfxvxl9smhjq36d-perl-XML-NamespaceSupport-1.11
/nix/store/jl7fy93sahy5s2pkv3q2vcxyhw6nbh0r-kbd-2.0.3
/nix/store/jpx6jl4f6i8dz8bzn8czny61q9axmh3w-fuse-2.9.5
/nix/store/jqvlnv2yrznm3j1k0bifa1i8b4k590nb-readline-6.3p08
/nix/store/js1wkqxw8yv30c9pnsljm3wibjbck8ky-shadow-4.4-su
/nix/store/jxcdm12947i4xvpcwyhl5sw60b39rnd1-findutils-4.6.0-info
/nix/store/jy5qj172j92z66xfzzbm62f2g79hrgbd-grub-2.x-2015-11-16
/nix/store/k7smgf265ci5hpilcs6ccil0zmzyc0g0-install-grub.pl
/nix/store/k9iy4w82dx4pwfbjybmjj1xqkbqv21x8-nixos-version
/nix/store/kgczpyfkh9avarbb1xxi2k2jh5ndyzgw-gcc-5.4.0
/nix/store/kjss7dxlr3jm5yfghgz3b6z81ya23pqh-acl-2.2.52
/nix/store/kkibj8cbp518kxkcxggdibyl2wnr9cx5-libcap-2.25-lib
/nix/store/kpw1kl6wj7727cj88qnwkqcdnvll0pgb-libxcb-1.12
/nix/store/krskgwnnd18c6wzfwnf0clqqdirpkl1h-patch-2.7.5
/nix/store/kynkqgcpjmk7g3immyy8r3n5s2nq0csd-nix.conf
/nix/store/kzd2y6mp78c2grsjxz7prapnrynycfr3-expat-2.2.0
/nix/store/l0lnlzjdymhknybnh8pyyxc9rl6pg8gc-util-linux-2.28.1-man
/nix/store/l624w6i6ai5jb5m44jb1r06b0q7mjhrb-libsodium-1.0.10
/nix/store/lbxsxyjfgakyyw0hp4yi0al3g7aq04m1-perl-5.22.2
/nix/store/lcwdbh37ha51z86c62mm65vbcfc990dd-coreutils-8.25
/nix/store/ld4vciw5rdlz9ld2z9i9sc119fjyf1c1-libpipeline-1.4.1
/nix/store/ly1qfc7pq7kckcxgy69q93ih7l2wa1ay-stdenv
/nix/store/m214ag9x7ykbfcaccfr9fs99k2f64wlv-libmnl-1.0.4
/nix/store/m2flkfzk2x5b1s33k84ppsf2b6pyds8p-udisks-2.1.6
/nix/store/m7gflf7kgm6rcm5126ljrb2256293fw7-linux-4.4.59
/nix/store/m811j7bjc5d9gw8zyv3qq57mk8f52krn-libmicrohttpd-0.9.50
/nix/store/md3fjgh7daysv7km50cwy4hah3khn43h-fonts.conf
/nix/store/mfb2qpm4vswqw8wfcj3qw4c56ijij00s-acl-2.2.52-bin
/nix/store/mklnx9vi3cz5rwr723nhdr4vfc98qzfc-rsync-3.1.2
/nix/store/mm67qzf8qfmsk9ncr0swns3xwdnf204a-fontconfig-etc
/nix/store/mvn1zykb3kc7pbi47qysbmrabzsrclrl-openssl-1.0.2k-dev
/nix/store/n1hh0ia6kdqjxb332li930yhwps8930n-nixos-build-vms
/nix/store/n46pca88k2avx96q9zp6927xq3apv2xd-net-tools-1.60_p20120127084908
/nix/store/nhjqfanl5x8cahbvj8plpln9jms0llw8-groff-1.22.3
/nix/store/np4627sfibzr68hl024d02182i1gj3qp-util-linux-2.28.1-bin
/nix/store/nxbvw8n2kxmw1xsjr9rgwm0idsiv4jzj-ed-1.14.1
/nix/store/p6v7ysmxjk6jhj6s58kmg4158za949s5-libxml2-2.9.4
/nix/store/p94ahilfcq0xkvxp4kr01q2m2a3hhb7s-iproute2-4.5.0
/nix/store/pvq9cz0zkdi9m6aa0kizcr1bwdrg6fgq-libXrandr-1.5.1
/nix/store/q0g6qqrqj31lin676605jrmb0w26hmx1-strace-4.13
/nix/store/q2vcm9nf0c1ms8gdm4r76xlwdaniwki4-font-ultimate-conf
/nix/store/q3bwqjkzxmhwimy1d8ymk6nhl1p9n9kg-systemd-231-lib
/nix/store/q3wx1gab2ysnk5nyvyyg56ana2v4r2ar-glibc-2.24
/nix/store/q5l021ycq1b9sgyrk65lbkc5a7xsh2d0-lz4-131
/nix/store/qg1r4wm4q33kxr8ccw39kw6jl14xp2pc-closure
/nix/store/qj4mk0173jj7cxbzxaj3if5a9r2ivm62-e2fsprogs-1.43.3
/nix/store/qj548x41sl5q2lk8f8nnn49y20yn2cip-nettle-3.3
/nix/store/qmmyz3w19s44p45j19f70jqzzaa8cxpw-systemd-231
/nix/store/qpmvriv7c1vpkaxawn8ic0gpx03dvrvg-fc-00-nixos-cache.conf
/nix/store/qxjp0f48s6q8yk9007bi3zwzz0d254fz-libXdamage-1.1.4
/nix/store/r0h6r47bclnq900jg70hznqmcw413s5v-time-1.7
/nix/store/r3sv8y2z42izl0w2i2rdhc89ppj1p959-spidermonkey-17.0.0-lib
/nix/store/r884jyaj1mgihn736d8rqjsf6cgc1rbm-nspr-4.13.1
/nix/store/ra5pii8gyxyx5ari5gd25ags182i095b-perl-JSON-2.90
/nix/store/razdmip25hshgflm1z06pzlcmrndjzrf-libapparmor-2.10
/nix/store/rcngq5m9wd6480wk4pqdalcx2ylgdpm9-setuid-wrapper
/nix/store/rkr0s2vhkhj6xmskmk2vxjgs0xhabq50-procps-3.3.11
/nix/store/rxjggr99r2l6wm4sy7aigmj33bvdq8kp-attr-2.4.47-bin
/nix/store/s3wn9rgnn2sc4aqdg491kk1w447w5l3x-openssl-1.0.2k-bin
/nix/store/s9nxgw07gv62adx6n22gsrhz7a7dajmn-bzip2-1.0.6.0.1-man
/nix/store/sa5315dz934rrylpharsbmw0phqfcd2s-libunistring-0.9.6
/nix/store/sdgwwaks9cnkga9zz7bra8pg0wpprijg-mounts.sh
/nix/store/sqvskdzyak7p1qwzrpbxpjaxacy06amr-kmod-blacklist-3ubuntu1
/nix/store/svggvjw763391nkbdf644gsawgz3hfjp-pcre-8.40
/nix/store/v2s0yykq09ingyg6f8mnhxbgykhkvsr1-polkit-0.113-bin
/nix/store/v6vvirhpv8crvshd87ycpfcd28n9rwrs-libffi-3.2.1
/nix/store/v9j9p7brc3fnv5wf6k7qph4xiibr59mx-libtasn1-4.10
/nix/store/v9wqcf99kqjnkzaqy46qpgfcj1giqfqv-dbus-1.10.12
/nix/store/vf96bgjdai40ikdw1w8s9layppkkgwra-sudoers
/nix/store/vh7wigw2waf314phgv2mx1k92gp2nscp-udev-path
/nix/store/vm604khw3j1hqmla3mxqbbgibknjbi1d-sqlite-3.14.2
/nix/store/vnskzr65q0gymqd8hfxm26hv2d12l5m1-gnutls-3.5.10
/nix/store/vrpginla4p1yk61llrn8vwjsdyhrbpz9-gcc-5.4.0-man
/nix/store/vyd9fimp32c3zllzzlazncbxislmmpam-gcc-wrapper-5.4.0
/nix/store/w0sy8xfmq4m3ylcrjv2kqf5jmpm03gj6-perl-Archive-Cpio-0.09
/nix/store/wbbb4dxymk8bfb63pk76ahbxq89jw9qh-VirtualBox-GuestAdditions-5.1.14-4.4.59
/nix/store/wg81575n8cc36nj0c40qvi2mdfjhcqs6-perl-List-Compare-0.53
/nix/store/wnsbxbyrxj8h7jp9nibn01kcymjdww8y-linux-pam-1.2.1-man
/nix/store/wny27rw4vd8k83869danzm4zl3m83daw-nixos-generate-config
/nix/store/wpqm3jxk20jrl9qlfyhrx8wdsr54v10y-nixos-rebuild
/nix/store/wvn16pwh13vv58dkdzz665lrg0yy0pk6-curl-7.53.0-bin
/nix/store/wvngpm4r23fvn9ld15161gi1jl44apv2-perl-WWW-Curl-4.17
/nix/store/x451jk1q0dadjic52qawhnwfv0f4a4sk-gawk-4.1.3
/nix/store/x48px1mhfx5gg1nqfpxbl2vf9v0hq8r7-tzdata-2016j
/nix/store/xdqi412lfz1gn5i0qzskn2bffg8rczr9-kmod-debian-aliases-22-1.1.conf
/nix/store/xlg049ym6n8qkp2grv415ib6aac0vybb-gzip-1.8-info
/nix/store/xvr46zcnwi3m3yj5sksw2n8qxrf3crbf-polkit-0.113
/nix/store/xzlrn26k4id1x93r3ij72xdmylkzlzaq-neo-2476
/nix/store/ydkq5khi8vdnraibycsz00xy4gx7dvlf-libcap-2.25
/nix/store/yjnsv46czffz2wgfwhqawgnpbisikzh6-readonly-mountpoint
/nix/store/z27fci4s8rjgias3ndv1vkqfh5mwq6sa-kexec-tools-2.0.12
/nix/store/zfya7zk5w8bdrcg1wn65zxwdl8f236by-alsa-lib-1.1.1
/nix/store/zkfdmp7kn4iqpxbxigzrqfxpczqjnaz7-fontconfig-2.11.1
/nix/store/zklahbvk9idyjqn6qf667ac1n63yf3s8-gnumake-4.2.1
/nix/store/zln91qagx7nal2mqs92wivw2mnil551v-local-cmds
/nix/store/zmall2mx8ksq4qyxrjqr4ymg2ybws8wj-curl-7.53.0
/nix/store/zrkfx96gkqmc0ybdlwkqbwr8vb7k9rfl-fftw-double-3.3.5
/nix/store/zwr4gj1xj67iifpa5mixwz5az7k0j1c4-gnugrep-2.25
fetching path ‘/nix/store/q3wx1gab2ysnk5nyvyyg56ana2v4r2ar-glibc-2.24’...
fetching path ‘/nix/store/m7gflf7kgm6rcm5126ljrb2256293fw7-linux-4.4.59’...
fetching path ‘/nix/store/frwgycm10xvcs7bw7y579ymxvmxp9gsh-perl-File-Slurp-9999.19’...
fetching path ‘/nix/store/ra5pii8gyxyx5ari5gd25ags182i095b-perl-JSON-2.90’...
*** Downloading ‘https://cache.nixos.org/nar/0pz2wb1llw0rb5a7p4w5xd23xkdyac2rwa0wwvpdkhykwc62nl2v.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q3wx1gab2ysnk5nyvyyg56ana2v4r2ar-glibc-2.24’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0z3azyib3lyja1ixj2cp0na0szjcg9ac00rdagapz725icz516q7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m7gflf7kgm6rcm5126ljrb2256293fw7-linux-4.4.59’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1qf3cw3vbx7ykqdl15c2v1livry3mry0abi7pgd5pdddaxs1d8ck.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/frwgycm10xvcs7bw7y579ymxvmxp9gsh-perl-File-Slurp-9999.19’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1mrrjyrl64rf66way236w23xg11sx2skpnxdjfz6xdswkxq234jp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ra5pii8gyxyx5ari5gd25ags182i095b-perl-JSON-2.90’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 9900 100 9900 0 0 9900 0 0:00:01 --:--:-- 0:00:01 15840
fetching path ‘/nix/store/1vhgkmby6lkm6qz3kv6pmzylv1599z7y-Gnome_Dark.png’...
*** Downloading ‘https://cache.nixos.org/nar/007pq1vz1msn8a8hgi9b7sq2qx1h45i45016s60bi6g8j7iazirp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1vhgkmby6lkm6qz3kv6pmzylv1599z7y-Gnome_Dark.png’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 31472 100 31472 0 0 31472 0 0:00:01 --:--:-- 0:00:01 39290--:--:-- --:--:- - --:--:-- 0--:--:-- 0:00:01 21377
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/s9nxgw07gv62adx6n22gsrhz7a7dajmn-bzip2-1.0.6.0.1-man’...
*** Downloading ‘https://cache.nixos.org/nar/13xnp47la8q0x18wgxxszvlfg6iq8w6xlrrbnjm74sifpr91v9b4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s9nxgw07gv62adx6n22gsrhz7a7dajmn-bzip2-1.0.6.0.1-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 10004 100 10004 0 0 10004 0 0:00:01 --:--:-- 0:00:01 39078
fetching path ‘/nix/store/j2shnl8v9hqndid6hklzmmrx6gx46jwf-ca-certificates.crt’...
*** Downloading ‘https://cache.nixos.org/nar/1dcm1mzc98f2fqb4c0nbkc05mcp4faj0wlg3kx1xir1rp6wmdrni.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j2shnl8v9hqndid6hklzmmrx6gx46jwf-ca-certificates.crt’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1054k 100 1054k 0 0 527k 0 0:00:02 0:00:02 --:--:-- 489k
fetching path ‘/nix/store/3q04isgbzkn4ryy74mrwyn8nsv5swz85-curl-7.53.0-man’...
100 145k 100 145k 0 0 145k 0 0:00:01 0:00:01 --:--:-- 94977
fetching path ‘/nix/store/gmd96i0yfrm6n4l97hkwf787viq9jlbf-dejavu-fonts-2.37-minimal’...
*** Downloading ‘https://cache.nixos.org/nar/0gsaidlq3w2qxax4wnrfbvjw5gkw0vp8mkipixmja0xq68lxy6vm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3q04isgbzkn4ryy74mrwyn8nsv5swz85-curl-7.53.0-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1080fpwg3w8z81ayk25hs4y42ai3lpiaxblavc2bpfmwm8hpz7gc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gmd96i0yfrm6n4l97hkwf787viq9jlbf-dejavu-fonts-2.37-minimal’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 39476 100 39476 0 0 39476 0 0:00:01 0:00:01 --:--:-- 394760:06 471k
fetching path ‘/nix/store/anmxbyrjqidz1pzqi6nhrf1anchrrhq8-dvp-1.2.1’...
*** Downloading ‘https://cache.nixos.org/nar/0x68raz8zzm119cb1q7yniamsp32123mw38x90q829pbgvr16s9q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/anmxbyrjqidz1pzqi6nhrf1anchrrhq8-dvp-1.2.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3520 100 3520 0 0 3520 0 0:00:01 --:--:-- 0:00:01 15042
fetching path ‘/nix/store/dzk23p21s0dcc3b20dpyv936qx7qj637-extra-utils’...
*** Downloading ‘https://cache.nixos.org/nar/1kn81xwn343mh33y7hbcad5fqynzfzq3gjhiq3rzch99hwc0jbws.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dzk23p21s0dcc3b20dpyv936qx7qj637-extra-utils’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 294k 100 294k 0 0 294k 0 0:00:01 0:00:01 --:--:-- 170k
fetching path ‘/nix/store/b2whp5q58rwi0rk7x37p4aq690ziqw83-fc-10-nixos-rendering.conf’...
*** Downloading ‘https://cache.nixos.org/nar/13apsjnpljnqyd0zddb2dhhdxwv7l095b6k47naxfn8dcnhffc3c.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/b2whp5q58rwi0rk7x37p4aq690ziqw83-fc-10-nixos-rendering.conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 372 100 372 0 0 372 0 0:00:01 --:--:-- 0:00:01 1282
fetching path ‘/nix/store/dgi2lh2bcag84h48g5fabj5sm0cy7wsn-fc-52-fontconfig-ultimate.conf’...
*** Downloading ‘https://cache.nixos.org/nar/09yzy7akjccprhl3qyk87csjck9ilxmvrqb5dz81ck37wrs43cjz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dgi2lh2bcag84h48g5fabj5sm0cy7wsn-fc-52-fontconfig-ultimate.conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 384 100 384 0 0 384 0 0:00:01 --:--:-- 0:00:01 1517
fetching path ‘/nix/store/hc8qdq9i1zsn8axk5y2azzgkkaikv7g3-fc-52-nixos-default-fonts.conf’...
13 45.8M 13 6466k 0 0 1293k 0 0:00:36 0:00:05 0:00:31 1277k
*** Downloading ‘https://cache.nixos.org/nar/0bmvhi0zzzj64l7h321s3xsxws1hymzk261kp9c39wqy05yqdmxy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hc8qdq9i1zsn8axk5y2azzgkkaikv7g3-fc-52-nixos-default-fonts.conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 300 100 300 0 0 300 0 0:00:01 --:--:-- 0:00:01 688
fetching path ‘/nix/store/4czadkc5w36fvw9bdzsrk53hysl44mc8-fc-cache’...
*** Downloading ‘https://cache.nixos.org/nar/19r6fz204yvf3p0fa08a68mj2dxqaglzrx8dcyw7pijcf8iw4hx2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4czadkc5w36fvw9bdzsrk53hysl44mc8-fc-cache’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1576 100 1576 0 0 1576 0 0:00:01 --:--:-- 0:00:01 18980:06 --:--:-- 810k205k 0 0:00:38 0:00:06 0:00:32 1229k
fetching path ‘/nix/store/6hi76sxwgd7lmsvq2rjvqiq6045axjfd-fc-cache’...
*** Downloading ‘https://cache.nixos.org/nar/1z96w9232plqis453266skijffwndm880jnld1naq0ykqwh6qy1y.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6hi76sxwgd7lmsvq2rjvqiq6045axjfd-fc-cache’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5397k 100 5397k 0 0 771k 0 0:00:07 0:00:07 --:--:-- 900k 0 0:00:07 0:00:07 --:--:-- 857k
100 320 100 320 0 0 320 0 0:00:01 --:--:-- 0:00:01 835
fetching path ‘/nix/store/qpmvriv7c1vpkaxawn8ic0gpx03dvrvg-fc-00-nixos-cache.conf’...
fetching path ‘/nix/store/75cn082pxrd4kild0a9lzncpn71wl1gx-fc-00-nixos-cache.conf’...
*** Downloading ‘https://cache.nixos.org/nar/0s1w9q5cl7l1ckfr7mvb9a6qjcwdd117f7j8npalxgrslawvcbgc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qpmvriv7c1vpkaxawn8ic0gpx03dvrvg-fc-00-nixos-cache.conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0542m3l7v49ryfjzvabazzfyc1lifhixnqp2pvbmlzkskjvpd9py.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/75cn082pxrd4kild0a9lzncpn71wl1gx-fc-00-nixos-cache.conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 292 100 292 0 0 292 0 0:00:01 --:--:-- 0:00:01 473
fetching path ‘/nix/store/zfya7zk5w8bdrcg1wn65zxwdl8f236by-alsa-lib-1.1.1’...
*** Downloading ‘https://cache.nixos.org/nar/1x6mccgc5s349klw432nci80i3a0hn5vi8ni0ar3jzs8jmncjsd2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zfya7zk5w8bdrcg1wn65zxwdl8f236by-alsa-lib-1.1.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 292 100 292 0 0 292 0 0:00:01 --:--:-- 0:00:01 471
fetching path ‘/nix/store/ixrygianc2ccgj2y82pj6y8c3f9gz10y-attr-2.4.47’...
*** Downloading ‘https://cache.nixos.org/nar/0726pg3mq25d7dwpb2dcxnhi7pqnyzgm83d5nwc4nfzr7hzzwd33.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ixrygianc2ccgj2y82pj6y8c3f9gz10y-attr-2.4.47’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 15588 100 15588 0 0 15588 0 0:00:01 --:--:-- 0:00:01 22079
fetching path ‘/nix/store/gabjbkwga2dhhp2wzyaxl83r8hjjfc37-bash-4.3-p48’...
21 382k 21 85645 0 0 85645 0 0:00:04 0:00:01 0:00:03 82668:00:38 0:00:09 0:00:29 1163k
*** Downloading ‘https://cache.nixos.org/nar/0ckgfl540lg9j6wj24lzk2rqys54l1z3j47k2a9a0njps064w9mm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gabjbkwga2dhhp2wzyaxl83r8hjjfc37-bash-4.3-p48’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3768k 100 3768k 0 0 753k 0 0:00:05 0:00:05 --:--:-- 871k
fetching path ‘/nix/store/kjss7dxlr3jm5yfghgz3b6z81ya23pqh-acl-2.2.52’...
*** Downloading ‘https://cache.nixos.org/nar/0hck899r9g496d1qrqf9wkllvwbrq4g2r8fc13fl5g76wd5il27b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kjss7dxlr3jm5yfghgz3b6z81ya23pqh-acl-2.2.52’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 382k 100 382k 0 0 382k 0 0:00:01 0:00:01 --:--:-- 262k
fetching path ‘/nix/store/rxjggr99r2l6wm4sy7aigmj33bvdq8kp-attr-2.4.47-bin’...
*** Downloading ‘https://cache.nixos.org/nar/1gprfhdq3msx7rmznqyplkfaf4chbpfkxnf7hr8hl8qqfsgzwqkb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rxjggr99r2l6wm4sy7aigmj33bvdq8kp-attr-2.4.47-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 14952 100 14952 0 0 14952 0 0:00:01 --:--:-- 0:00:01 51205
fetching path ‘/nix/store/2mvblw8kq86ncaidjrp3x4rssy1lhlhi-binutils-2.27’...
100 22448 100 22448 0 0 22448 0 0:00:01 --:--:-- 0:00:01 31572
21 309k 21 68215 0 0 68215 0 0:00:04 0:00:01 0:00:03 67339
fetching path ‘/nix/store/dris5iaziqna4l3kafiyhr0wyx34gjmz-bzip2-1.0.6.0.1’...
*** Downloading ‘https://cache.nixos.org/nar/0jxdrw9cnndzykswnw1d6gb8xl8cqd0kbv8x5qxzy6lvacyzrf9w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2mvblw8kq86ncaidjrp3x4rssy1lhlhi-binutils-2.27’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0cfd7xp55nyb0n5wd0ckbifh21d00svcqfirnc9h30jaqkxgckvy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dris5iaziqna4l3kafiyhr0wyx34gjmz-bzip2-1.0.6.0.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 309k 100 309k 0 0 309k 0 0:00:01 0:00:01 --:--:-- 204k
fetching path ‘/nix/store/mfb2qpm4vswqw8wfcj3qw4c56ijij00s-acl-2.2.52-bin’...
*** Downloading ‘https://cache.nixos.org/nar/130k086d8l37g52b1zrqcx6nbabq62fa5i0j1gmn13m27zbw62ws.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mfb2qpm4vswqw8wfcj3qw4c56ijij00s-acl-2.2.52-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 27216 100 27216 0 0 27216 0 0:00:01 --:--:-- 0:00:01 29874
fetching path ‘/nix/store/cgsr2czwzvwkx6i6rs31z46f54mrx9m4-audit-2.6.6’...
*** Downloading ‘https://cache.nixos.org/nar/1xs17jb4k3r9cgdcazl094syjq9ywsk0mafny4039gzjx82w2qqm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cgsr2czwzvwkx6i6rs31z46f54mrx9m4-audit-2.6.6’...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 23276 100 23276 0 0 23276 0 0:00:01 --:--:-- 0:00:01 30870
fetching path ‘/nix/store/hia247wa09mffcyp66412zg8gliqyw91-bzip2-1.0.6.0.1-bin’...
*** Downloading ‘https://cache.nixos.org/nar/0vdbi7hqkzdcfn0ff8hyzzjabfzwbf3ivlrrprw2ym4yymwd5i3b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hia247wa09mffcyp66412zg8gliqyw91-bzip2-1.0.6.0.1-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 71980 100 71980 0 0 71980 0 0:00:01 --:--:-- 0:00:01 82168
fetching path ‘/nix/store/lcwdbh37ha51z86c62mm65vbcfc990dd-coreutils-8.25’...
100 18956 100 18956 0 0 18956 0 0:00:01 --:--:-- 0:00:01 27157
fetching path ‘/nix/store/i44r89dxags3dd2v5vdmfh2vk5yybibc-audit-2.6.6-bin’...
*** Downloading ‘https://cache.nixos.org/nar/1cvgji7mk3q68f257fmwlqvz8rhfdla6y0lxwqq8nwxagy3w34cx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lcwdbh37ha51z86c62mm65vbcfc990dd-coreutils-8.25’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0apc8rwba3zg3p4n03szdf7xfg4rzc3nzl551dvapfzbhmanz7fr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/i44r89dxags3dd2v5vdmfh2vk5yybibc-audit-2.6.6-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 150k 100 150k 0 0 150k 0 0:00:01 0:00:01 --:--:-- 113k
fetching path ‘/nix/store/9jpkxfndb5zz4k0slghq7fm020klx972-cpio-2.12’...
*** Downloading ‘https://cache.nixos.org/nar/1kfgwdzz0y5csm4kgxdm6zmwpsg35sx1g6grjdqcdxx419ck43i1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9jpkxfndb5zz4k0slghq7fm020klx972-cpio-2.12’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 188k 100 188k 0 0 188k 0 0:00:01 0:00:01 --:--:-- 132k
fetching path ‘/nix/store/88ngwqz31d8pidghwh13cmzxf7jyvfq2-dosfstools-3.0.28’...
*** Downloading ‘https://cache.nixos.org/nar/1nb4z4yivqzclab82p7z7qchnlv73nadrcyg6f04rb2p8i7nahcn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/88ngwqz31d8pidghwh13cmzxf7jyvfq2-dosfstools-3.0.28’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1846k 100 1846k 0 0 615k 0 0:00:03 0:00:03 --:--:-- 472k 0 0 566k 0 0:00:03 0:00:03 --:--:-- 462k
fetching path ‘/nix/store/nxbvw8n2kxmw1xsjr9rgwm0idsiv4jzj-ed-1.14.1’...
*** Downloading ‘https://cache.nixos.org/nar/1c2xcxdl96yfswrmw2n88hp1nadx0grjwjsaq74skczvxsafx3q1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/nxbvw8n2kxmw1xsjr9rgwm0idsiv4jzj-ed-1.14.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 79128 100 79128 0 0 79128 0 0:00:01 0:00:01 --:--:-- 68986
fetching path ‘/nix/store/65x0gh642y10k2p54ig3bm9v862bbvp9-coreutils-8.25-info’...
*** Downloading ‘https://cache.nixos.org/nar/0khyzzxvpg69j74k78hvd1gw84rvcbspyq7n7cdcsxc65xs4k81q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/65x0gh642y10k2p54ig3bm9v862bbvp9-coreutils-8.25-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 42836 100 42836 0 0 42836 0 0:00:01 --:--:-- 0:00:01 44854
fetching path ‘/nix/store/222s1mvzd1qipjklq13mrhrjgfngq9fd-diffutils-3.5’...
*** Downloading ‘https://cache.nixos.org/nar/1y4l1jk1w51zjcb9cfli5qa1i5nz7as908km0rgjg321cr0pw9s0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/222s1mvzd1qipjklq13mrhrjgfngq9fd-diffutils-3.5’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 168k 100 168k 0 0 168k 0 0:00:01 0:00:01 --:--:-- 115k
fetching path ‘/nix/store/kzd2y6mp78c2grsjxz7prapnrynycfr3-expat-2.2.0’...
0 216k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0xzrxl4qd7rxcshwbli0f7p02a35kqhp821a9ygvns3f1r8fk78z.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kzd2y6mp78c2grsjxz7prapnrynycfr3-expat-2.2.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 4522k 100 4522k 0 0 565k 0 0:00:08 0:00:08 --:--:-- 693k
fetching path ‘/nix/store/95vfigaqdg8jg5bk961k1x06j86p5fh0-findutils-4.6.0’...
100 216k 100 216k 0 0 216k 0 0:00:01 0:00:01 --:--:-- 159k
67 45.8M 67 30.8M 0 0 1660k 0 0:00:28 0:00:19 0:00:09 1932k
fetching path ‘/nix/store/5gqnhir764mqmgsqxy0xsg1nwzzys3h4-fontconfig-2.10.2’...
*** Downloading ‘https://cache.nixos.org/nar/05lmpb5nf4p01d0wj3fxyvz572cnh7siv0w6rwn23zns3xj1pjv1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/95vfigaqdg8jg5bk961k1x06j86p5fh0-findutils-4.6.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 56552 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0x8s6rb0ahxvi6g8w3vplyln3zw053szjj97ymcv9bvvifbfl71m.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5gqnhir764mqmgsqxy0xsg1nwzzys3h4-fontconfig-2.10.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 56552 100 56552 0 0 56552 0 0:00:01 0:00:01 --:--:-- 55992
fetching path ‘/nix/store/igaqcqp8is533jkaj755f8q2n6yp4s7s-diffutils-3.5-info’...
*** Downloading ‘https://cache.nixos.org/nar/1vqkzp0gnh70zsvx85ajzdlq2bpxqiav0laqm6bqn7xnjy8x9d5n.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/igaqcqp8is533jkaj755f8q2n6yp4s7s-diffutils-3.5-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 31156 100 31156 0 0 31156 0 0:00:01 --:--:-- 0:00:01 43697
9 346k 9 33423 0 0 33423 0 0:00:10 --:--:-- 0:00:10 37054fetching path ‘/nix/store/zkfdmp7kn4iqpxbxigzrqfxpczqjnaz7-fontconfig-2.11.1’...
*** Downloading ‘https://cache.nixos.org/nar/0z160kzlzcynqgki8kznwh0a2wbnrkn5zk6d3aa0ic82jkwhn0qg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zkfdmp7kn4iqpxbxigzrqfxpczqjnaz7-fontconfig-2.11.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 52688 100 52688 0 0 52688 0 0:00:01 --:--:-- 0:00:01 59804
fetching path ‘/nix/store/9c8ma97cis9gpmhmzscn0w4319zypnwz-fontconfig-ultimate-2016-04-23’...
*** Downloading ‘https://cache.nixos.org/nar/1jbcabc9wbmx10wlj2y1hc4c33pr6rkyj86548fcy18ay08s35xg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9c8ma97cis9gpmhmzscn0w4319zypnwz-fontconfig-ultimate-2016-04-23’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 346k 100 346k 0 0 346k 0 0:00:01 0:00:01 --:--:-- 223k
fetching path ‘/nix/store/md3fjgh7daysv7km50cwy4hah3khn43h-fonts.conf’...
*** Downloading ‘https://cache.nixos.org/nar/0bgh9ijff63mjp1jmzwsdv80hb971pbn84bl8dxa5cam6b8fyans.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/md3fjgh7daysv7km50cwy4hah3khn43h-fonts.conf’...
100 33848 100 33848 0 0 33848 0 0:00:01 --:--:-- 0:00:01 155k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 11972 100 11972 0 0 11972 0 0:00:01 --:--:-- 0:00:01 18139
fetching path ‘/nix/store/jxcdm12947i4xvpcwyhl5sw60b39rnd1-findutils-4.6.0-info’...
fetching path ‘/nix/store/x451jk1q0dadjic52qawhnwfv0f4a4sk-gawk-4.1.3’...
78 45.8M 78 36.0M 0 0 1759k 0 0:00:26 0:00:21 0:00:05 2317k
*** Downloading ‘https://cache.nixos.org/nar/04zjr3q9zn4z9p2q3l8wv253v6445a9zw5bzg17f61m1cl4gh4d0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jxcdm12947i4xvpcwyhl5sw60b39rnd1-findutils-4.6.0-info’...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1qpdrryipsxkkr23pd4na148zdk79v70aq9s778y4s0q17chwris.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x451jk1q0dadjic52qawhnwfv0f4a4sk-gawk-4.1.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 91748 100 91748 0 0 91748 0 0:00:01 --:--:-- 0:00:01 304k
fetching path ‘/nix/store/q2vcm9nf0c1ms8gdm4r76xlwdaniwki4-font-ultimate-conf’...
100 1968 100 1968 0 0 1968 0 0:00:01 --:--:-- 0:00:01 2733
*** Downloading ‘https://cache.nixos.org/nar/197p876n88wv2iwkkslwzvih6spszcd58srhhpmbgc0r8bpdh9pr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q2vcm9nf0c1ms8gdm4r76xlwdaniwki4-font-ultimate-conf’...
fetching path ‘/nix/store/1888amazy5mzkgj8pl5am0qkv7k6bn9n-gawk-4.1.3-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1zwv710q5f702y1xjr8mcr4487jizvzq2j67plg60y0s3qdx6bz5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1888amazy5mzkgj8pl5am0qkv7k6bn9n-gawk-4.1.3-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5572 100 5572 0 0 5572 0 0:00:01 --:--:-- 0:00:01 10473
82 45.8M 82 37.8M 0 0 1762k 0 0:00:26 0:00:22 0:00:04 2228k
fetching path ‘/nix/store/94pmx8vxavzjcn6lrcnym0ngbbhbpkwr-fontconfig-conf’...
*** Downloading ‘https://cache.nixos.org/nar/0bwznb7nls066cqi6y8d1p15wzcl3nf2fxnaha64dyss67h60kx4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/94pmx8vxavzjcn6lrcnym0ngbbhbpkwr-fontconfig-conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 428k 100 428k 0 0 428k 0 0:00:01 0:00:01 --:--:-- 266k
fetching path ‘/nix/store/90sqjv0ny5qmdbbbxasfmk9vkc3swn4v-gawk-4.1.3-man’...
*** Downloading ‘https://cache.nixos.org/nar/0hzbq133vv340y2z6d3gna90w7n1frilj08kwwyx3rqrdqcx7wlz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/90sqjv0ny5qmdbbbxasfmk9vkc3swn4v-gawk-4.1.3-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 370k 100 370k 0 0 370k 0 0:00:01 0:00:01 --:--:-- 288k
fetching path ‘/nix/store/gs36amglhgii6i9nb7wrlps2lnvcq4f6-gcc-5.4.0-lib’...
100 1012 100 1012 0 0 1012 0 0:00:01 --:--:-- 0:00:01 1449
fetching path ‘/nix/store/vrpginla4p1yk61llrn8vwjsdyhrbpz9-gcc-5.4.0-man’...
*** Downloading ‘https://cache.nixos.org/nar/1f1irxss5qnnpvnkpdbyv2sv7lqxnvrfzav76lc60v2ppzpyc4ym.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gs36amglhgii6i9nb7wrlps2lnvcq4f6-gcc-5.4.0-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0hxgrngd79lb88ygwh7wjgvhgsdprkj276z4a8qfic0z3742blh1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vrpginla4p1yk61llrn8vwjsdyhrbpz9-gcc-5.4.0-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 30076 100 30076 0 0 30076 0 0:00:01 --:--:-- 0:00:01 40643
fetching path ‘/nix/store/mm67qzf8qfmsk9ncr0swns3xwdnf204a-fontconfig-etc’...
*** Downloading ‘https://cache.nixos.org/nar/1hy4j10y0rd39bgpw2v32i4b7j2y4fj3nqcjs32s7h1kzgac8m5r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mm67qzf8qfmsk9ncr0swns3xwdnf204a-fontconfig-etc’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 9064 100 9064 0 0 9064 0 0:00:01 --:--:-- 0:00:01 16128
fetching path ‘/nix/store/bm052v0zqk8w4gvfwqacszb6b9kijcs4-glibc-2.24-bin’...
100 321k 100 321k 0 0 321k 0 0:00:01 0:00:01 --:--:-- 276k
fetching path ‘/nix/store/fppxbbq1max5f86kwm0sm3mxfy6vl3ab-glibc-locales-2.24’...
*** Downloading ‘https://cache.nixos.org/nar/12x11k7alawwrlgmb9bd5m9rwg8pm1q121vk50djqlv5yc0y17n8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bm052v0zqk8w4gvfwqacszb6b9kijcs4-glibc-2.24-bin’...
*** Downloading ‘https://cache.nixos.org/nar/06kng6lzs88p9d8d149cd11w7mnfyppq208m5w1qnhxbagan6baw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fppxbbq1max5f86kwm0sm3mxfy6vl3ab-glibc-locales-2.24’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 45.8M 100 45.8M 0 0 1805k 0 0:00:26 0:00:26 --:--:-- 2247k
fetching path ‘/nix/store/zklahbvk9idyjqn6qf667ac1n63yf3s8-gnumake-4.2.1’...
100 1046k 100 1046k 0 0 523k 0 0:00:02 0:00:02 --:--:-- 398k
100 662k 100 662k 0 0 662k 0 0:00:01 0:00:01 --:--:-- 356k
10 3435k 10 345k 0 0 345k 0 0:00:09 0:00:01 0:00:08 275kfetching path ‘/nix/store/iqp01gwbr5s916b8ws5p3rygixzjk655-firmware’...
fetching path ‘/nix/store/c6pcdai9nwd2zmcnbz96j239mgs61qxj-gnused-4.2.2’...
*** Downloading ‘https://cache.nixos.org/nar/07bqikasvdinpx0yhqjf77hhp1c7knq3fl33kxvw0qh4fwk88xqm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zklahbvk9idyjqn6qf667ac1n63yf3s8-gnumake-4.2.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0zwq3m6mnqajvf5qxkrz2nm01m33whkd0fyykxfnvzaysaq93fdn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/c6pcdai9nwd2zmcnbz96j239mgs61qxj-gnused-4.2.2’...
*** Downloading ‘https://cache.nixos.org/nar/0zz601lp390l7kf51qz6m5nxji6hjb8syzmxhh0qy3vffhp74ij8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/iqp01gwbr5s916b8ws5p3rygixzjk655-firmware’...
46 3435k 46 1594k 0 0 797k 0 0:00:04 0:00:02 0:00:02 707k % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3435k 100 3435k 0 0 1717k 0 0:00:02 0:00:02 --:--:-- 1211k
fetching path ‘/nix/store/ccxbc5jfsqs0x5wh26j4d1ayn7h53yfw-boehm-gc-7.2g’...
100 708 100 708 0 0 708 0 0:00:01 --:--:-- 0:00:01 983
fetching path ‘/nix/store/9rwlh5b1qm3azxsjl49f1fx18vd2s459-db-5.3.28’...
100 94616 100 94616 0 0 94616 0 0:00:01 --:--:-- 0:00:01 94805
35 235k 35 86671 0 0 86671 0 0:00:02 0:00:01 0:00:01 82701
fetching path ‘/nix/store/zrkfx96gkqmc0ybdlwkqbwr8vb7k9rfl-fftw-double-3.3.5’...
*** Downloading ‘https://cache.nixos.org/nar/1p2642pyk4npn4w7mw5vjiqnbamqbcwbp83crx2mna9s7m91mm4w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ccxbc5jfsqs0x5wh26j4d1ayn7h53yfw-boehm-gc-7.2g’...
*** Downloading ‘https://cache.nixos.org/nar/1wy6pyfh6shi0580lqj4xmjsyvb5nrwqk4im1g9vh1yqfk0cwwqb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9rwlh5b1qm3azxsjl49f1fx18vd2s459-db-5.3.28’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0b6n4k17klzmga6bx7l6hdr6z12rfjr1y9xc1dl4da3nf4mrwi0s.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zrkfx96gkqmc0ybdlwkqbwr8vb7k9rfl-fftw-double-3.3.5’...
100 235k 100 235k 0 0 235k 0 0:00:01 0:00:01 --:--:-- 185k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/8qwaxxhkd6fjiffh8df795d4401zzsgn-gmp-6.1.1’...
*** Downloading ‘https://cache.nixos.org/nar/0r1dadny2z5p5zwc9rp15crvia97b0jv1p5a38wk7i7i64fh3v8i.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8qwaxxhkd6fjiffh8df795d4401zzsgn-gmp-6.1.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 80148 100 80148 0 0 80148 0 0:00:01 --:--:-- 0:00:01 93740
fetching path ‘/nix/store/gmzmfhjibgl4mkxjq9h318mg1xpi3fz5-gnused-4.2.2-info’...
0 249k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1mhm813wndqhnriajc7qmh22cc8fp65q3xny2ssnldhljbqzh3la.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gmzmfhjibgl4mkxjq9h318mg1xpi3fz5-gnused-4.2.2-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 249k 100 249k 0 0 249k 0 0:00:01 0:00:01 --:--:-- 182k
fetching path ‘/nix/store/cj0zinnakxj5zd3fw8050l0ng5mlrwm5-gnutar-1.29’...
100 26140 100 26140 0 0 26140 0 0:00:01 --:--:-- 0:00:01 35661
fetching path ‘/nix/store/hpsibmnn10hvnjrnnqfh3b7rz5ffp04b-gnutar-1.29-info’...
*** Downloading ‘https://cache.nixos.org/nar/1jwdssrpz3h7k6cg08k7rvfvvlg162gvmar7k2r550jq2lb1d8yb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cj0zinnakxj5zd3fw8050l0ng5mlrwm5-gnutar-1.29’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/07mwmzcl578immi4m0cdl0ghfw9b7pjc8i7p7yn6ww2rvkgin3qk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hpsibmnn10hvnjrnnqfh3b7rz5ffp04b-gnutar-1.29-info’...
85 550k 85 472k 0 0 472k 0 0:00:01 0:00:01 --:--:-- 270k % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 550k 100 550k 0 0 550k 0 0:00:01 0:00:01 --:--:-- 299k
fetching path ‘/nix/store/c5y9w08xkiz6kvnscpjv3205gyr6iybz-gzip-1.8’...
*** Downloading ‘https://cache.nixos.org/nar/1g3fmbvv1m3d4132xcny8as4zsimqlydcgscs0yri20pqkn8fz38.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/c5y9w08xkiz6kvnscpjv3205gyr6iybz-gzip-1.8’...
100 889k 100 889k 0 0 444k 0 0:00:02 0:00:02 --:--:-- 428k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/xlg049ym6n8qkp2grv415ib6aac0vybb-gzip-1.8-info’...
100 146k 100 146k 0 0 146k 0 0:00:01 --:--:-- 0:00:01 441k
fetching path ‘/nix/store/1bwyw8iywr53mcdjyq931hwfgj8kn2x2-gzip-1.8-man’...
*** Downloading ‘https://cache.nixos.org/nar/1kf939y9dnir3zd63bh9cxhlyc3rxfcfv7rbmpghv92c56d0nqsf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xlg049ym6n8qkp2grv415ib6aac0vybb-gzip-1.8-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0fdqk4rps54hff2k0qhvb36dpd34bdrbrf8n5a3jh026n523ma34.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1bwyw8iywr53mcdjyq931hwfgj8kn2x2-gzip-1.8-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 14308 100 14308 0 0 14308 0 0:00:01 --:--:-- 0:00:01 88320
fetching path ‘/nix/store/h1yxx0d10n4lksj9hjr3997zxs5zml90-host-20000331’...
100 49708 100 49708 0 0 49708 0 0:00:01 --:--:-- 0:00:01 135k
fetching path ‘/nix/store/2igbp5cmafb3k80m8w9y9pa7chv9j0z2-iana-etc-2.30’...
100 12236 100 12236 0 0 12236 0 0:00:01 --:--:-- 0:00:01 67230
fetching path ‘/nix/store/d946v434am522fab312v0h6vi177cmza-initrd-kmod-blacklist-ubuntu’...
*** Downloading ‘https://cache.nixos.org/nar/0g10p2y3mnl69w1yymxs0qbxxll7v23y4v9s7v3i10p66dydh2n6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h1yxx0d10n4lksj9hjr3997zxs5zml90-host-20000331’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/15x2vg2gq9322b9fsnb4r4hywggs8z5qbnn165nnpv0wxr2wkc23.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2igbp5cmafb3k80m8w9y9pa7chv9j0z2-iana-etc-2.30’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/06dp41kiy4wsg68myn5r7rby2h5whdp7f524m5d0x6rvdfs7p9km.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/d946v434am522fab312v0h6vi177cmza-initrd-kmod-blacklist-ubuntu’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 495k 100 495k 0 0 495k 0 0:00:01 0:00:01 --:--:-- 323k
fetching path ‘/nix/store/29b4zlgc7550lyvj9d2v703b1xkly9w0-keymap’...
100 2092 100 2092 0 0 2092 0 0:00:01 --:--:-- 0:00:01 3401
100 53980 100 53980 0 0 53980 0 0:00:01 --:--:-- 0:00:01 70469
fetching path ‘/nix/store/xdqi412lfz1gn5i0qzskn2bffg8rczr9-kmod-debian-aliases-22-1.1.conf’...
fetching path ‘/nix/store/drjy2sp7rchn7cz6srh630h3a0n1pbrm-libICE-1.0.9’...
*** Downloading ‘https://cache.nixos.org/nar/1ng7rck05vrk3v6k2if6jd5psb9pqkx72mnsjb1lh65iy4y7l368.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/29b4zlgc7550lyvj9d2v703b1xkly9w0-keymap’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/15g58m5jqjfiyyjsdm7vqqqnnqh6x3dm5fg84ri26cha4ilmbq1k.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xdqi412lfz1gn5i0qzskn2bffg8rczr9-kmod-debian-aliases-22-1.1.conf’...
*** Downloading ‘https://cache.nixos.org/nar/18j6526kspnvfrmdqz2n8qvz4m52wgk4m6fnr1r2s7y8kyd0cvaf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/drjy2sp7rchn7cz6srh630h3a0n1pbrm-libICE-1.0.9’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 832 100 832 0 0 832 0 0:00:01 --:--:-- 0:00:01 5509
fetching path ‘/nix/store/195jpyav7kc75swh74fhkgmkn60mms52-libXau-1.0.8’...
100 472 100 472 0 0 472 0 0:00:01 --:--:-- 0:00:01 3006
fetching path ‘/nix/store/bg0k4wfhscg0wjwq6vrfnnpic95j703h-libXdmcp-1.1.2’...
*** Downloading ‘https://cache.nixos.org/nar/1smi8g4wwzrw470b55kqz7q6wjfy6d5yxf3rvxqnx7njiamrq7z2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/195jpyav7kc75swh74fhkgmkn60mms52-libXau-1.0.8’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/14wlrzmpyhf03fppxmcha7g39njh9fkg4rkzsblkq4p49cabv9kg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bg0k4wfhscg0wjwq6vrfnnpic95j703h-libXdmcp-1.1.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 173k 100 173k 0 0 173k 0 0:00:01 0:00:01 --:--:-- 142k
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/razdmip25hshgflm1z06pzlcmrndjzrf-libapparmor-2.10’...
*** Downloading ‘https://cache.nixos.org/nar/1kica8px9q5csgfm6f4d2iv7csyfa6k1b87ccfrhi29bbgf4ac5f.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/razdmip25hshgflm1z06pzlcmrndjzrf-libapparmor-2.10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 39332 100 39332 0 0 39332 0 0:00:01 --:--:-- 0:00:01 54027
fetching path ‘/nix/store/kkibj8cbp518kxkcxggdibyl2wnr9cx5-libcap-2.25-lib’...
100 8392 100 8392 0 0 8392 0 0:00:01 --:--:-- 0:00:01 15954
fetching path ‘/nix/store/v6vvirhpv8crvshd87ycpfcd28n9rwrs-libffi-3.2.1’...
100 5456 100 5456 0 0 5456 0 0:00:01 --:--:-- 0:00:01 9154
*** Downloading ‘https://cache.nixos.org/nar/0xmsw2gf5f8jq3qjl5mqazj7m7mmjqnqvs4qcqy7hakxj5fklx0r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kkibj8cbp518kxkcxggdibyl2wnr9cx5-libcap-2.25-lib’...
fetching path ‘/nix/store/adnla1w151sdirn0v4vs4v4m4m7xny82-libgpg-error-1.24’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1hs51zqi36n55dgrsy1aav8zb2g7y9b33y17fxa46y6vd7wlc28n.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v6vvirhpv8crvshd87ycpfcd28n9rwrs-libffi-3.2.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0q90wmn0wq6640sh6355pbydgma0lj0ikwfh8xviv5h896ilsfjy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/adnla1w151sdirn0v4vs4v4m4m7xny82-libgpg-error-1.24’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7260 100 7260 0 0 7260 0 0:00:01 --:--:-- 0:00:01 13595
fetching path ‘/nix/store/8vv3ci8a4hcp2zva8px2bnz7334rn9fw-libidn-1.33’...
100 85396 100 85396 0 0 85396 0 0:00:01 0:00:01 --:--:-- 84802
fetching path ‘/nix/store/ydkq5khi8vdnraibycsz00xy4gx7dvlf-libcap-2.25’...
*** Downloading ‘https://cache.nixos.org/nar/10p291d8m717jxp9bhhzzwjk327nl8spp79h1g5m5m31wbjkz24k.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8vv3ci8a4hcp2zva8px2bnz7334rn9fw-libidn-1.33’...
0 15684 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/11kwzqr3q06whsz8k93jp4gqpd2329w9wqy6sfa3g0jzipida000.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ydkq5khi8vdnraibycsz00xy4gx7dvlf-libcap-2.25’...
0 100k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 15684 100 15684 0 0 15684 0 0:00:01 --:--:-- 0:00:01 22896
fetching path ‘/nix/store/m214ag9x7ykbfcaccfr9fs99k2f64wlv-libmnl-1.0.4’...
*** Downloading ‘https://cache.nixos.org/nar/02pd0c1gzimxm5jig15mydyrx1sf3ynny81jrizh3djyhbl2i3x2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m214ag9x7ykbfcaccfr9fs99k2f64wlv-libmnl-1.0.4’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 100k 100 100k 0 0 100k 0 0:00:01 0:00:01 --:--:-- 97k
fetching path ‘/nix/store/ld4vciw5rdlz9ld2z9i9sc119fjyf1c1-libpipeline-1.4.1’...
100 70624 100 70624 0 0 70624 0 0:00:01 --:--:-- 0:00:01 131k
fetching path ‘/nix/store/6npq3r45lmwdyd978g4wl0cqqg9l0dzz-libgcrypt-1.7.3’...
100 11380 100 11380 0 0 11380 0 0:00:01 --:--:-- 0:00:01 20035
fetching path ‘/nix/store/55r7n6zcbg02zg2jh6m06v7cv7xhpp43-libsamplerate-0.1.8’...
*** Downloading ‘https://cache.nixos.org/nar/089lvvfyf68d68zcccggvf9qz3hzx3537wsqf9rjcdk3kz7bc18r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ld4vciw5rdlz9ld2z9i9sc119fjyf1c1-libpipeline-1.4.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0xc7p4kglikchx334wis3srhldsf86dii8nx4bbhkavixapmxx61.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6npq3r45lmwdyd978g4wl0cqqg9l0dzz-libgcrypt-1.7.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0mv2ap5v4882hmvscpwgmqav24svz2f7zfalbvgr7yr4cwrp90z7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/55r7n6zcbg02zg2jh6m06v7cv7xhpp43-libsamplerate-0.1.8’...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 9712 100 9712 0 0 9712 0 0:00:01 --:--:-- 0:00:01 16377
fetching path ‘/nix/store/afacmagwdw2pavmgylnn677kz8j2crkc-libseccomp-2.3.1’...
*** Downloading ‘https://cache.nixos.org/nar/01skxf6z3y8mgdc0w3l74cg6ggznkz3iczxx6m0js5x5ha2jv725.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/afacmagwdw2pavmgylnn677kz8j2crkc-libseccomp-2.3.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 28804 100 28804 0 0 28804 0 0:00:01 --:--:-- 0:00:01 36368
fetching path ‘/nix/store/j0wm8l2560232pfdkayblrmiwass6l6q-libnftnl-1.0.6’...
*** Downloading ‘https://cache.nixos.org/nar/0wra6pkmzz84dkrahq9cam1wsdxg0933xmk42z3bxma4lnz34rah.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j0wm8l2560232pfdkayblrmiwass6l6q-libnftnl-1.0.6’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 46584 100 46584 0 0 46584 0 0:00:01 --:--:-- 0:00:01 66264
fetching path ‘/nix/store/l624w6i6ai5jb5m44jb1r06b0q7mjhrb-libsodium-1.0.10’...
14 951k 14 134k 0 0 134k 0 0:00:07 --:--:-- 0:00:07 137k
*** Downloading ‘https://cache.nixos.org/nar/0c3641z514r84ycmf1asx1ykvxx5gp5ss54c0qycli3xb2789ds1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l624w6i6ai5jb5m44jb1r06b0q7mjhrb-libsodium-1.0.10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 374k 100 374k 0 0 374k 0 0:00:01 0:00:01 --:--:-- 258k
fetching path ‘/nix/store/v9j9p7brc3fnv5wf6k7qph4xiibr59mx-libtasn1-4.10’...
*** Downloading ‘https://cache.nixos.org/nar/1mivpsqahfrwvvgm916fa0apjrqqzx6hk8y4859v05lfqv03m6bb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v9j9p7brc3fnv5wf6k7qph4xiibr59mx-libtasn1-4.10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 54824 100 54824 0 0 54824 0 0:00:01 --:--:-- 0:00:01 74590
fetching path ‘/nix/store/sa5315dz934rrylpharsbmw0phqfcd2s-libunistring-0.9.6’...
*** Downloading ‘https://cache.nixos.org/nar/1fyycar8j5jy2x4dv15rkw4p29pz1jm8diydc18dl3gf0r09zd89.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sa5315dz934rrylpharsbmw0phqfcd2s-libunistring-0.9.6’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 951k 100 951k 0 0 951k 0 0:00:01 0:00:01 --:--:-- 488k
fetching path ‘/nix/store/gmsyb2glj4dpv4h7b7cm42qwd6m3w9kq-iptables-1.6.0’...
100 32684 100 32684 0 0 32684 0 0:00:01 --:--:-- 0:00:01 67809
100 146k 100 146k 0 0 146k 0 0:00:01 0:00:01 --:--:-- 146k
fetching path ‘/nix/store/kpw1kl6wj7727cj88qnwkqcdnvll0pgb-libxcb-1.12’...
fetching path ‘/nix/store/08a1ii9zz438985fkcfpv8bxb9fxa652-linux-headers-4.4.10’...
*** Downloading ‘https://cache.nixos.org/nar/0zy47dgcxxjhc0qf8b3m61j59sns7zvllvsg0fpy363db4fir7wm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gmsyb2glj4dpv4h7b7cm42qwd6m3w9kq-iptables-1.6.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/15mhg51q0cmmkqpdkmkk5jk3pzk25klasjv39iy7kjixp7ljkaq7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kpw1kl6wj7727cj88qnwkqcdnvll0pgb-libxcb-1.12’...
*** Downloading ‘https://cache.nixos.org/nar/0rqfsx21wmhjv2bdzd1jdlmklx85bxdqpra9a1az5gmyrp8hch7y.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/08a1ii9zz438985fkcfpv8bxb9fxa652-linux-headers-4.4.10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 164k 100 164k 0 0 164k 0 0:00:01 0:00:01 --:--:-- 142k
fetching path ‘/nix/store/zln91qagx7nal2mqs92wivw2mnil551v-local-cmds’...
100 451k 100 451k 0 0 451k 0 0:00:01 0:00:01 --:--:-- 263k
fetching path ‘/nix/store/f1jd0cj6zzlz3q5ms0qh5a6ack0rsj9p-libX11-1.6.4’...
100 313k 100 313k 0 0 313k 0 0:00:01 0:00:01 --:--:-- 234k
fetching path ‘/nix/store/q5l021ycq1b9sgyrk65lbkc5a7xsh2d0-lz4-131’...
*** Downloading ‘https://cache.nixos.org/nar/1y58zw8bn7mvh2k4q43dsxd3rnvy99951ryl5ab2xff881xmmrq0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zln91qagx7nal2mqs92wivw2mnil551v-local-cmds’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1shwhz02klij17nqr7adak426dfsl0xk7pfddmx4nvz4iril5pz9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f1jd0cj6zzlz3q5ms0qh5a6ack0rsj9p-libX11-1.6.4’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0qqbplg7nwap2776ygrnzb0xaiv0lyrbjq299drh5nlmairaybll.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q5l021ycq1b9sgyrk65lbkc5a7xsh2d0-lz4-131’...
100 124 100 124 0 0 124 0 0:00:01 --:--:-- 0:00:01 832
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/p94ahilfcq0xkvxp4kr01q2m2a3hhb7s-iproute2-4.5.0’...
*** Downloading ‘https://cache.nixos.org/nar/04ac8dmg3djr5j33xgc60v3pacswfgc1nsnsvxg4rh16hccxdp5x.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/p94ahilfcq0xkvxp4kr01q2m2a3hhb7s-iproute2-4.5.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 763k 100 763k 0 0 763k 0 0:00:01 0:00:01 --:--:-- 409k
fetching path ‘/nix/store/9bb5zn3fs3d53p0yyf3gk17xdn4gylp1-lzo-2.09’...
*** Downloading ‘https://cache.nixos.org/nar/1wq3f7qqgiiajhv1d1wr8kbfm98hhhwbc69iawhq513vd4ql8gi9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9bb5zn3fs3d53p0yyf3gk17xdn4gylp1-lzo-2.09’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 53476 100 53476 0 0 53476 0 0:00:01 --:--:-- 0:00:01 62399
fetching path ‘/nix/store/awf0miikacl11agx5bwbwds66xazcr8v-glibc-2.24-dev’...
*** Downloading ‘https://cache.nixos.org/nar/0w3nmm18x4p79b7d63c066wz08vpgnqd8vx39pld8kx170ddim3b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/awf0miikacl11agx5bwbwds66xazcr8v-glibc-2.24-dev’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 77560 100 77560 0 0 77560 0 0:00:01 --:--:-- 0:00:01 83848
fetching path ‘/nix/store/5dp83mndkfmjswpb7a3c0c142wi2n49i-mdadm-3.3.4’...
0 372k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1ai9bz125vrrbyl11v99vr0ghn673ijhbx8j39sv9q3dk4z6w5sd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5dp83mndkfmjswpb7a3c0c142wi2n49i-mdadm-3.3.4’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 649k 100 649k 0 0 649k 0 0:00:01 0:00:01 --:--:-- 360k
100 542k 100 542k 0 0 542k 0 0:00:01 0:00:01 --:--:-- 340k
fetching path ‘/nix/store/sdgwwaks9cnkga9zz7bra8pg0wpprijg-mounts.sh’...
fetching path ‘/nix/store/h9z832pqgcn7dnkqkmp4pwvmbvy0yq89-nano-2.6.3-info’...
*** Downloading ‘https://cache.nixos.org/nar/0c9hzz18kzv702cqii09438z56a0drsxbsmkkfw16dcvsv4zwiiy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sdgwwaks9cnkga9zz7bra8pg0wpprijg-mounts.sh’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/11pnaslpykr995lyx8hgkhwbx9lixl2gwchpapx4nmicfx0xvri4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h9z832pqgcn7dnkqkmp4pwvmbvy0yq89-nano-2.6.3-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 320k 100 320k 0 0 320k 0 0:00:01 --:--:-- 0:00:01 531k
54 372k 54 203k 0 0 203k 0 0:00:01 0:00:01 --:--:-- 158k
fetching path ‘/nix/store/9rlzwmq480mc1pvnrxl6f8vd2pabgldh-libXcomposite-0.4.4’...
100 288 100 288 0 0 288 0 0:00:01 --:--:-- 0:00:01 875
fetching path ‘/nix/store/6firznr8pfjy4m37qk7ys67xbbvg3cb4-libXext-1.3.3’...
100 372k 100 372k 0 0 372k 0 0:00:01 0:00:01 --:--:-- 252k
*** Downloading ‘https://cache.nixos.org/nar/0zykq2irgbcyi4cc9c86jf08ywlha7x0snbc07gz3vnpma74rwln.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9rlzwmq480mc1pvnrxl6f8vd2pabgldh-libXcomposite-0.4.4’...
fetching path ‘/nix/store/i1s6x7jqrh5v4qx56ip0wlq3x647zjw7-libXfixes-5.0.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1my2n0y025349nbyxm6xpld5pzl0j79b77gncbn8ca6xqav0bcvd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6firznr8pfjy4m37qk7ys67xbbvg3cb4-libXext-1.3.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0pcqlsg2lz7lzpy6k11ld9qnm36yr4312xw5i9x3fq4ca0v7iahs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/i1s6x7jqrh5v4qx56ip0wlq3x647zjw7-libXfixes-5.0.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 15004 100 15004 0 0 15004 0 0:00:01 --:--:-- 0:00:01 18033
fetching path ‘/nix/store/4i6wmdy31pcjj8xj62g22qxk606b76sm-libXrender-0.9.10’...
*** Downloading ‘https://cache.nixos.org/nar/1k10ygmdy6640ybh9nxhpg89kgq1j3w6cib6p3ggklkx73rzdbax.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4i6wmdy31pcjj8xj62g22qxk606b76sm-libXrender-0.9.10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 4392 100 4392 0 0 4392 0 0:00:01 --:--:-- 0:00:01 8073
fetching path ‘/nix/store/5720hnm4l2sa7wj5d5i2pv5rkxy29yj4-ncurses-6.0’...
*** Downloading ‘https://cache.nixos.org/nar/06czjwy0zrj520prdf4a7amfbjy2vh0lc15l90b6cqggddq3igsc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5720hnm4l2sa7wj5d5i2pv5rkxy29yj4-ncurses-6.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 25404 100 25404 0 0 25404 0 0:00:01 --:--:-- 0:00:01 41307
fetching path ‘/nix/store/843w2kwl2rfzwmyxdfk397bnl4bnhw32-ncurses-6.0-man’...
100 7840 100 7840 0 0 7840 0 0:00:01 --:--:-- 0:00:01 13517
fetching path ‘/nix/store/xzlrn26k4id1x93r3ij72xdmylkzlzaq-neo-2476’...
*** Downloading ‘https://cache.nixos.org/nar/1ijr3qy5h33rrk6mnrnjii61vglz2mamsa2hshn3gaaqmmqjclzx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/843w2kwl2rfzwmyxdfk397bnl4bnhw32-ncurses-6.0-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1n8wfyqd5ngzxfvajn1q0y790d7hfkrdjs6k0mfn260syr8zgin8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xzlrn26k4id1x93r3ij72xdmylkzlzaq-neo-2476’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7112 100 7112 0 0 7112 0 0:00:01 --:--:-- 0:00:01 48054
100 16456 100 16456 0 0 16456 0 0:00:01 --:--:-- 0:00:01 27335
fetching path ‘/nix/store/qxjp0f48s6q8yk9007bi3zwzz0d254fz-libXdamage-1.1.4’...
fetching path ‘/nix/store/37wsnhbvbbkd7s9r2bpjah1ymx8sg4vh-libXcursor-1.1.14’...
*** Downloading ‘https://cache.nixos.org/nar/0ibviszvw4swz29i6pfds23sy6md01sw6wkv8v8knybj0ilyi176.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qxjp0f48s6q8yk9007bi3zwzz0d254fz-libXdamage-1.1.4’...
*** Downloading ‘https://cache.nixos.org/nar/0x03cqn1la3lizkx1nx3ba5is859mswqxh08ij9gw6b0lr7f92ps.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/37wsnhbvbbkd7s9r2bpjah1ymx8sg4vh-libXcursor-1.1.14’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 78168 100 78168 0 0 78168 0 0:00:01 --:--:-- 0:00:01 80585
fetching path ‘/nix/store/pvq9cz0zkdi9m6aa0kizcr1bwdrg6fgq-libXrandr-1.5.1’...
100 4636 100 4636 0 0 4636 0 0:00:01 --:--:-- 0:00:01 6492
fetching path ‘/nix/store/n46pca88k2avx96q9zp6927xq3apv2xd-net-tools-1.60_p20120127084908’...
*** Downloading ‘https://cache.nixos.org/nar/0yjsx75cjdmsq02dmqqi6nw0j5xv6r26r60rq384k78rfcascn0s.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/pvq9cz0zkdi9m6aa0kizcr1bwdrg6fgq-libXrandr-1.5.1’...
100 18700 100 18700 0 0 18700 0 0:00:01 --:--:-- 0:00:01 22916
fetching path ‘/nix/store/5xww3qm1jiqp7gsawkw00ajn7h331g8i-netcat-gnu-0.7.1’...
*** Downloading ‘https://cache.nixos.org/nar/1mjlyrxsr3d9an3s240k7xlnl36y82p2ch0gzg0m99j4vgl2vi1z.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n46pca88k2avx96q9zp6927xq3apv2xd-net-tools-1.60_p20120127084908’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 382k 100 382k 0 0 382k 0 0:00:01 0:00:01 --:--:-- 250k
% Total % Received % Xferd Average Speed Time Time Time C
*** Downloading ‘https://cache.nixos.org/nar/16d4bwqm8cw493pkg7wifaxvg6lqb8xi8cyfflb74g58vfj4d57a.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5xww3qm1jiqp7gsawkw00ajn7h331g8i-netcat-gnu-0.7.1’...
urrent
Dload Upload Total % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/qj548x41sl5q2lk8f8nnn49y20yn2cip-nettle-3.3’...
*** Downloading ‘https://cache.nixos.org/nar/0mslcw3d8h5ilba3qwmgrp19kw1d1pn0hpmp8x2hp2x4l8a1zlzd.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qj548x41sl5q2lk8f8nnn49y20yn2cip-nettle-3.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 15548 100 15548 0 0 15548 0 0:00:01 --:--:-- 0:00:01 21153
fetching path ‘/nix/store/gp5n5nm2g7yk776vw9lawfw4jnsmfxjw-less-481’...
100 29272 100 29272 0 0 29272 0 0:00:01 --:--:-- 0:00:01 39717
fetching path ‘/nix/store/iz00i4pj2mhcpd9f0adz4y8c5qfdvigw-libedit-20160903-3.1’...
*** Downloading ‘https://cache.nixos.org/nar/1qvinhlbdaqqxjxpm5zxp1hd3px4fcl9bb3qgilhrwcpm6v6jzp5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gp5n5nm2g7yk776vw9lawfw4jnsmfxjw-less-481’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0mvj97zckaxypjv56bcdfhdy29s8d9yv7f7yjm3awvyn6j59v20b.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/iz00i4pj2mhcpd9f0adz4y8c5qfdvigw-libedit-20160903-3.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 110k 100 110k 0 0 110k 0 0:00:01 0:00:01 --:--:-- 108k
fetching path ‘/nix/store/gbayld2hmashk004xph8qhp1n6p9cpgk-nano-2.6.3’...
*** Downloading ‘https://cache.nixos.org/nar/0j5ycw5g8f7vr4rvxlqrr1vv1n737275s7hxj7v31iq03ah24mgl.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gbayld2hmashk004xph8qhp1n6p9cpgk-nano-2.6.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 98k 100 98k 0 0 98k 0 0:00:01 --:--:-- 0:00:01 153k
fetching path ‘/nix/store/h6dqjcrfz499sy9a8kb1pcv3f0n60qjf-nghttp2-1.14.1-lib’...
0 87584 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0hhp16iliib586ykqd1bf3qhfwpq8sb7japzfjmbh3bmf1jfarrs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h6dqjcrfz499sy9a8kb1pcv3f0n60qjf-nghttp2-1.14.1-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 215k 100 215k 0 0 215k 0 0:00:01 0:00:01 --:--:-- 177k
fetching path ‘/nix/store/kynkqgcpjmk7g3immyy8r3n5s2nq0csd-nix.conf’...
100 87584 100 87584 0 0 87584 0 0:00:01 --:--:-- 0:00:01 99867
fetching path ‘/nix/store/5p9sfjk5b95mfcq7s7fvx4b90njam05l-nixos-artwork-2015-02-27’...
*** Downloading ‘https://cache.nixos.org/nar/1pck5bjn14n3svs1r3ir6klanap0iqwl4z7w8b5jpd93dx2i2mvz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kynkqgcpjmk7g3immyy8r3n5s2nq0csd-nix.conf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0fgimnjv2grw2vmb65j8w23hr41hivj6yqmsl1bf16yrsw8nny8r.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5p9sfjk5b95mfcq7s7fvx4b90njam05l-nixos-artwork-2015-02-27’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 240 100 240 0 0 240 0 0:00:01 --:--:-- 0:00:01 1333
fetching path ‘/nix/store/n1hh0ia6kdqjxb332li930yhwps8930n-nixos-build-vms’...
*** Downloading ‘https://cache.nixos.org/nar/14rp7939vi2v21yikgank4jdw224xqif4lb5j5n4p5vx2ir2q1fq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/n1hh0ia6kdqjxb332li930yhwps8930n-nixos-build-vms’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 58708 100 58708 0 0 58708 0 0:00:01 --:--:-- 0:00:01 73568
fetching path ‘/nix/store/d9ibgrwjb6q2i5h8s85a135cclgx6wpz-nixos-manpages’...
100 528 100 528 0 0 528 0 0:00:01 --:--:-- 0:00:01 931
fetching path ‘/nix/store/2cc8arbak0v93xwxpkckyvid00q1hypz-nixos-manual’...
85 375k 85 321k 0 0 321k 0 0:00:01 0:00:01 --:--:-- 223k
*** Downloading ‘https://cache.nixos.org/nar/1mg4xsg7gfp98nq5pgz4biiri77kzkwhl6rw3vx2svd0nic6n4cc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/d9ibgrwjb6q2i5h8s85a135cclgx6wpz-nixos-manpages’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 375k 100 375k 0 0 375k 0 0:00:01 0:00:01 --:--:-- 245k
100 732 100 732 0 0 732 0 0:00:01 --:--:-- 0:00:01 1876
fetching path ‘/nix/store/a4gqw44fc067l5gr730wcpi7whrpch3h-nixos-option’...
fetching path ‘/nix/store/k9iy4w82dx4pwfbjybmjj1xqkbqv21x8-nixos-version’...
*** Downloading ‘https://cache.nixos.org/nar/1xx02c3m8lwnwy74q78zb3iwsf1jwinq6b4wfr0985p1izh5w4xr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2cc8arbak0v93xwxpkckyvid00q1hypz-nixos-manual’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/16p0y8wijab8n7k28giin31g7g40g009qqy0ykbbw4i08xl911xb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/a4gqw44fc067l5gr730wcpi7whrpch3h-nixos-option’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0ga7wknhnhci3xq4g0b39vnwb98iycyqgl1vvkv8q051w5rcnhna.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k9iy4w82dx4pwfbjybmjj1xqkbqv21x8-nixos-version’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2828 100 2828 0 0 2828 0 0:00:01 --:--:-- 0:00:01 4892
fetching path ‘/nix/store/r884jyaj1mgihn736d8rqjsf6cgc1rbm-nspr-4.13.1’...
100 384 100 384 0 0 384 0 0:00:01 --:--:-- 0:00:01 676
fetching path ‘/nix/store/8y1rlgghm2i7dily9ahlxnfkkrbq0fsn-nss-cacert-3.28.1’...
*** Downloading ‘https://cache.nixos.org/nar/1amxwyvlz3kzakf2s6vanacr82kvsq4jj8ws5ig7grsnfhhws4hp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r884jyaj1mgihn736d8rqjsf6cgc1rbm-nspr-4.13.1’...
*** Downloading ‘https://cache.nixos.org/nar/0b9k6gs297qalr1fbx1bfs8sv4b5w142vfzc6z6w7mknyqr58a94.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8y1rlgghm2i7dily9ahlxnfkkrbq0fsn-nss-cacert-3.28.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 168k 100 168k 0 0 168k 0 0:00:01 0:00:01 --:--:-- 145k-- 0:00:02 73060
fetching path ‘/nix/store/8yp50gnnibbbmg3b82drqrra8rwzsspq-openresolv-3.8.1’...
*** Downloading ‘https://cache.nixos.org/nar/1n249hpkmcrcbcivgm6420gi8sb8ikyaljk3xk2yxxrx5mfn9jzb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8yp50gnnibbbmg3b82drqrra8rwzsspq-openresolv-3.8.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 283k 100 283k 0 0 283k 0 0:00:01 0:00:01 --:--:-- 184k
fetching path ‘/nix/store/cj7j0yx3dm3d8g5dsass0yfzrrjn0q5n-openssl-1.0.2k’...
*** Downloading ‘https://cache.nixos.org/nar/0wn0j8j9ny4242aas74r3x05yk1qbkdhcbz6rghkqf2zmb2xacp7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cj7j0yx3dm3d8g5dsass0yfzrrjn0q5n-openssl-1.0.2k’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 18704 100 18704 0 0 18704 0 0:00:01 --:--:-- 0:00:01 26873
fetching path ‘/nix/store/2qcqnjg57a9j2q3j0wsg8pyxvc07s4a8-p11-kit-0.23.2’...
100 105k 100 105k 0 0 105k 0 0:00:01 0:00:01 --:--:-- 99911
fetching path ‘/nix/store/krskgwnnd18c6wzfwnf0clqqdirpkl1h-patch-2.7.5’...
100 145k 100 145k 0 0 145k 0 0:00:01 0:00:01 --:--:-- 133k
fetching path ‘/nix/store/91gq1r39y4yfv4k95vl9szw1sg7v9rmg-patchelf-0.9’...
*** Downloading ‘https://cache.nixos.org/nar/0cqsp5gddsb0rjrrglc0cjajv6158f5fi295d02lfrklb5sdi4qb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2qcqnjg57a9j2q3j0wsg8pyxvc07s4a8-p11-kit-0.23.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/197d8drhqx9qs0p0aipfxva8vma8w939zq2kac0xz9iys4c5jmxi.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/krskgwnnd18c6wzfwnf0clqqdirpkl1h-patch-2.7.5’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0vci3dj91xaxsp32s3is9shhh5awd9yiv5jcbpzq77rwq6n82xv4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/91gq1r39y4yfv4k95vl9szw1sg7v9rmg-patchelf-0.9’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 47348 100 47348 0 0 47348 0 0:00:01 --:--:-- 0:00:01 58310
fetching path ‘/nix/store/7m2ch0nyd74y3p8qbzrj3rnz7k81i54v-paxctl-0.9’...
*** Downloading ‘https://cache.nixos.org/nar/0da7w8r45qbf73ag8z73vzbg1bzwr8zs01zvrmj8gqa5i63rf7kk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7m2ch0nyd74y3p8qbzrj3rnz7k81i54v-paxctl-0.9’...
100 86324 100 86324 0 0 86324 0 0:00:01 --:--:-- 0:00:01 91059
fetching path ‘/nix/store/svggvjw763391nkbdf644gsawgz3hfjp-pcre-8.40’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/02hsni7szdwq4x709nqlmk1j0wrzjgjipbd7py44701h2z0kpj75.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/svggvjw763391nkbdf644gsawgz3hfjp-pcre-8.40’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 177k 100 177k 0 0 177k 0 0:00:01 0:00:01 --:--:-- 147k
fetching path ‘/nix/store/lbxsxyjfgakyyw0hp4yi0al3g7aq04m1-perl-5.22.2’...
*** Downloading ‘https://cache.nixos.org/nar/1namjwy0v269sfwxm6hmsfrn96gi93j9r31rciykicbm0qcf420m.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/lbxsxyjfgakyyw0hp4yi0al3g7aq04m1-perl-5.22.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 8768 100 8768 0 0 8768 0 0:00:01 --:--:-- 0:00:01 14886
fetching path ‘/nix/store/wg81575n8cc36nj0c40qvi2mdfjhcqs6-perl-List-Compare-0.53’...
*** Downloading ‘https://cache.nixos.org/nar/1mdckb9wlhfkk6761b4939vdxxcmbqy7hrarrav0dxcj1dh0d2by.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wg81575n8cc36nj0c40qvi2mdfjhcqs6-perl-List-Compare-0.53’...
100 1043k 100 1043k 0 0 521k 0 0:00:02 0:00:02 --:--:-- 508k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/jdp0dbxb9kiql25j6rfxvxl9smhjq36d-perl-XML-NamespaceSupport-1.11’...
0 153k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/00gm6j6n6vx37as90wjnf3jd7nbxrlfy9xmjjdq0mi2ah7k44rda.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jdp0dbxb9kiql25j6rfxvxl9smhjq36d-perl-XML-NamespaceSupport-1.11’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 29540 100 29540 0 0 29540 0 0:00:01 --:--:-- 0:00:01 64780
fetching path ‘/nix/store/g1nwg4q7svjr6xjl530609s70rr7asjf-iputils-20151218’...
100 153k 100 153k 0 0 153k 0 0:00:01 0:00:01 --:--:-- 129k
fetching path ‘/nix/store/2l6lq1xd2nfbsivcm4wk4iqy6v5wqjd3-libevent-2.0.22’...
*** Downloading ‘https://cache.nixos.org/nar/14xnq7qyrkh08gwpmnmyzz7wfbfwq1jk6d89ma2hv8rws4ycrqrj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/g1nwg4q7svjr6xjl530609s70rr7asjf-iputils-20151218’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5344 100 5344 0 0 5344 0 0:00:01 --:--:-- 0:00:01 9734
fetching path ‘/nix/store/zwr4gj1xj67iifpa5mixwz5az7k0j1c4-gnugrep-2.25’...
*** Downloading ‘https://cache.nixos.org/nar/1jrbjil2x7fn561lqjnxk5m6zkhbx7yg96yz4vybpyf7xsw0pzva.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2l6lq1xd2nfbsivcm4wk4iqy6v5wqjd3-libevent-2.0.22’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0jqwvagkch556r5xrfl61b9fklcf6vlfgrbhany6q5i9zs5ffipi.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zwr4gj1xj67iifpa5mixwz5az7k0j1c4-gnugrep-2.25’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 88332 100 88332 0 0 88332 0 0:00:01 --:--:-- 0:00:01 127k
fetching path ‘/nix/store/88rcm5cvzx57qvrisln9kr3dm211bs76-perl-XML-SAX-0.96’...
0 156k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/169lz44hbw28rvs56ya2lpqi219rbdaw2kardqjziyq23jikpbc4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/88rcm5cvzx57qvrisln9kr3dm211bs76-perl-XML-SAX-0.96’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 156k 100 156k 0 0 156k 0 0:00:01 0:00:01 --:--:-- 135k
fetching path ‘/nix/store/rkr0s2vhkhj6xmskmk2vxjgs0xhabq50-procps-3.3.11’...
100 172k 100 172k 0 0 172k 0 0:00:01 0:00:01 --:--:-- 154k
fetching path ‘/nix/store/jqvlnv2yrznm3j1k0bifa1i8b4k590nb-readline-6.3p08’...
0 32088 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1cz5vg69gdnp3h9gw49b30z37v2373pp2vr6brmi57xl546kfpbw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rkr0s2vhkhj6xmskmk2vxjgs0xhabq50-procps-3.3.11’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 32088 100 32088 0 0 32088 0 0:00:01 --:--:-- 0:00:01 43245
fetching path ‘/nix/store/3vzff9jqsh2jky54jbzkir801y352d0h-gnugrep-2.25-info’...
*** Downloading ‘https://cache.nixos.org/nar/02ghhn45l98nalzvwx6343in12gv2336x0jvxg0hkg9cp046xynm.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jqvlnv2yrznm3j1k0bifa1i8b4k590nb-readline-6.3p08’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/06lrbvk9pdfw2j4ikp3cg5ylvd1m183mwzik15q9xwdppv86d1cr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3vzff9jqsh2jky54jbzkir801y352d0h-gnugrep-2.25-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 25620 100 25620 0 0 25620 0 0:00:01 --:--:-- 0:00:01 28372
fetching path ‘/nix/store/sqvskdzyak7p1qwzrpbxpjaxacy06amr-kmod-blacklist-3ubuntu1’...
*** Downloading ‘https://cache.nixos.org/nar/13gf4dmx5b4p3w80cfyasxwynfcmkcg3ay3w0s39d8zx1xhqzx4j.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/sqvskdzyak7p1qwzrpbxpjaxacy06amr-kmod-blacklist-3ubuntu1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 108k 100 108k 0 0 108k 0 0:00:01 0:00:01 --:--:-- 90712
fetching path ‘/nix/store/yjnsv46czffz2wgfwhqawgnpbisikzh6-readonly-mountpoint’...
*** Downloading ‘https://cache.nixos.org/nar/16j7r053988x1zq4ybfyysla6qfj88ys6q9dldmzdy1x6ifm02rw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/yjnsv46czffz2wgfwhqawgnpbisikzh6-readonly-mountpoint’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 309k 100 309k 0 0 309k 0 0:00:01 0:00:01 --:--:-- 185k
fetching path ‘/nix/store/7y6azp3wqbbf1wldyyam9zj49s8v09rp-bash-4.3-p48’...
*** Downloading ‘https://cache.nixos.org/nar/12p8qx6xm8zw3wm2gd45xfqsqaqyhb87pf5jvlfxhvsgzgi08vg8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7y6azp3wqbbf1wldyyam9zj49s8v09rp-bash-4.3-p48’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7599k 100 7599k 0 0 1899k 0 0:00:04 0:00:04 --:--:-- 1742k
fetching path ‘/nix/store/j6jwrfjmnz0mjyja57h9drcfayw13a84-rng-tools-5’...
100 2400 100 2400 0 0 2400 0 0:00:01 --:--:-- 0:00:01 4088
100 2260 100 2260 0 0 2260 0 0:00:01 --:--:-- 0:00:01 3419
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/nhjqfanl5x8cahbvj8plpln9jms0llw8-groff-1.22.3’...
fetching path ‘/nix/store/wny27rw4vd8k83869danzm4zl3m83daw-nixos-generate-config’...
*** Downloading ‘https://cache.nixos.org/nar/0n80fk5b03n81mfqkbralmvhp3zq3xp1m3pza30x47xf0f2s6rkk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wny27rw4vd8k83869danzm4zl3m83daw-nixos-generate-config’...
*** Downloading ‘https://cache.nixos.org/nar/0bxlblq7hq14lrz2rd37spjk46aqc542zf8hs38xnzs2v899l7cx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j6jwrfjmnz0mjyja57h9drcfayw13a84-rng-tools-5’...
*** Downloading ‘https://cache.nixos.org/nar/159yrjhkdn876bjd6x734dd8h0ijasvvx1visml56f46c4yw5wv4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/nhjqfanl5x8cahbvj8plpln9jms0llw8-groff-1.22.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5924 100 5924 0 0 5924 0 0:00:01 --:--:-- 0:00:01 9679 0 5924 0 0:00:01 --:--:-- 0:00:01 10091
fetching path ‘/nix/store/8yfvz914721764q6sb4mf5bvkaghfy8f-ntp-4.2.8p10’...
100 16244 100 16244 0 0 16244 0 0:00:01 --:--:-- 0:00:01 23106
fetching path ‘/nix/store/60qwqs7w6sdgpwpbydcfmq66dsljzf5w-nuke-references’...
*** Downloading ‘https://cache.nixos.org/nar/0fsq63nnsnzh1szn1wgpv3hh5jsqianaxkn1vqmb4igkadj74c8m.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8yfvz914721764q6sb4mf5bvkaghfy8f-ntp-4.2.8p10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0b3rw1qhdd16z2bjx84pp118mw1lxhn9cvvh0lx1p5xy7fxizlw1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/60qwqs7w6sdgpwpbydcfmq66dsljzf5w-nuke-references’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 620 100 620 0 0 620 0 0:00:01 --:--:-- 0:00:01 1109
fetching path ‘/nix/store/s3wn9rgnn2sc4aqdg491kk1w447w5l3x-openssl-1.0.2k-bin’...
*** Downloading ‘https://cache.nixos.org/nar/02w717602356rbbhjjjmmrvxlddvw6msfp1kn1ff8lpip3nj366f.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/s3wn9rgnn2sc4aqdg491kk1w447w5l3x-openssl-1.0.2k-bin’...
100 877k 100 877k 0 0 438k 0 0:00:02 0:00:02 --:--:-- 427k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/6k20svx8f5rjgb2bb16fpahza9azdhrq-perl-5.22.2-man’...
5 615k 5 34445 0 0 34445 0 0:00:18 --:--:-- 0:00:18 41054
*** Downloading ‘https://cache.nixos.org/nar/1avpbxch8v8hvhi88b9920fnqaxnrcmfi8nn2j0icl6niw24snl7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6k20svx8f5rjgb2bb16fpahza9azdhrq-perl-5.22.2-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1300k 100 1300k 0 0 650k 0 0:00:02 0:00:02 --:--:-- 578k
fetching path ‘/nix/store/6scmpmlp8jid0dy3lsxajlp1g0shh1j6-bash-4.3-p48-info’...
*** Downloading ‘https://cache.nixos.org/nar/0v71285b9mn28np9rqv655w6kww3a8g5n9v7lr65w0fg57fn9cqa.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6scmpmlp8jid0dy3lsxajlp1g0shh1j6-bash-4.3-p48-info’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 615k 100 615k 0 0 615k 0 0:00:01 0:00:01 --:--:-- 311k
fetching path ‘/nix/store/1piphl62vlb9n9sd3f3rn9cnvdsmcr45-man-db-2.7.5’...
100 196k 100 196k 0 0 196k 0 0:00:01 0:00:01 --:--:-- 155k
fetching path ‘/nix/store/w0sy8xfmq4m3ylcrjv2kqf5jmpm03gj6-perl-Archive-Cpio-0.09’...
*** Downloading ‘https://cache.nixos.org/nar/17m7ych6srj8af308d8gqy73ki5rnzyfzk4wih00k9z9vlkrb3p6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/1piphl62vlb9n9sd3f3rn9cnvdsmcr45-man-db-2.7.5’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0np0j1jag485n1x4jssqc239f70ajq5qywm58krr7sibx2npahym.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/w0sy8xfmq4m3ylcrjv2kqf5jmpm03gj6-perl-Archive-Cpio-0.09’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 105k 100 105k 0 0 105k 0 0:00:01 --:--:-- 0:00:01 107k
fetching path ‘/nix/store/mvn1zykb3kc7pbi47qysbmrabzsrclrl-openssl-1.0.2k-dev’...
100 5216 100 5216 0 0 5216 0 0:00:01 --:--:-- 0:00:01 9860
fetching path ‘/nix/store/bxh5d7mhqbx1vmwj9cfkybnf9vhj5a94-perl-DBI-1.636’...
*** Downloading ‘https://cache.nixos.org/nar/0w5ikflv8ys21jqkx7y18gr23h7fh10aawd8fqs791gaqayk1xp3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mvn1zykb3kc7pbi47qysbmrabzsrclrl-openssl-1.0.2k-dev’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0ghfbd9crz01m4nb1w5dpbv5b32ci2arqgsyhc8iwyah3lpn9qq5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/bxh5d7mhqbx1vmwj9cfkybnf9vhj5a94-perl-DBI-1.636’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 334k 100 334k 0 0 334k 0 0:00:01 0:00:01 --:--:-- 219k
fetching path ‘/nix/store/13li4gws408cj5z91kzzzx3ynabi5q8f-perl-String-ShellQuote-1.04’...
16 404k 16 69261 0 0 69261 0 0:00:05 --:--:-- 0:00:05 74155
*** Downloading ‘https://cache.nixos.org/nar/0axc0pfr8gasz1fs6v1p9v6mqr0g156bsapzyydqmri7i9bkq9yb.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/13li4gws408cj5z91kzzzx3ynabi5q8f-perl-String-ShellQuote-1.04’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 212k 100 212k 0 0 212k 0 0:00:01 0:00:01 --:--:-- 168k
fetching path ‘/nix/store/mklnx9vi3cz5rwr723nhdr4vfc98qzfc-rsync-3.1.2’...
*** Downloading ‘https://cache.nixos.org/nar/1bi77gx367j8mvqd1jgd3h6vr9fwzc5g4yap9k8db2ykhc22xfyw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/mklnx9vi3cz5rwr723nhdr4vfc98qzfc-rsync-3.1.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 404k 100 404k 0 0 404k 0 0:00:01 0:00:01 --:--:-- 269k
fetching path ‘/nix/store/rcngq5m9wd6480wk4pqdalcx2ylgdpm9-setuid-wrapper’...
*** Downloading ‘https://cache.nixos.org/nar/0kahf41r925cplh4iv4isrjaq2xra467ljcdpr778gph5j6js81w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/rcngq5m9wd6480wk4pqdalcx2ylgdpm9-setuid-wrapper’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7196 100 7196 0 0 7196 0 0:00:01 --:--:-- 0:00:01 9443
fetching path ‘/nix/store/r3sv8y2z42izl0w2i2rdhc89ppj1p959-spidermonkey-17.0.0-lib’...
100 3105k 100 3105k 0 0 1035k 0 0:00:03 0:00:03 --:--:-- 819k
fetching path ‘/nix/store/vm604khw3j1hqmla3mxqbbgibknjbi1d-sqlite-3.14.2’...
*** Downloading ‘https://cache.nixos.org/nar/1kkimj5cvl8b89whphw9qnpsff1pgyiqf7g874kr9n2abz3gnqqf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r3sv8y2z42izl0w2i2rdhc89ppj1p959-spidermonkey-17.0.0-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3128 100 3128 0 0 3128 0 0:00:01 --:--:-- 0:00:01 11759
fetching path ‘/nix/store/vf96bgjdai40ikdw1w8s9layppkkgwra-sudoers’...
0 300k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/10mhqv6cmvm47hbcfipydayzjp9sbfsacwkzz1mqs8p47a0dasas.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vm604khw3j1hqmla3mxqbbgibknjbi1d-sqlite-3.14.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/026dlvd5fhzv5dlyc70nn71q7gd1l0iqlxlr6lnanb0kygvfg876.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vf96bgjdai40ikdw1w8s9layppkkgwra-sudoers’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 300k 100 300k 0 0 300k 0 0:00:01 0:00:01 --:--:-- 221k
fetching path ‘/nix/store/ihiqspldk3kxxlaf40w5pcp1zvy28sc0-system-generators’...
100 444 100 444 0 0 444 0 0:00:01 --:--:-- 0:00:01 765
fetching path ‘/nix/store/h4yx42bm29m31n7pyvdv754a3b2dx3pc-texinfo-6.1’...
*** Downloading ‘https://cache.nixos.org/nar/0pnvk2wyap9pdclvb8fw8sb3hshazbvr05hxx42rdslbzqdi1lcp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ihiqspldk3kxxlaf40w5pcp1zvy28sc0-system-generators’...
*** Downloading ‘https://cache.nixos.org/nar/0sxva3i11z7dnjnlz6v0cr6iil6yryj9hyq8sqxfnkcnf0csx5gy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h4yx42bm29m31n7pyvdv754a3b2dx3pc-texinfo-6.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 112 100 112 0 0 112 0 0:00:01 --:--:-- 0:00:01 466
fetching path ‘/nix/store/r0h6r47bclnq900jg70hznqmcw413s5v-time-1.7’...
*** Downloading ‘https://cache.nixos.org/nar/1qszsdvik5l63391pnx3in0g4vy7s4b28j8pviggk2qqkw874d0h.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/r0h6r47bclnq900jg70hznqmcw413s5v-time-1.7’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 405k 100 405k 0 0 405k 0 0:00:01 0:00:01 --:--:-- 270k
fetching path ‘/nix/store/x48px1mhfx5gg1nqfpxbl2vf9v0hq8r7-tzdata-2016j’...
*** Downloading ‘https://cache.nixos.org/nar/0vqplspk7qxkzh3ilh3r02j9dc85f240kj2l66w0y1ncfckrqpl8.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/x48px1mhfx5gg1nqfpxbl2vf9v0hq8r7-tzdata-2016j’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 10616 100 10616 0 0 10616 0 0:00:01 --:--:-- 0:00:01 16307
fetching path ‘/nix/store/52a7f0x0hzz3pym2bbak9rdy3qfgw7nw-perl-DBD-SQLite-1.50’...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0iqz7qlzvys17v9p0ksi0m1syr31hc3mh3v3iadp0x3cblg7bl2k.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/52a7f0x0hzz3pym2bbak9rdy3qfgw7nw-perl-DBD-SQLite-1.50’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1201k 100 1201k 0 0 600k 0 0:00:02 0:00:02 --:--:-- 495k
fetching path ‘/nix/store/4qkndqzkvflqmaqlckwfiys8sk494x01-udev-rules’...
100 103k 100 103k 0 0 103k 0 0:00:01 --:--:-- 0:00:01 127k
*** Downloading ‘https://cache.nixos.org/nar/0f0jfqslymjh3zyjnwbwjwvsab8czir32y37ivjx9ya2d5knqqk0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/4qkndqzkvflqmaqlckwfiys8sk494x01-udev-rules’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/gw7f531wvfln4b3xidbsi627g1vg1wj7-unbound-1.5.10-lib’...
*** Downloading ‘https://cache.nixos.org/nar/1fvkgiisq7f57ximamx8d50pi138j3ffjs41pikylh5yim6y91hk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gw7f531wvfln4b3xidbsi627g1vg1wj7-unbound-1.5.10-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 88812 100 88812 0 0 88812 0 0:00:01 0:00:01 --:--:-- 84341
fetching path ‘/nix/store/95b6acaih0gq95n5l8rxkkmvk2gbinmd-util-linux-2.28.1’...
100 1156k 100 1156k 0 0 578k 0 0:00:02 0:00:02 --:--:-- 508k
fetching path ‘/nix/store/86lv9qpcaqmn6mgkhhqyvi5q4gr66znk-command-not-found’...
*** Downloading ‘https://cache.nixos.org/nar/1qnvzpb7rwg8kkkzr85pi98ihmqlhyk2iplaxk4vn5bw6lmy0qam.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/95b6acaih0gq95n5l8rxkkmvk2gbinmd-util-linux-2.28.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 6788 100 6788 0 0 6788 0 0:00:01 --:--:-- 0:00:01 10774
fetching path ‘/nix/store/c74rxqwg0pkl6ypf41wn5ca4fqn80ljw-util-linux-2.28.1’...
*** Downloading ‘https://cache.nixos.org/nar/06hdwiz6iq0gip7x6yll5dmzhhlcxxd068mpvd1gsdhnsc2vkpbf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/86lv9qpcaqmn6mgkhhqyvi5q4gr66znk-command-not-found’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0pz2vvxv5cdd5ggyf69agxn157wprz0hbnr4gbwbabwxl67y1bzq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/c74rxqwg0pkl6ypf41wn5ca4fqn80ljw-util-linux-2.28.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1100 100 1100 0 0 1100 0 0:00:01 --:--:-- 0:00:01 1992
fetching path ‘/nix/store/8b4aslwn4a4l6wpxgaisv49i4xnskp1x-which-2.21’...
0 323k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/05h1isghh2rq4i6r2nyy4laqfg0d2pf8c6f50dvs7fyrk7xs21v5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8b4aslwn4a4l6wpxgaisv49i4xnskp1x-which-2.21’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 253k 100 253k 0 0 253k 0 0:00:01 0:00:01 --:--:-- 176k
fetching path ‘/nix/store/8rlyzn7cyq23a0gbg824nhddgb6m4207-xz-5.2.2’...
*** Downloading ‘https://cache.nixos.org/nar/1m2wn4vzlh7v839b120livry8x7hsyvgbnfdgdlf37n2nymamgqn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8rlyzn7cyq23a0gbg824nhddgb6m4207-xz-5.2.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 14300 100 14300 0 0 14300 0 0:00:01 --:--:-- 0:00:01 22204
fetching path ‘/nix/store/82bwc1ib9lh70s4bjhs8fibp8rhg1xmh-xz-5.2.2-man’...
100 323k 100 323k 0 0 323k 0 0:00:01 0:00:01 --:--:-- 255k
fetching path ‘/nix/store/6rhawr786hmpg0lw910rna03v0gbw93j-zlib-1.2.8’...
*** Downloading ‘https://cache.nixos.org/nar/0rada06m08iyrp4waidkzdzxxnxlvx4zwhbwxdi5zmgir2qvn65w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/82bwc1ib9lh70s4bjhs8fibp8rhg1xmh-xz-5.2.2-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0fmvpbhdwwq6djc7xxwrzmbjr6waa6xrgnjzaw2h9hi201jgximr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6rhawr786hmpg0lw910rna03v0gbw93j-zlib-1.2.8’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 25792 100 25792 0 0 25792 0 0:00:01 --:--:-- 0:00:01 38553
fetching path ‘/nix/store/qj4mk0173jj7cxbzxaj3if5a9r2ivm62-e2fsprogs-1.43.3’...
100 100k 100 100k 0 0 100k 0 0:00:01 0:00:01 --:--:-- 94319
fetching path ‘/nix/store/i8ckniqmycarliga9rw8lam6699km54p-libSM-1.2.2’...
*** Downloading ‘https://cache.nixos.org/nar/1qv9jysa7f0fqymacjkpkwvydqyjvxdwig4zh0wfidjnr8pvyzq0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qj4mk0173jj7cxbzxaj3if5a9r2ivm62-e2fsprogs-1.43.3’...
100 1199k 100 1199k 0 0 599k 0 0:00:02 0:00:02 --:--:-- 491k
fetching path ‘/nix/store/gdlmyqxapv0y258nk9w46jcyj8q8hbcm-kmod-23’...
100 42424 100 42424 0 0 42424 0 0:00:01 --:--:-- 0:00:01 53363
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/ig3x72cffqvj2gsgwnl40jbzm4vdmj9s-bcache-tools-1.0.7’...
*** Downloading ‘https://cache.nixos.org/nar/15v0gi3vbvbbb451170vnkpqjiii07ha0ak01x6pd722zf1fs43w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/i8ckniqmycarliga9rw8lam6699km54p-libSM-1.2.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1bdpdmb3m56xc3ldj8yvnlgrazad0b3ccc37adqk8aiv8q47lnyi.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gdlmyqxapv0y258nk9w46jcyj8q8hbcm-kmod-23’...
*** Downloading ‘https://cache.nixos.org/nar/1ga0fwnyhxi5br375kdwq024lwdwbixdsjh6mkqzgqngd8hpl8as.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ig3x72cffqvj2gsgwnl40jbzm4vdmj9s-bcache-tools-1.0.7’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 12344 100 12344 0 0 12344 0 0:00:01 --:--:-- 0:00:01 22082
100 13704 100 13704 0 0 13704 0 0:00:01 --:--:-- 0:00:01 20484
fetching path ‘/nix/store/6bkk0dr0cnigr4x9y72lxxswvh3rv9pq-cracklib-2.9.6’...
fetching path ‘/nix/store/kgczpyfkh9avarbb1xxi2k2jh5ndyzgw-gcc-5.4.0’...
*** Downloading ‘https://cache.nixos.org/nar/0d0701vwkxnvycqls288gyb2s16vh67iibasyn9m6ylaaq2mbgd1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6bkk0dr0cnigr4x9y72lxxswvh3rv9pq-cracklib-2.9.6’...
*** Downloading ‘https://cache.nixos.org/nar/07x71a4rdx9zr01ylkj4gkirdsfgq9mx9s3idyvgpb8q1m0v3h99.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/kgczpyfkh9avarbb1xxi2k2jh5ndyzgw-gcc-5.4.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 96096 100 96096 0 0 96096 0 0:00:01 0:00:01 --:--:-- 83707
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/56k1qvqglmwh5jwhjlm3znmdakgk8wfv-glib-2.48.2’...
*** Downloading ‘https://cache.nixos.org/nar/0947mx8p3zz1g52axy5n9i5q42g8rcx36xxsa4r0kjpnww785np3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/56k1qvqglmwh5jwhjlm3znmdakgk8wfv-glib-2.48.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 541k 100 541k 0 0 541k 0 0:00:01 0:00:01 --:--:-- 317k
fetching path ‘/nix/store/vnskzr65q0gymqd8hfxm26hv2d12l5m1-gnutls-3.5.10’...
*** Downloading ‘https://cache.nixos.org/nar/08p2vw6xhr6l5qkm8g3jg0d18cssb1j7vbfh7ywfb2wa0dg4hkq7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vnskzr65q0gymqd8hfxm26hv2d12l5m1-gnutls-3.5.10’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 151k 100 151k 0 0 151k 0 0:00:01 0:00:01 --:--:-- 109k
fetching path ‘/nix/store/298j8jhnlc8gjr9hsbq80b889gc12fk4-btrfs-progs-4.6.1’...
*** Downloading ‘https://cache.nixos.org/nar/1d9pk0ivrmkd9s8ryva5gc84av5zx0l4y56rajl1rhhl2slbclm6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/298j8jhnlc8gjr9hsbq80b889gc12fk4-btrfs-progs-4.6.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 738k 100 738k 0 0 369k 0 0:00:02 0:00:02 --:--:-- 366k1 178k
fetching path ‘/nix/store/5cv8iqinh6wpyszkjfgcmf07wg15sq1b-e2fsprogs-1.43.3-bin’...
*** Downloading ‘https://cache.nixos.org/nar/11y5hql80xgvawm77zd66i6ndwi09cpgcy8n5l72glz14r2zyfd7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5cv8iqinh6wpyszkjfgcmf07wg15sq1b-e2fsprogs-1.43.3-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 601k 100 601k 0 0 601k 0 0:00:01 0:00:01 --:--:-- 346k
fetching path ‘/nix/store/z27fci4s8rjgias3ndv1vkqfh5mwq6sa-kexec-tools-2.0.12’...
100 1872k 100 1872k 0 0 936k 0 0:00:02 0:00:02 --:--:-- 672k
fetching path ‘/nix/store/8d1gp04jq5911vrk4avv1lkzlibhlhjn-libXt-1.1.5’...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0vvvlrr3zlh7fyx97kr9msin87cln78d87kl0kixdfpldksb4f7q.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/z27fci4s8rjgias3ndv1vkqfh5mwq6sa-kexec-tools-2.0.12’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1cihzjivdfipl2mnspdyqbd85na0yz5dars3chs3i8rfrjc5ps5i.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8d1gp04jq5911vrk4avv1lkzlibhlhjn-libXt-1.1.5’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 70456 100 70456 0 0 70456 0 0:00:01 0:00:01 --:--:-- 66656
fetching path ‘/nix/store/m811j7bjc5d9gw8zyv3qq57mk8f52krn-libmicrohttpd-0.9.50’...
*** Downloading ‘https://cache.nixos.org/nar/07nmppkyri5nz7jygva8ji5hh0lnzkfsjhgr7ifgm1fpca0ddnkw.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m811j7bjc5d9gw8zyv3qq57mk8f52krn-libmicrohttpd-0.9.50’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 313k 100 313k 0 0 313k 0 0:00:01 0:00:01 --:--:-- 197k
fetching path ‘/nix/store/8zf540n6g47x5123vlnjfr5x5csbvxy9-libpng-apng-1.6.27’...
*** Downloading ‘https://cache.nixos.org/nar/11v1xnxhr2hhci5xhymbgz8bv97cpg87ygagfclmdyxfrjxza6ji.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/8zf540n6g47x5123vlnjfr5x5csbvxy9-libpng-apng-1.6.27’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 302k 100 302k 0 0 302k 0 0:00:01 0:00:01 --:--:-- 205k
fetching path ‘/nix/store/cjjwnhn6538i53c85zx50hnqj1fx2qpw-e2fsprogs-1.43.3-man’...
*** Downloading ‘https://cache.nixos.org/nar/1hvbxa5p5p82rql93q9fv2ks8lkrb2zlf91z2b6qc7fzprf2ff0k.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/cjjwnhn6538i53c85zx50hnqj1fx2qpw-e2fsprogs-1.43.3-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 44632 100 44632 0 0 44632 0 0:00:01 --:--:-- 0:00:01 47939
0 95996 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/fpnhll3wq97b49zbnbryg1bizfg3dqng-libXmu-1.1.2’...
*** Downloading ‘https://cache.nixos.org/nar/0nin7dw1sx5qglybnwiww96sx1xwvigcfaaiyns76lrklc1kwpgg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/fpnhll3wq97b49zbnbryg1bizfg3dqng-libXmu-1.1.2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 95996 100 95996 0 0 95996 0 0:00:01 0:00:01 --:--:-- 88638
fetching path ‘/nix/store/9h6g752dnx81s2zxr15cg3hx52sd1ihx-libssh2-1.7.0’...
*** Downloading ‘https://cache.nixos.org/nar/0dd2r03f96jh842zfd0kbnl3jw1s7v1fizvdk14dz1d8hk4z2ji5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9h6g752dnx81s2zxr15cg3hx52sd1ihx-libssh2-1.7.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 72080 100 72080 0 0 72080 0 0:00:01 --:--:-- 0:00:01 72955
fetching path ‘/nix/store/9kqbjh4bj40m1424xxblzhcn3i87hihb-freetype-2.6.5’...
*** Downloading ‘https://cache.nixos.org/nar/1yaxylrkqv7dzhlhscjfpcplcg1qd4i7dp24w7zpizsg37y5zc3m.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9kqbjh4bj40m1424xxblzhcn3i87hihb-freetype-2.6.5’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 47528 100 47528 0 0 47528 0 0:00:01 --:--:-- 0:00:01 77914
fetching path ‘/nix/store/hgb29f6hg7dy6r71qhyf8399b8ay38jz-libunwind-1.1’...
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1pylhxif0y474d00j45kyqn4613vhgrsdy4zlhw7ib4f6hbbm30y.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hgb29f6hg7dy6r71qhyf8399b8ay38jz-libunwind-1.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 71404 100 71404 0 0 71404 0 0:00:01 --:--:-- 0:00:01 98k
fetching path ‘/nix/store/p6v7ysmxjk6jhj6s58kmg4158za949s5-libxml2-2.9.4’...
*** Downloading ‘https://cache.nixos.org/nar/0rdybyvra5z9pz2v40yqqyh5zzhw7c528v75wfzi4q6g1lsyw89v.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/p6v7ysmxjk6jhj6s58kmg4158za949s5-libxml2-2.9.4’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 44284 100 44284 0 0 44284 0 0:00:01 0:00:01 --:--:-- 43629
fetching path ‘/nix/store/zmall2mx8ksq4qyxrjqr4ymg2ybws8wj-curl-7.53.0’...
0 537k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1dz6d7a6cj2f52izd9y3w3ad3ngkxjib99nxkl7wnbmpyjzlil7d.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/zmall2mx8ksq4qyxrjqr4ymg2ybws8wj-curl-7.53.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 325k 100 325k 0 0 325k 0 0:00:01 0:00:01 --:--:-- 215k
fetching path ‘/nix/store/gpf86xshp2pcq4rdwzx84svscqlrkl7c-linux-pam-1.2.1’...
*** Downloading ‘https://cache.nixos.org/nar/0l6n4yiwkxqypmq3181aqi8pvhn8xcpykjwzm3gf1r98nlxm8yyr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/gpf86xshp2pcq4rdwzx84svscqlrkl7c-linux-pam-1.2.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 537k 100 537k 0 0 537k 0 0:00:01 0:00:01 --:--:-- 303k
fetching path ‘/nix/store/52m8ssm6y8715gpaa2dq31rpn9jsrj9s-fontconfig-2.11.1-lib’...
*** Downloading ‘https://cache.nixos.org/nar/1pgdbbq6r433bkca6bg604ak3aws3rcf1k2rds2aw6y7v547biqn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/52m8ssm6y8715gpaa2dq31rpn9jsrj9s-fontconfig-2.11.1-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 197k 100 197k 0 0 197k 0 0:00:01 0:00:01 --:--:-- 130k
fetching path ‘/nix/store/6mr2p2fzm66z8xdfhyjqhrzwc4ifgmv9-pciutils-3.5.1’...
*** Downloading ‘https://cache.nixos.org/nar/1jsygs66vwka23hx58spc5bk49f0dixncblhhykq3x4mnc91dqdf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/6mr2p2fzm66z8xdfhyjqhrzwc4ifgmv9-pciutils-3.5.1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 276k 100 276k 0 0 276k 0 0:00:01 0:00:01 --:--:-- 180k
fetching path ‘/nix/store/wvn16pwh13vv58dkdzz665lrg0yy0pk6-curl-7.53.0-bin’...
*** Downloading ‘https://cache.nixos.org/nar/139y397qvzi80mgrsjskwjis06m5lwjpa4mb9zj6j8igd5d2ciz7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wvn16pwh13vv58dkdzz665lrg0yy0pk6-curl-7.53.0-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 105k 100 105k 0 0 105k 0 0:00:01 0:00:01 --:--:-- 77535
fetching path ‘/nix/store/jl7fy93sahy5s2pkv3q2vcxyhw6nbh0r-kbd-2.0.3’...
32 256k 32 86669 0 0 86669 0 0:00:03 0:00:01 0:00:02 82306
*** Downloading ‘https://cache.nixos.org/nar/13pjvd0y1iv4ilrkl6ngccz837zcm6hzb8fsjbrwjppk2yb664b9.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jl7fy93sahy5s2pkv3q2vcxyhw6nbh0r-kbd-2.0.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 256k 100 256k 0 0 256k 0 0:00:01 0:00:01 --:--:-- 191k
fetching path ‘/nix/store/5hzj9wys8ks81cnw996d372gpjgkybk4-fontconfig-2.11.1-bin’...
0 48564 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0nlw2b332w9clcd5wnqj0xiflnqfmswzgzmc7jsj5di70dziwly7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5hzj9wys8ks81cnw996d372gpjgkybk4-fontconfig-2.11.1-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 48564 100 48564 0 0 48564 0 0:00:01 0:00:01 --:--:-- 39970
fetching path ‘/nix/store/h1bqq6nfkrlvfywf28j3as1j76013vz6-alsa-utils-1.1.0’...
*** Downloading ‘https://cache.nixos.org/nar/09w5pmbql9iwjv6sf3d7ag8c4d2hpn1pk3zqy1s3jjhg2ihvlff2.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h1bqq6nfkrlvfywf28j3as1j76013vz6-alsa-utils-1.1.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 16216 100 16216 0 0 16216 0 0:00:01 --:--:-- 0:00:01 22244
fetching path ‘/nix/store/dkx6r6b3l4wbcnphb5a1jgq4259vns3m-cpupower-4.4.59’...
0 966k 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/19mfjx55fr90g9ax897vhgvkak75rpc5ixgi8a3wylk13c3lb23w.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dkx6r6b3l4wbcnphb5a1jgq4259vns3m-cpupower-4.4.59’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 29.5M 100 29.5M 0 0 2518k 0 0:00:12 0:00:12 --:--:-- 3050k
fetching path ‘/nix/store/wnsbxbyrxj8h7jp9nibn01kcymjdww8y-linux-pam-1.2.1-man’...
100 986k 100 986k 0 0 493k 0 0:00:02 0:00:02 --:--:-- 452k
100 966k 100 966k 0 0 966k 0 0:00:01 0:00:01 --:--:-- 508k
100 64212 100 64212 0 0 64212 0 0:00:01 --:--:-- 0:00:01 69568
fetching path ‘/nix/store/vyd9fimp32c3zllzzlazncbxislmmpam-gcc-wrapper-5.4.0’...
fetching path ‘/nix/store/hklwrh21s4xjmkc47l3q42xlwzgf2cwi-linux-4.4.59-dev’...
fetching path ‘/nix/store/62ag6pkp2vcmahf3v80wwwh2ygamcg8k-openssh-7.4p1’...
*** Downloading ‘https://cache.nixos.org/nar/0s0h6ijhinmb7f3ng14dya4xhgs3056vkqzbdr6mrlbhznvvqjf3.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wnsbxbyrxj8h7jp9nibn01kcymjdww8y-linux-pam-1.2.1-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/002is682k9pfl5ljjccgmd1bwzmywcn9yv3swd20mxdxjk93382s.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hklwrh21s4xjmkc47l3q42xlwzgf2cwi-linux-4.4.59-dev’...
*** Downloading ‘https://cache.nixos.org/nar/1gs63fnks0d3ks4b7ga2y33bhmj2xsskslkk8l344qg1anw6gqk6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/62ag6pkp2vcmahf3v80wwwh2ygamcg8k-openssh-7.4p1’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0xdbjj7v23y3i3k5250wdd9sp07rypvwmjq0hyazlda6ajvvxxx7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/vyd9fimp32c3zllzzlazncbxislmmpam-gcc-wrapper-5.4.0’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5180 100 5180 0 0 5180 0 0:00:01 --:--:-- 0:00:01 9866
fetching path ‘/nix/store/7zrdd426mxwdhm24zych609qqz06hgzp-kbd-env’...
*** Downloading ‘https://cache.nixos.org/nar/1i59kxgwggnjra9nrm5i392s51cf0vslp1i1ndlwx3hvb6pw7s55.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/7zrdd426mxwdhm24zych609qqz06hgzp-kbd-env’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 92612 100 92612 0 0 92612 0 0:00:01 --:--:-- 0:00:01 95772
fetching path ‘/nix/store/wvngpm4r23fvn9ld15161gi1jl44apv2-perl-WWW-Curl-4.17’...
100 3312 100 3312 0 0 3312 0 0:00:01 --:--:-- 0:00:01 12176
fetching path ‘/nix/store/hpsg8y9fa4qrdrswqlzznj9z2nk6bnvs-perl-XML-LibXML-2.0122’...
15 761k 15 117k 0 0 117k 0 0:00:06 0:00:01 0:00:05 114k
*** Downloading ‘https://cache.nixos.org/nar/14dl8shp1jgxrgd72flcfp2mj5a8gv3grvqbkpn4zvwvdhwwg9zy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wvngpm4r23fvn9ld15161gi1jl44apv2-perl-WWW-Curl-4.17’...
0 11.5M 0 86667 0 0 86667 0 0:02:20 0:00:01 0:02:19 82148 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1i3d8rgn56x2dy2sbckca53x6sif24q55943lfpm00zlblimvlj4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hpsg8y9fa4qrdrswqlzznj9z2nk6bnvs-perl-XML-LibXML-2.0122’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 31560 100 31560 0 0 31560 0 0:00:01 --:--:-- 0:00:01 39499
fetching path ‘/nix/store/acsc2d6r6x6z9cdnks4ff5n0n84sw96z-python-2.7.13’...
100 761k 100 761k 0 0 761k 0 0:00:01 0:00:01 --:--:-- 382k
fetching path ‘/nix/store/2ij54lmg02915s43kdwlf5hf5qnm04xx-shadow-4.4’...
26 187k 26 50829 0 0 50829 0 0:00:03 --:--:-- 0:00:03 57629
*** Downloading ‘https://cache.nixos.org/nar/1nlf4z0iww49j8cr66fmk54wgm1pm7hlgiy485ppvr27dni3j2v7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/acsc2d6r6x6z9cdnks4ff5n0n84sw96z-python-2.7.13’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0g103cw2nv0pbhxn3w793l7phkfz198c8pnff2d7fxji1gjhifmv.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/2ij54lmg02915s43kdwlf5hf5qnm04xx-shadow-4.4’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 187k 100 187k 0 0 187k 0 0:00:01 0:00:01 --:--:-- 154k
fetching path ‘/nix/store/q0g6qqrqj31lin676605jrmb0w26hmx1-strace-4.13’...
*** Downloading ‘https://cache.nixos.org/nar/1bd5210pw903wjpwcn3z04lzjjfvl2m415pk2461da70kn4d5yv4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q0g6qqrqj31lin676605jrmb0w26hmx1-strace-4.13’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 186k 100 186k 0 0 186k 0 0:00:01 0:00:01 --:--:-- 160k
fetching path ‘/nix/store/0pwrd2phx6a3x76ii896b0vg9xrqb4ds-sudo-1.8.19p2’...
100 476k 100 476k 0 0 476k 0 0:00:01 0:00:01 --:--:-- 312k
fetching path ‘/nix/store/q3bwqjkzxmhwimy1d8ymk6nhl1p9n9kg-systemd-231-lib’...
*** Downloading ‘https://cache.nixos.org/nar/0581p50izjgn64rzlkp04zmglhsi51hkgxpvyr6fqmh5k0871cr7.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/0pwrd2phx6a3x76ii896b0vg9xrqb4ds-sudo-1.8.19p2’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
20 11.5M 20 2381k 0 0 595k 0 0:00:19 0:00:04 0:00:15 589k
*** Downloading ‘https://cache.nixos.org/nar/0qkbsyfiazdqzz4nz1lh49wdk4fz4q3qvin6ahj6wf6l6f85b8z0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/q3bwqjkzxmhwimy1d8ymk6nhl1p9n9kg-systemd-231-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 279k 100 279k 0 0 279k 0 0:00:01 0:00:01 --:--:-- 178k 0:00:13 0:00:0 0:00:07 510k5 0:00:08 855k
fetching path ‘/nix/store/9m1dkj6qvzlbbv680q3xg3wn46nqmsmm-shadow-4.4-man’...
100 597k 100 597k 0 0 597k 0 0:00:01 0:00:01 --:--:-- 321k
fetching path ‘/nix/store/dh1pnwgqs8sxn62ig1b5ran5r9bx23wp-dbus-1.10.12-lib’...
34 7469k 34 2565k 0 0 855k 0 0:00:08 0:00:03 0:00:05 650k
*** Downloading ‘https://cache.nixos.org/nar/1lla5ipzq6qnwkd0f6q92wvvazpzmqg51033vq68zan389djqx25.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9m1dkj6qvzlbbv680q3xg3wn46nqmsmm-shadow-4.4-man’...
*** Downloading ‘https://cache.nixos.org/nar/0cng56zclj6nh6nzi2k8mk61q0f9yabwjncrmb3aczhvij4mlq2h.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dh1pnwgqs8sxn62ig1b5ran5r9bx23wp-dbus-1.10.12-lib’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 131k 100 131k 0 0 131k 0 0:00:01 0:00:01 --:--:-- 106k
fetching path ‘/nix/store/dd7arnxf9qzfnlw1b7pfzddfcayn0zha-dhcpcd-6.11.3’...
*** Downloading ‘https://cache.nixos.org/nar/0yp6mx64zz1qg94ajrjsj42bfs19a2ypdrc2mkqidyp004i08v8i.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/dd7arnxf9qzfnlw1b7pfzddfcayn0zha-dhcpcd-6.11.3’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 773k 100 773k 0 0 386k 0 0:00:02 0:00:02 --:--:-- 333k
fetching path ‘/nix/store/f3s52jw9qyl8acj6zyicqg9drsn15xpd-libatasmart-0.19’...
*** Downloading ‘https://cache.nixos.org/nar/14w10m3c5248ay5dfswqqjzc8bq62mqbp20dcghhlgx6y81hnil1.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f3s52jw9qyl8acj6zyicqg9drsn15xpd-libatasmart-0.19’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7469k 100 7469k 0 0 1067k 0 0:00:07 0:00:07 --:--:-- 1452k
fetching path ‘/nix/store/27bkikmvach3w1phmcllgm6rb8lblz6k-libgudev-230’...
100 153k 100 153k 0 0 78394 0 0:00:02 0:00:02 --:--:-- 77656
fetching path ‘/nix/store/h4wn6rpgy44qgv196mckx4hvh3lrvxji-mount.vboxsf’...
*** Downloading ‘https://cache.nixos.org/nar/15gk49bl90lgkwsqbf96svh6107mpfxnw9m1yxj62kry0rnv69wk.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/27bkikmvach3w1phmcllgm6rb8lblz6k-libgudev-230’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1pmxqk5lmzx76ka6shqa2dggfaq1y08gxhxfnapk51g275i8zqmj.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/h4wn6rpgy44qgv196mckx4hvh3lrvxji-mount.vboxsf’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 28356 100 28356 0 0 28356 0 0:00:01 0:00:01 --:--:-- 20637
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/xvr46zcnwi3m3yj5sksw2n8qxrf3crbf-polkit-0.113’...
*** Downloading ‘https://cache.nixos.org/nar/0fiv4s1gshb2csyc53dc6b9r8rq9walfsi3g90rxpbhd58lkf7gs.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/xvr46zcnwi3m3yj5sksw2n8qxrf3crbf-polkit-0.113’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 11.5M 100 11.5M 0 0 1186k 0 0:00:10 0:00:10 --:--:-- 1387k
0 14896 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
fetching path ‘/nix/store/js1wkqxw8yv30c9pnsljm3wibjbck8ky-shadow-4.4-su’...
100 14896 100 14896 0 0 14896 0 0:00:01 --:--:-- 0:00:01 20048
100 6004 100 6004 0 0 6004 0 0:00:01 --:--:-- 0:00:01 9668
100 94772 100 94772 0 0 94772 0 0:00:01 --:--:-- 0:00:01 114k
fetching path ‘/nix/store/wbbb4dxymk8bfb63pk76ahbxq89jw9qh-VirtualBox-GuestAdditions-5.1.14-4.4.59’...
fetching path ‘/nix/store/chh9kar7cpcz48jpppfbw3i2b8xqv5p7-util-linux-2.28.1-bin’...
fetching path ‘/nix/store/np4627sfibzr68hl024d02182i1gj3qp-util-linux-2.28.1-bin’...
*** Downloading ‘https://cache.nixos.org/nar/12s231r5amsmszj59as67gzihik38q6rg6q4h4pp04cxsx8n6wx5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/js1wkqxw8yv30c9pnsljm3wibjbck8ky-shadow-4.4-su’...
*** Downloading ‘https://cache.nixos.org/nar/076m8pzygjxgdmxaawz5lm18pvnrkfh9njvvdhpgmqab671n43xz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wbbb4dxymk8bfb63pk76ahbxq89jw9qh-VirtualBox-GuestAdditions-5.1.14-4.4.59’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1zhji5zgmi91lx48p1mpq55pzyczpgkal2gbrk8q0377zz95jvqz.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/chh9kar7cpcz48jpppfbw3i2b8xqv5p7-util-linux-2.28.1-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/06311x4cj01x5bycmpnyq0lsi746l0d5093fn3nf36vij4mnd3zy.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/np4627sfibzr68hl024d02182i1gj3qp-util-linux-2.28.1-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 15228 100 15228 0 0 15228 0 0:00:01 --:--:-- 0:00:01 24963
fetching path ‘/nix/store/v2s0yykq09ingyg6f8mnhxbgykhkvsr1-polkit-0.113-bin’...
*** Downloading ‘https://cache.nixos.org/nar/0fmr780zxxb4ygny2mmx562hh731313i35v6kh2pmwkzr06rmnvx.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/v2s0yykq09ingyg6f8mnhxbgykhkvsr1-polkit-0.113-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 36436 100 36436 0 0 36436 0 0:00:01 --:--:-- 0:00:01 78356 0 0:00:20 --:--:- 0:00:37 21033- 0:00:20 39637
fetching path ‘/nix/store/9l9rfjxgrprvy2k3xk107026qxim270p-xauth-1.0.9’...
*** Downloading ‘https://cache.nixos.org/nar/1z9vnysmyc6062pg3ji6bzxqa3xkb7hphc5gdwm55fk04wbxz9z0.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/9l9rfjxgrprvy2k3xk107026qxim270p-xauth-1.0.9’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 682k 100 682k 0 0 682k 0 0:00:01 0:00:01 --:--:-- 375k
100 21832 100 21832 0 0 21832 0 0:00:01 --:--:-- 0:00:01 32248
fetching path ‘/nix/store/5cpnwwnasypdi7p0av6qbaf52y99gmdz-xz-5.2.2-bin’...
*** Downloading ‘https://cache.nixos.org/nar/0cm2sfhdbbkggvdh9pd9yan7jb02sl1w8fn8s3jgxdp8bf2hqwdn.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/5cpnwwnasypdi7p0av6qbaf52y99gmdz-xz-5.2.2-bin’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1229k 100 1229k 0 0 614k 0 0:00:02 0:00:02 --:--:-- 529k
100 619k 100 619k 0 0 309k 0 0:00:02 0:00:02 --:--:-- 274k
fetching path ‘/nix/store/k7smgf265ci5hpilcs6ccil0zmzyc0g0-install-grub.pl’...
fetching path ‘/nix/store/3lrrcmflamqypls9zyjnvv05zbi56hbl-nixos-container’...
fetching path ‘/nix/store/giw76m1rb4rbwcynaaczss882y8w11n3-stage-2-init.sh’...
*** Downloading ‘https://cache.nixos.org/nar/1xl773wms0dyc7mmflpypi09nkanp34ndx91x7hbqlmrscmayyk6.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/k7smgf265ci5hpilcs6ccil0zmzyc0g0-install-grub.pl’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1cgqavkbcrs2w04g8ap98jxji5w18g8bdybsj8dv0n4gnzjbjsww.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/3lrrcmflamqypls9zyjnvv05zbi56hbl-nixos-container’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/1acqz3h8yz359xly5wcq4fk7785x6nwfs952bv1qw7q04bwpa800.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/giw76m1rb4rbwcynaaczss882y8w11n3-stage-2-init.sh’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 41268 100 41268 0 0 41268 0 0:00:01 --:--:-- 0:00:01 52503
fetching path ‘/nix/store/jpx6jl4f6i8dz8bzn8czny61q9axmh3w-fuse-2.9.5’...
100 6188 100 6188 0 0 6188 0 0:00:01 --:--:-- 0:00:01 9996
100 3836 100 3836 0 0 3836 0 0:00:01 --:--:-- 0:00:01 6557
fetching path ‘/nix/store/hb61in5qxb0a0nfkf9hqa0449vg1lkc5-nix-1.11.8’...
fetching path ‘/nix/store/f3wan424j5p0a06p02byvn4gq5g2x234-stdenv’...
*** Downloading ‘https://cache.nixos.org/nar/0lfj3qy6cv38mmbpcja4qkhjyjka2d0p6448ab6iqr1c2775w7m5.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/jpx6jl4f6i8dz8bzn8czny61q9axmh3w-fuse-2.9.5’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2536 100 2536 0 0 2536 0 0:00:01 --:--:-- 0:00:01 4327
fetching path ‘/nix/store/ly1qfc7pq7kckcxgy69q93ih7l2wa1ay-stdenv’...
*** Downloading ‘https://cache.nixos.org/nar/03bxg35bb8075myaq83nslmjcby27vy5a3pl6br2qlm3gzwmwilr.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/hb61in5qxb0a0nfkf9hqa0449vg1lkc5-nix-1.11.8’...
*** Downloading ‘https://cache.nixos.org/nar/1y9wbhgr7658s8p7hl97kgpx8hhfgdf1bnyj6hyafq3jn3gcxvsg.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/f3wan424j5p0a06p02byvn4gq5g2x234-stdenv’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
*** Downloading ‘https://cache.nixos.org/nar/0wm2762lnh4jxivgi3wr8a1w37hzzd1xb741p8rlm0y6b78cxzwf.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ly1qfc7pq7kckcxgy69q93ih7l2wa1ay-stdenv’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 8116 100 8116 0 0 8116 0 0:00:01 --:--:-- 0:00:01 13283
fetching path ‘/nix/store/qmmyz3w19s44p45j19f70jqzzaa8cxpw-systemd-231’...
100 111k 100 111k 0 0 111k 0 0:00:01 0:00:01 --:--:-- 106k
100 8084 100 8084 0 0 8084 0 0:00:01 --:--:-- 0:00:01 14083
*** Downloading ‘https://cache.nixos.org/nar/1hv94vb4r9y3bbbjh0nwpwd1lrqz69wh51ayqhxj8700gzyf3arh.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qmmyz3w19s44p45j19f70jqzzaa8cxpw-systemd-231’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0fetching path ‘/nix/store/m2flkfzk2x5b1s33k84ppsf2b6pyds8p-udisks-2.1.6’...
fetching path ‘/nix/store/l0lnlzjdymhknybnh8pyyxc9rl6pg8gc-util-linux-2.28.1-man’...
*** Downloading ‘https://cache.nixos.org/nar/080rjqkk45qb224q5066ym128nwlj8m30jfg39vyj8mb4f7i8dnc.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/l0lnlzjdymhknybnh8pyyxc9rl6pg8gc-util-linux-2.28.1-man’...
*** Downloading ‘https://cache.nixos.org/nar/15cqpikxawjbbiqxj0yk8kdsckasc7g9h00apqlv576zwzlm4kfq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/m2flkfzk2x5b1s33k84ppsf2b6pyds8p-udisks-2.1.6’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 698k 100 698k 0 0 698k 0 0:00:01 0:00:01 --:--:-- 369k
fetching path ‘/nix/store/ccp1bw0pzfa52zyax9lsg6q1q2yxnprs-zfs-user-0.6.5.9’...
*** Downloading ‘https://cache.nixos.org/nar/06vx24qdbjadg878b8hw6qnzy3bw3g8g1np75n557c4lidkzcln4.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/ccp1bw0pzfa52zyax9lsg6q1q2yxnprs-zfs-user-0.6.5.9’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 245k 100 245k 0 0 245k 0 0:00:01 0:00:01 --:--:-- 178k
fetching path ‘/nix/store/qg1r4wm4q33kxr8ccw39kw6jl14xp2pc-closure’...
*** Downloading ‘https://cache.nixos.org/nar/0v8hc523rmqhivmvx1bw0gz635ry64z43hsidqz1mjpfmia15dka.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/qg1r4wm4q33kxr8ccw39kw6jl14xp2pc-closure’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 357k 100 357k 0 0 357k 0 0:00:01 0:00:01 --:--:-- 225k
fetching path ‘/nix/store/j17jf808imgmmrpi2ghi5r9mpk1spw2j-nix-1.11.8-man’...
*** Downloading ‘https://cache.nixos.org/nar/1b2qmvr4i1wsnl59rnrf2vmnpinyrphj1kzrza2asqf7hx4yjnwp.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/j17jf808imgmmrpi2ghi5r9mpk1spw2j-nix-1.11.8-man’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1292 100 1292 0 0 1292 0 0:00:01 --:--:-- 0:00:01 2146
fetching path ‘/nix/store/wpqm3jxk20jrl9qlfyhrx8wdsr54v10y-nixos-rebuild’...
26 1071k 26 288k 0 0 288k 0 0:00:03 0:00:01 0:00:02 197k
*** Downloading ‘https://cache.nixos.org/nar/0lwghl4h07p8z44b8hp7hyygzc5pw8vm70c2f1wsl112xjnxqplq.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/wpqm3jxk20jrl9qlfyhrx8wdsr54v10y-nixos-rebuild’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 74016 100 74016 0 0 74016 0 0:00:01 --:--:-- 0:00:01 74462
fetching path ‘/nix/store/b2diyjks6fkrdzg114l5rpqwrbj4ld6g-nixos-install’...
*** Downloading ‘https://cache.nixos.org/nar/0irwlgl73fsi3bmn6ll5fg2i0fgadfqs9vfsdhwv9r135jrl3zli.nar.xz’ (signed by ‘cache.nixos.org-1’) to ‘/nix/store/b2diyjks6fkrdzg114l5rpqwrbj4ld6g-nixos-install’...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3876 100 3876 0 0 3876 0 0:00:01 --:--:-- 0:00:01 5881
building path(s) ‘/nix/store/xqqipp7ka55iq362vgaa6lpxz29vbiif-audit-disable’
killing process 14082
killing process 14062
killing process 14047
error: a ‘x86_64-linux’ is required to build ‘/nix/store/b9nsy73vigzpprks61hamas0nfffkv4a-audit-disable.drv’, but I am a ‘x86_64-darwin’
error: unable to build all machine configurations
@betaboon
Copy link
Author

$ sudo launchctl print system/org.nixos.nix-daemon
Password:
org.nixos.nix-daemon = {
	active count = 1
	path = /Library/LaunchDaemons/org.nixos.nix-daemon.plist
	state = running

	program = /nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/bin/nix-daemon
	stdout path = /var/log/nix-daemon.log
	stderr path = /var/log/nix-daemon.log
	default environment = {
		PATH => /usr/bin:/bin:/usr/sbin:/sbin
	}

	environment = {
		NIX_REMOTE_SYSTEMS => /etc/nix/machines
		NIX_CONF_DIR => /etc/nix
		NIX_SSL_CERT_FILE => /nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt
		NIX_BUILD_HOOK => /nix/store/dgwz3dxdzs2wwd7pg7cdhvl8rv0qpnbj-nix-1.11.15/libexec/nix/build-remote.pl
		NIX_OTHER_STORES => /run/nix/remote-stores/*/nix
		NIX_CURRENT_LOAD => /run/nix/current-load
		XPC_SERVICE_NAME => org.nixos.nix-daemon
	}
...

@betaboon
Copy link
Author

$ sudo ssh -i /var/root/.ssh/id_rsa nix-vbox-build-slave -- uname -a
Linux nixos 4.9.61 #1-NixOS SMP Wed Nov 8 09:08:37 UTC 2017 x86_64 GNU/Linux

@betaboon
Copy link
Author

$ nixops deploy --show-trace
test> building initial configuration...
error: while evaluating the attribute ‘config.system.build.toplevel’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:252:5:
while evaluating ‘foldr’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:34:20, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:132:12:
while evaluating ‘fold'’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:37:15, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:41:8:
while evaluating ‘showWarnings’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:98:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:105:16:
while evaluating ‘foldr’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:34:20, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/activation/top-level.nix:98:23:
while evaluating ‘fold'’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:37:15, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:41:8:
while evaluating the attribute ‘warnings’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:44:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:75:45, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:52:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:312:9:
while evaluating the option `warnings':
while evaluating the attribute ‘isDefined’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:344:5:
while evaluating ‘filterOverrides’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:419:21, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:328:18:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:425:8:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:17:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:28, called from undefined position:
while evaluating ‘dischargeProperties’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:386:25, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:324:62:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:216:48:
while evaluating the attribute ‘config.warnings’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/boot/systemd.nix:710:5:
while evaluating ‘mapAttrsToList’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:223:23, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/boot/systemd.nix:710:29:
while evaluating the attribute ‘services’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:44:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:75:45, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:52:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:312:9:
while evaluating the option `systemd.services':
while evaluating the attribute ‘isDefined’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:344:5:
while evaluating ‘filterOverrides’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:419:21, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:328:18:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:425:8:
while evaluating ‘concatMap’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/lists.nix:102:18, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:17:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:323:28, called from undefined position:
while evaluating ‘dischargeProperties’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:386:25, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:324:62:
while evaluating the attribute ‘condition’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:467:14:
while evaluating the attribute ‘condition’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:467:14:
while evaluating the attribute ‘condition’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:467:14:
while evaluating the attribute ‘services.klogd.enable’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:44:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:75:45, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/attrsets.nix:199:52:
while evaluating the attribute ‘value’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:312:9:
while evaluating the option `services.klogd.enable':
while evaluating the attribute ‘isDefined’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:344:5:
while evaluating anonymous function at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:333:19, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:333:14:
while evaluating the attribute ‘value._type’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:424:73:
while evaluating the attribute ‘value.content’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/modules.nix:482:14:
while evaluating the attribute ‘default’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/services/logging/klogd.nix:12:7:
while evaluating ‘versionOlder’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/strings.nix:351:22, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/services/logging/klogd.nix:12:17:
while evaluating ‘getVersion’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/lib/strings.nix:375:16, called from /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/services/logging/klogd.nix:12:31:
while evaluating the attribute ‘boot.kernelPackages.kernel’ at /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/system/boot/kernel.nix:27:9:
while evaluating the attribute ‘kernel.override’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/top-level/all-packages.nix:12525:12:
while evaluating the attribute ‘linux_4_9’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/top-level/all-packages.nix:12445:3:
while evaluating ‘callPackageWith’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:113:35, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/top-level/all-packages.nix:12445:15:
while evaluating ‘makeOverridable’ at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:72:24, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:117:8:
while evaluating anonymous function at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix:1:1, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/lib/customisation.nix:74:12:
while evaluating anonymous function at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:1:1, called from /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix:3:1:
assertion failed at /nix/store/a0sap6azp2hjndw6krhdd5jqlb9vq9cf-nixpkgs-18.03pre119383.eafd703a63/nixpkgs/pkgs/os-specific/linux/kernel/generic.nix:33:1
error: Command '['nix-build', '<nixpkgs/nixos>', '-A', 'system', '-I', 'nixos-config=/var/folders/qf/n1xghf7974v54qyl0qg4snnm0000gn/T/nixops-tmpy7hTh3/test-initial.nix', '--show-trace', '-I', 'nixops=/nix/store/yl83xnrqd6bmgqbi1wapnpr37kiwpsmv-nixops-1.5.2/share/nix/nixops']' returned non-zero exit status 1

@betaboon
Copy link
Author

$ nixops info
Network name: (none)
Network UUID: 442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7
Network description: test deployment
Nix expressions: /Users/betaboon/nixops-test/deployment.nix
Nix arguments: system = "x86_64-linux"

+------+----------------------+------------+--------------------------------------------------+----------------+
| Name |        Status        | Type       | Resource Id                                      | IP address     |
+------+----------------------+------------+--------------------------------------------------+----------------+
| test | Missing / Up-to-date | container  |                                                  |                |
| vbox |   Up / Up-to-date    | virtualbox | nixops-442ca9a6-c7ac-11e7-853f-d8a25e8ef0f7-vbox | 192.168.56.102 |
+------+----------------------+------------+--------------------------------------------------+----------------+

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment