Skip to content

Instantly share code, notes, and snippets.

@lukego
Created November 13, 2018 19:23
Show Gist options
  • Save lukego/992d195be54c68cfe501b20727c37c16 to your computer and use it in GitHub Desktop.
Save lukego/992d195be54c68cfe501b20727c37c16 to your computer and use it in GitHub Desktop.
From e320511b1f784f3a9b25db26492c62f46befea0c Mon Sep 17 00:00:00 2001
From: Luke Gorrie <luke@snabb.co>
Date: Tue, 13 Nov 2018 15:50:18 +0000
Subject: [PATCH 3/3] Add user-namespace option
---
src/libstore/build.cc | 30 +++++++++++++++++++-----------
src/libstore/globals.hh | 3 +++
2 files changed, 22 insertions(+), 11 deletions(-)
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index 5301721..fa34f01 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -2190,7 +2190,8 @@ void DerivationGoal::startBuilder()
if (!fixedOutput)
privateNetwork = true;
- userNamespaceSync.create();
+ if (settings.userNamespace)
+ userNamespaceSync.create();
options.allowVfork = false;
@@ -2212,9 +2213,11 @@ void DerivationGoal::startBuilder()
PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0);
if (stack == MAP_FAILED) throw SysError("allocating stack");
- int flags = CLONE_NEWUSER | CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWIPC | CLONE_NEWUTS | CLONE_PARENT | SIGCHLD;
+ int flags = CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWIPC | CLONE_NEWUTS | CLONE_PARENT | SIGCHLD;
if (privateNetwork)
flags |= CLONE_NEWNET;
+ if (settings.userNamespace)
+ flags |= CLONE_NEWUSER;
pid_t child = clone(childEntry, stack + stackSize, flags, this);
if (child == -1 && errno == EINVAL)
@@ -2230,7 +2233,8 @@ void DerivationGoal::startBuilder()
if (helper.wait() != 0)
throw Error("unable to start build process");
- userNamespaceSync.readSide = -1;
+ if (settings.userNamespace)
+ userNamespaceSync.readSide = -1;
pid_t tmp;
if (!string2Int<pid_t>(readLine(builderOut.readSide.get()), tmp)) abort();
@@ -2252,10 +2256,12 @@ void DerivationGoal::startBuilder()
(settings.allowNewPrivileges ? "0 0 1\n" : "") +
(format("%d %d 1") % sandboxGid % hostGid).str());
- /* Signal the builder that we've updated its user
- namespace. */
- writeFull(userNamespaceSync.writeSide.get(), "1");
- userNamespaceSync.writeSide = -1;
+ if (settings.userNamespace) {
+ /* Signal the builder that we've updated its user
+ namespace. */
+ writeFull(userNamespaceSync.writeSide.get(), "1");
+ userNamespaceSync.writeSide = -1;
+ }
} else
#endif
@@ -2580,12 +2586,14 @@ void DerivationGoal::runChild()
#if __linux__
if (useChroot) {
- userNamespaceSync.writeSide = -1;
+ if (settings.userNamespace) {
+ userNamespaceSync.writeSide = -1;
- if (drainFD(userNamespaceSync.readSide.get()) != "1")
- throw Error("user namespace initialisation failed");
+ if (drainFD(userNamespaceSync.readSide.get()) != "1")
+ throw Error("user namespace initialisation failed");
- userNamespaceSync.readSide = -1;
+ userNamespaceSync.readSide = -1;
+ }
if (privateNetwork) {
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index 53efc6a..d309182 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -331,6 +331,9 @@ public:
Setting<bool> allowNewPrivileges{this, false, "allow-new-privileges",
"Whether builders can acquire new privileges by calling programs with "
"setuid/setgid bits or with file capabilities."};
+
+ Setting<bool> userNamespace{this, true, "user-namespace",
+ "Whether builds are run in a private user-namespace."};
#endif
Setting<Strings> hashedMirrors{this, {"http://tarballs.nixos.org/"}, "hashed-mirrors",
--
2.5.2
strace: Process 17648 attached with 2 threads
[pid 17649] rt_sigtimedwait([HUP INT PIPE TERM WINCH], <unfinished ...>
[pid 17648] accept(3, {sa_family=AF_UNIX}, [110->2]) = 4
[pid 17648] fcntl(4, F_GETFD) = 0
[pid 17648] fcntl(4, F_SETFD, FD_CLOEXEC) = 0
[pid 17648] getsockopt(4, SOL_SOCKET, SO_PEERCRED, {pid=18101, uid=1000, gid=100}, [12]) = 0
[pid 17648] write(2, "accepted connection from pid 181"..., 46) = 46
[pid 17648] clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f495114b310) = 18114
strace: Process 18114 attached
[pid 17648] close(4) = 0
[pid 18114] set_robust_list(0x7f495114b320, 24 <unfinished ...>
[pid 17648] accept(3, <unfinished ...>
[pid 18114] <... set_robust_list resumed> ) = 0
[pid 18114] ioctl(2, TCGETS, 0x7ffd4408b810) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 18114] close(3) = 0
[pid 18114] setsid() = 18114
[pid 18114] rt_sigaction(SIGCHLD, {sa_handler=SIG_DFL, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f494fb27f10}, {sa_handler=0x40e8e0, sa_mask=~[KILL STOP RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f494fb27f10}, 8) = 0
[pid 18114] clone(strace: Process 18115 attached
child_stack=0x7f494b5d9b30, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f494b5da9d0, tls=0x7f494b5da700, child_tidptr=0x7f494b5da9d0) = 18115
[pid 18115] set_robust_list(0x7f494b5da9e0, 24) = 0
[pid 18115] poll([{fd=4, events=POLLHUP}], 1, -1 <unfinished ...>
[pid 18114] read(4, "cxin\0\0\0\0", 32768) = 8
[pid 18114] write(4, "oixd\0\0\0\0\25\1\0\0\0\0\0\0", 16) = 16
[pid 18114] read(4, "\25\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 32768) = 32
[pid 18114] sched_getaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 48
[pid 18114] sched_setaffinity(0, 128, [6]) = 0
[pid 18114] access("/nix/var/nix", R_OK|W_OK) = 0
[pid 18114] getpid() = 18114
[pid 18114] lstat("/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=8597504, ...}) = 0
[pid 18114] getuid() = 0
[pid 18114] statfs("/nix/store", {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks=120097209, f_bfree=22547256, f_bavail=16440901, f_files=30515200, f_ffree=20120719, f_fsid={val=[3413666119, 2786122112]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RDONLY|ST_RELATIME}) = 0
[pid 18114] unshare(CLONE_NEWNS) = 0
[pid 18114] mount(NULL, "/nix/store", 0x7f4950aa50fd, MS_REMOUNT|MS_BIND, NULL) = 0
[pid 18114] lstat("/nix/store/.links", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/var/nix/profiles", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/var/nix/temproots", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/var/nix/db", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/var/nix/gcroots", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] getuid() = 0
[pid 18114] lstat("/nix/var/nix/profiles/per-user", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 18114] chmod("/nix/var/nix/profiles/per-user", 01777) = 0
[pid 18114] stat("/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=8597504, ...}) = 0
[pid 18114] lstat("/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=8597504, ...}) = 0
[pid 18114] lstat("/nix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] stat("/nix/var/nix/db/reserved", {st_mode=S_IFREG|0600, st_size=8388608, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/db/big-lock", O_RDWR|O_CREAT|O_CLOEXEC, 0600) = 3
[pid 18114] fcntl(3, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] lstat("/nix/var/nix/db/schema", {st_mode=S_IFREG|0644, st_size=2, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/db/schema", O_RDONLY|O_CLOEXEC) = 5
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=2, ...}) = 0
[pid 18114] read(5, "10", 2) = 2
[pid 18114] close(5) = 0
[pid 18114] access("/nix/var/nix/db", R_OK|W_OK) = 0
[pid 18114] lstat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] getpid() = 18114
[pid 18114] getpid() = 18114
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/db/db.sqlite", O_RDWR|O_CLOEXEC) = 5
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] stat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "SQLite format 3\0\4\0\2\2\0@ \0\0\20\276\0\1>U"..., 100, 0) = 100
[pid 18114] brk(0x1c6d000) = 0x1c6d000
[pid 18114] fcntl(5, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(5, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(5, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/nix/var/nix/db/db.sqlite-journal", 0x7ffd440896e0) = -1 ENOENT (No such file or directory)
[pid 18114] stat("/nix/var/nix/db/db.sqlite-wal", 0x7ffd440896e0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "SQLite format 3\0\4\0\2\2\0@ \0\0\20\276\0\1>U"..., 1024, 0) = 1024
[pid 18114] getpid() = 18114
[pid 18114] stat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/db/db.sqlite-wal", O_RDWR|O_CREAT|O_CLOEXEC, 0644) = 6
[pid 18114] fstat(6, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] geteuid() = 0
[pid 18114] fchown(6, 0, 0) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/db/db.sqlite-shm", O_RDWR|O_CREAT|O_CLOEXEC, 0644) = 7
[pid 18114] fstat(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] geteuid() = 0
[pid 18114] fchown(7, 0, 0) = 0
[pid 18114] fcntl(7, F_GETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=128, l_len=1, l_pid=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=128, l_len=1}) = 0
[pid 18114] ftruncate(7, 0) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=128, l_len=1}) = 0
[pid 18114] fstat(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=120, l_len=1}) = 0
[pid 18114] fstat(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pwrite64(7, "\0", 1, 4095) = 1
[pid 18114] pwrite64(7, "\0", 1, 8191) = 1
[pid 18114] pwrite64(7, "\0", 1, 12287) = 1
[pid 18114] pwrite64(7, "\0", 1, 16383) = 1
[pid 18114] pwrite64(7, "\0", 1, 20479) = 1
[pid 18114] pwrite64(7, "\0", 1, 24575) = 1
[pid 18114] pwrite64(7, "\0", 1, 28671) = 1
[pid 18114] pwrite64(7, "\0", 1, 32767) = 1
[pid 18114] mmap(NULL, 32768, PROT_READ|PROT_WRITE, MAP_SHARED, 7, 0) = 0x7f49510d3000
[pid 18114] fcntl(7, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=121, l_len=2}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=124, l_len=4}) = 0
[pid 18114] fstat(6, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=121, l_len=2}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=124, l_len=4}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=120, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "SQLite format 3\0\4\0\2\2\0@ \0\0\20\276\0\1>U"..., 1024, 0) = 1024
[pid 18114] pread64(5, "\r\0\0\0\7\0>\0\0>\3\313\3y\2+\3P\1\340\1\222\0\0\0\0\0\0\0\0\0\0"..., 1024, 8192) = 1024
[pid 18114] pread64(5, "\r\2\205\0\4\0\255\0\2\211\1!\2B\0\255\0v\0v\0\0\0\0\0v\0\0\0\0\0\0"..., 1024, 9216) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0", 8) = 8
[pid 18114] read(4, "\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 32768) = 112
[pid 18114] write(4, "stla\0\0\0\0", 8) = 8
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\22\0\0\0\0\0\0\0default-builder."..., 32768) = 224
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/gc.lock", O_RDWR|O_CREAT|O_CLOEXEC, 0600) = 8
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] lstat("/nix/var/nix/temproots/18114", 0x7ffd4408a910) = -1 ENOENT (No such file or directory)
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/temproots/18114", O_RDWR|O_CREAT|O_CLOEXEC, 0600) = 9
[pid 18114] close(8) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fstat(9, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9krlzvny65gdc8s7kpb6l"..., 63) = 63
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\4\2\327\0\0\0\270\324\3\273\3(\2\327\3s\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 2048) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0x\0\0\0ap\3\267\3q\0x\3\37\2\335\2\234\2I\1\372\1\255\1]"..., 1024, 19642368) = 1024
[pid 18114] pread64(5, "\2\0\0\0\5\2^\0\0\0/d\3\261\3?\2\360\2\252\2^\0\0\0\0\0\0\0\0\0\0"..., 1024, 82455552) = 1024
[pid 18114] pread64(5, "\2\0\254\0\n\0E\0\0\0\2344\2O\2\2\3\244\1K\0\372\0\270\3/\0E\2\336\2\224"..., 1024, 50097152) = 1024
[pid 18114] pread64(5, "\n\1\210\0\f\0.\0\1E\0\365\2F\0.\2\347\0\264\1\305\0q\3z\3\274\3/\2\232"..., 1024, 40326144) = 1024
[pid 18114] pread64(5, "\5\0\0\0\1\3\371\0\0\0\n\30\3\371\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 1024) = 1024
[pid 18114] pread64(5, "\5\0\0\0W\1\253\0\0\0L\347\3\372\3\364\3\356\3\350\3\342\3\334\3\326\3\320\3\312\3\304"..., 1024, 1599488) = 1024
[pid 18114] pread64(5, "\5\0\0\0r\1i\0\0\0\1\254\3\373\3\366\3\361\3\354\3\347\3\342\3\335\3\330\3\323\3\316"..., 1024, 509952) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\233\0\3p\2\343\2V\1\304\0012\0\233\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 20480) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0>\0\0\0\0\0\0\0/nix/store/9krlz"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0unpack-bootstrap"..., 32768) = 2168
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/pvn8nrg8aziwsc7yy8wkg"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\277\0\10\1Y\0\0\1 \265\3\275\1Y\2\320\1\243\1\365\3m\3\23\2Q\0\0\0\0"..., 1024, 60784640) = 1024
[pid 18114] pread64(5, "\2\0{\0\f\0)\0\0\0\372$\2h\0\226\2\27\1\324\3\262\3k\3\32\1q\2\262\0)"..., 1024, 29923328) = 1024
[pid 18114] pread64(5, "\2\1\244\0\v\0\263\3\0\0^\204\3\260\3e\1\252\3\37\2\307\0\263\2:\1\361\1\17\2z"..., 1024, 3880960) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0>\0\3\264\3N\3\7\2\275\2w\2-\1\346\1\244\1X\1\v\0\306\0\214"..., 1024, 51023872) = 1024
[pid 18114] pread64(5, "\5\1\360\0>\1\264\0\0\0\24\273\3R\3L\1\344\2\324\1\336\1\264\2,\1\300\1\322\1\330"..., 1024, 3068928) = 1024
[pid 18114] pread64(5, "\r\3m\0\4\1\0\0\28\2\324\1\231\1\0\1\0\0I\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5049344) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/pvn8n"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0busybox.drv\0\0\0\0\0"..., 32768) = 848
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/byp55w23q804q3jad03dh"..., 56) = 56
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3e\0\n\0t\1\0\1\27\32\2\10\3\264\3\35\2\275\2S\0t\0\304\1\256\1d\1\34"..., 1024, 22755328) = 1024
[pid 18114] pread64(5, "\2\0\0\0\r\0007\0\0\1\4\224\3\276\3x\39\2\354\2\233\2L\2\10\1\300\1q\0013"..., 1024, 46928896) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2%\0\3\276\3u\0037\2\361\2\247\2m\2%\0\0\0\0\0\0\0\0\0\0"..., 1024, 79777792) = 1024
[pid 18114] pread64(5, "\5\0035\0a\0\367\0\0\1<\323\3.\3'\3 \3\31\3\22\3\v\3\4\2\375\2\366\2\357"..., 1024, 2644992) = 1024
[pid 18114] pread64(5, "\5\0\0\0b\1R\0\0\1\31\235\3\371\3\362\3\353\3\344\3\335\3\326\3\317\3\310\3\301\3\272"..., 1024, 73506816) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0n\0\3\6\0021\1L\0n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73457664) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0007\0\0\0\0\0\0\0/nix/store/byp55"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\32\0\0\0\0\0\0\0bootstrap-tools."..., 32768) = 936
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6fydsacq9zq86j3769qac"..., 71) = 71
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0016\0\v\0%\0\0\0\365\t\3\271\3k\3#\2\333\2\211\0023\0\230\1\357\1\247\0%"..., 1024, 19641344) = 1024
[pid 18114] pread64(5, "\2\1t\0\v\0N\0\0\19|\2\214\2<\1\315\0\336\0\234\1\36\2\316\3\243\1\210\3X"..., 1024, 48449536) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0.\0\0\0\f\10\3\271\3W\2\376\2\252\2Y\2\17\1\316\1\201\0011\0\333"..., 1024, 2101248) = 1024
[pid 18114] pread64(5, "\n\0\201\0\f\0002\0\0\357\0\242\2\21\1\314\1\206\2\236\2\347\3\300\1=\2V\0002\3<"..., 1024, 64978944) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0F\0\0\0\0\0\0\0/nix/store/6fyds"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0bootstrap-tools."..., 32768) = 1064
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/8wz21jkmg9ylcva2aq2aq"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\301\0\0\0T.\1\f\0\301\3\257\3g\3$\2\344\2\234\2N\1\373\1\253"..., 1024, 10976256) = 1024
[pid 18114] pread64(5, "\2\2$\0\f\0X\0\0\0\350\f\3\267\3$\0X\2\266\2u\2/\1\311\1\201\1:\0\366"..., 1024, 20824064) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0D\0\3\300\0D\3z\3\34\2\334\2\232\2V\2\16\1\277\1j\1(\0\234"..., 1024, 35226624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/8wz21"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0s_isdir.patch\0\0\0"..., 32768) = 504
[pid 18114] brk(0x1c90000) = 0x1c90000
[pid 18114] brk(0x1c80000) = 0x1c80000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/hvz9dmw8ka9y3kc8asay2"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\26\0\n\0,\0\0\0\231\373\3\215\0036\0\312\2\356\1Q\2N\0}\1\366\0,\1\252"..., 1024, 36365312) = 1024
[pid 18114] pread64(5, "\2\0|\0\n\0&\4\0\0\371e\0\351\0\227\1\316\3\7\1\207\2\37\0&\3\242\3W\0014"..., 1024, 51733504) = 1024
[pid 18114] pread64(5, "\2\3\23\0\v\0e\2\0\09\7\2\300\0e\2w\2'\0\254\3\271\0\374\1\337\1\226\1H"..., 1024, 70791168) = 1024
[pid 18114] pread64(5, "\n\2\231\0\f\0S\0\2T\2\26\1\331\1\214\1C\1\1\0\300\0S\3\274\3x\0036\2\363"..., 1024, 58814464) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\205\0\3f\2\325\28\1\247\1\26\0\205\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 25600) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/hvz9d"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0m4-1.4.17.tar.bz"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/l07pall84bn5phv0qfhqs"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2`\0\f\0001\0\0\0.\343\3\263\3R\2\373\2\263\0001\2j\2\26\1\311\1\177\1-"..., 1024, 32907264) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0b\0\0\1\0^\3\263\0b\3j\3\33\2\310\2z\2.\1\336\1\226\1N"..., 1024, 21888000) = 1024
[pid 18114] pread64(5, "\n\2c\0\f\0000\0\2'\1\334\3\247\1\221\1Q\1\22\0\305\0\205\0000\3[\3\27\2\316"..., 1024, 11879424) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0~\0\3 \2@\1b\0~\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73462784) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/l07pa"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0builder.sh\0\0\0\0\0\0"..., 32768) = 704
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/kymnbx73nhibggqpfqj7n"..., 55) = 55
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0'\1\0\0\354\246\1`\1\17\0'\3\267\3_\3\v\1\242\0\305\2\261\0o"..., 1024, 31907840) = 1024
[pid 18114] pread64(5, "\n\1\273\0\r\0&\0\2\204\1n\1'\0\356\0\256\1\375\3\266\3n\0&\3 \2\317\2I"..., 1024, 41157632) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\200\0\3r\2\324\2E\1\246\1\16\0\200\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 21504) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0006\0\0\0\0\0\0\0/nix/store/kymnb"..., 72) = 72
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\f\0\0\0\0\0\0\0move-docs.sh\0\0\0\0"..., 32768) = 1536
[pid 18114] brk(0x1ca3000) = 0x1ca3000
[pid 18114] brk(0x1c93000) = 0x1c93000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/17h0mw5sipbvg70hdsn8i"..., 57) = 57
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0r\0\0\0\347&\3\277\3p\3(\2\340\2\220\2O\0\302\0r\2\10\1\270"..., 1024, 1574912) = 1024
[pid 18114] pread64(5, "\2\1\7\0\f\0x\0\0\18\316\3\22\2\311\2\205\0023\0\273\1\351\1\232\3\261\1\f\1V"..., 1024, 36937728) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0007\3\2\226\0007\2J\1&\3t\1\373\0035\2\351\0\315\1\256\1c\0~"..., 1024, 35192832) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\230\0\3t\2\344\2J\1\276\1(\0\230\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 22528) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\08\0\0\0\0\0\0\0/nix/store/17h0m"..., 72) = 72
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0compress-man-pag"..., 32768) = 856
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zr8kv6m6565y3l7dc8rcc"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2.\0\7\1\223\1\0\0\347\25\3\261\1\340\1\223\2M\3\30\3c\2\264\2.\0\0\0\0"..., 1024, 48450560) = 1024
[pid 18114] pread64(5, "\2\0\0\0\v\0h\3\0\0\236o\3\255\3T\1\7\2\343\2\231\2I\1\376\1\262\0h\0\262"..., 1024, 60575744) = 1024
[pid 18114] pread64(5, "\2\1N\0\f\0005\4\0\0\34\335\3\37\2\323\2\215\1\247\2O\1X\1\363\1\2\0\274\0x"..., 1024, 49368064) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0H\0\3\260\3e\3\35\2\335\2\225\1\376\2E\1\263\1l\1*\0\343\0\214"..., 1024, 4537344) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/zr8kv"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0strip.sh\0\0\0\0\0\0\0\0"..., 32768) = 1128
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5hzb6zwq8xls6ny9pzg8h"..., 53) = 53
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0002\1\0\0\354\251\3\226\3@\0\200\2\370\2\243\2_\1\367\1\260\1_\1\27"..., 1024, 20056064) = 1024
[pid 18114] pread64(5, "\2\1\207\0\n\0\214\0\0\1\17\7\2Q\1\371\0\214\1\251\0\341\3\261\3j\2\377\2\231\18"..., 1024, 45508608) = 1024
[pid 18114] pread64(5, "\n\2[\0\f\0a\0\0a\2\27\0\245\1\320\0\361\2\241\1\210\1A\3\273\3g\3(\2\357"..., 1024, 60845056) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0004\0\0\0\0\0\0\0/nix/store/5hzb6"..., 72) = 72
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0patch-shebangs.s"..., 32768) = 2680
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/7ps94j28m8jgrb4za09gc"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0{\0\v\0,\0\0\0\10\306\3\263\3Z\0,\3\16\2\310\2\201\0\252\1\342\1\234\1T"..., 1024, 10170368) = 1024
[pid 18114] pread64(5, "\2\1\17\0\f\0\\\2\0\0000T\3\272\3r\0\263\0\\\1\23\3%\2\344\2\233\2I\1\375"..., 1024, 5470208) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0;\0\0;\3\266\3q\3.\2\352\2\237\2[\2\27\1\335\1\220\1H\0\374"..., 1024, 3597312) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0m\0\3b\2\313\2#\1\221\0\377\0m\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5342208) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/7ps94"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\f\0\0\0\0\0\0\0move-sbin.sh\0\0\0\0"..., 32768) = 728
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/z82dl6ialp166drqihzkz"..., 57) = 57
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0,\0\0\0\240\371\3\242\3M\3\7\2\301\2v\0022\1\353\1\252\1^\0,"..., 1024, 43798528) = 1024
[pid 18114] pread64(5, "\2\0\0\0\v\0\263\2\0\0\340\343\3\261\3j\3\34\2\323\2\200\0\263\0021\1\324\1\224\1H"..., 1024, 42196992) = 1024
[pid 18114] pread64(5, "\n\0\210\0\v\0=\0\1\36\2m\2*\1\355\3\267\0=\3u\0\320\38\1\246\1\\\0\0"..., 1024, 53185536) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\08\0\0\0\0\0\0\0/nix/store/z82dl"..., 72) = 72
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0move-lib64.sh\0\0\0"..., 32768) = 960
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/a92kz10cwkpa91k5239in"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0N\0\0\0\222r\3\250\3T\3\t\0\236\0N\0\345\2\262\2j\2$\1\333"..., 1024, 12255232) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0l\0\0\1\16#\3\251\3e\3\27\2\317\2z\2)\1\342\1\234\1L\1\6"..., 1024, 17316864) = 1024
[pid 18114] pread64(5, "\n\0\233\0\n\0002\0\3a\3\26\2\323\2\225\2K\1\374\1\270\1p\0010\0002\0\0\0\0"..., 1024, 66506752) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0t\0\3o\2\325\2<\1\247\1\17\0t\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 24576) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/a92kz"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\"\0\0\0\0\0\0\0set-source-date-"..., 32768) = 1456
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/iwa35vp5b9rg5jlpxpliv"..., 79) = 79
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\213\0\0\0010g\3\260\3f\3\30\2\250\2^\2\32\1\324\1\207\1$\0\327"..., 1024, 19640320) = 1024
[pid 18114] pread64(5, "\2\0\0\0\t\1D\0\0\0M\275\1\350\1\227\1D\3\266\3p\3'\2\326\2\216\2B\1\7"..., 1024, 29934592) = 1024
[pid 18114] pread64(5, "\n\2\237\0\f\0K\0\2_\2\4\1\300\3\266\0K\1w\1(\2\372\0\345\0\220\3v\0036"..., 1024, 9008128) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0N\0\0\0\0\0\0\0/nix/store/iwa35"..., 96) = 96
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0ld-wrapper.sh\0\0\0"..., 32768) = 5184
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/8pqmcc5xrmfg4gv2y1laa"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\265\0\0\1/K\3\257\3l\3\30\2\310\2z\0021\1\356\1\237\1R\1\2"..., 1024, 11206656) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\304\0\3\262\3q\3 \2\333\2\217\2T\2\30\1\311\1\202\1C\0\377\0\304"..., 1024, 12603392) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/8pqmc"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0cc-wrapper.sh\0\0\0"..., 32768) = 4376
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/drsg5zdsbyb3yjvp08cmg"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2U\0\f\0B\6\0\0\31\211\3\237\3U\3\2\0\316\1t\1\"\2\22\2\267\2t\1\313"..., 1024, 11985920) = 1024
[pid 18114] pread64(5, "\2\0\340\0\f\08\4\0\1!\357\1\216\1B\3l\3\267\0\355\3\34\2\310\0\217\2\207\2?"..., 1024, 13519872) = 1024
[pid 18114] pread64(5, "\n\0\214\0\v\08\0\3\274\3n\3,\2\347\2\231\2Z\2\r\1\24\08\1\306\1g\0\320"..., 1024, 60464128) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/drsg5"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0setup-hook.sh\0\0\0"..., 32768) = 1144
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/fnsbmdb57wgl8awlmi9gn"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0w\0\0\1\31\335\3\264\3j\3\36\2\312\2}\2;\1\355\1\240\1Y\1\t"..., 1024, 13088768) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0\\\2\0\0\255\241\1I\3\265\3m\0\\\3'\2\346\2|\0\363\0\244\2."..., 1024, 46437376) = 1024
[pid 18114] pread64(5, "\n\3\n\0\v\0x\0\3\250\2\266\2t\2+\1\344\1\245\1a\1\n\0\275\0x\3?\0\0"..., 1024, 28628992) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/fnsbm"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\t\0\0\0\0\0\0\0add-flags\0\0\0\0\0\0\0"..., 32768) = 1144
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5rcvjych7g40vdnvrr984"..., 54) = 54
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\203\0\v\0*\2\0\1*H\0\203\0*\3\31\2\247\3\277\2<\1\363\1\253\1Z\1\24"..., 1024, 41216000) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0X\0\0\0016\33\3\236\3W\2\373\2\253\2e\2\32\1\331\1\210\1'\0\350"..., 1024, 32343040) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0000\0\0\363\1\377\1\271\0000\1w\0012\3\272\3g\3\31\2\312\2|\0r"..., 1024, 17154048) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0z\0\3r\2\345\2J\1\261\1\22\0z\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5343232) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0005\0\0\0\0\0\0\0/nix/store/5rcvj"..., 72) = 72
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0utils.sh\0\0\0\0\0\0\0\0"..., 32768) = 864
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/jwxjgap3b0zlv64fgfvh3"..., 53) = 53
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\212\0\7\0003\3\0\18o\1\244\3\36\2\260\1g\0003\2M\0\217\0>\0>\0\0"..., 1024, 81843200) = 1024
[pid 18114] pread64(5, "\2\0016\0\v\0\224\0\0\0\223f\2\22\1\312\1\212\1A\0\351\0\224\3\261\3p\3-\2\331"..., 1024, 62461952) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0*\0\3\275\3u\3+\2\354\2\241\2\\\2\"\1\331\1\212\18\0\364\0\273"..., 1024, 21484544) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0w\0\3s\2\347\2O\1\257\1\25\0w\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 29696) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0004\0\0\0\0\0\0\0/nix/store/jwxjg"..., 72) = 72
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0setup.sh\0\0\0\0\0\0\0\0"..., 32768) = 22488
[pid 18114] brk(0x1cb4000) = 0x1cb4000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zxqydqzkm8zssw9n4jksk"..., 53) = 53
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0V\3\0\0\340m\3\300\3x\0\244\0033\0V\2\317\2\204\0021\1\336\1\224"..., 1024, 41531392) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\276\0\0\276\3\266\3|\3.\2\350\2\232\2X\2!\1\317\1\205\1F\1\0"..., 1024, 13388800) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] brk(0x1c94000) = 0x1c94000
[pid 18114] write(4, "stla\0\0\0\0004\0\0\0\0\0\0\0/nix/store/zxqyd"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0stdenv-linux-boo"..., 32768) = 2752
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/ycxcm0ihqfbgxkvpx0gd8"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3_\0\t\0\177\0\0\0013\24\3\17\2\276\2^\2\17\1\254\1Z\1\v\0\275\0\177\0\0"..., 1024, 60417024) = 1024
[pid 18114] pread64(5, "\2\0020\0\v\0c\0\0\0\242\24\0\250\0c\1\344\1\230\1K\0\371\3\256\3a\3\10\2\271"..., 1024, 60574720) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\242\0\3\271\3x\0031\2\350\2\245\2`\2\31\1\320\1\213\1<\0\371\0\242"..., 1024, 22287360) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/ycxcm"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0bootstrap-glibc."..., 32768) = 1352
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/4ykx9zwvarxmjllr36wka"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1l\0\t\0001\6\0\0\376G\0\327\3\271\3j\0001\2\333\2\217\0\211\1$\2\v\1\216"..., 1024, 60594176) = 1024
[pid 18114] pread64(5, "\2\2F\0\f\0)\0\0\0\177\370\3\263\3h\3\37\2\326\2\213\0)\1\373\1\246\1^\1\0"..., 1024, 62283776) = 1024
[pid 18114] pread64(5, "\n\0\0\0\v\0\311\0\3\272\3j\3$\2\314\2o\2/\1\355\1\235\1V\1\v\0\311\0\0"..., 1024, 4796416) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/4ykx9"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0bootstrap-gcc-wr"..., 32768) = 7064
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/90rjpibfwglfj5yp2ijyi"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0_\0\0\1\vN\3\255\3e\3\25\2\304\0_\2j\2 \1\330\1\220\18"..., 1024, 22066176) = 1024
[pid 18114] pread64(5, "\n\0\344\0\n\0X\0\0010\3#\0\353\0\227\1\275\2\2\0X\2\340\2\227\2G\0\0\0\0"..., 1024, 70071296) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/90rjp"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0stdenv-linux-boo"..., 32768) = 2976
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/mghqr2xvp7by9m1pp98zd"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\323\0\t\1A\0\0\1/\10\1\327\3\257\1\221\1A\3c\2$\3\20\2\273\2u\0\0"..., 1024, 40364032) = 1024
[pid 18114] pread64(5, "\2\0026\0\v\0\254\0\0\0M3\3\265\3o\3$\2\342\2\225\2A\0\254\1\366\1\241\1R"..., 1024, 25568256) = 1024
[pid 18114] pread64(5, "\n\2#\0\r\0001\0\2[\0\177\2\241\0\271\1\t\1\336\1\235\1Y\3\275\3\177\3/\0001"..., 1024, 6495232) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\212\0\3 \2E\1d\0\212\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73463808) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/mghqr"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0gnum4-1.4.17.drv"..., 32768) = 1680
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/1kwvqxh5z06y1gws4239k"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\215\0\v\0004\1\0\0\366\261\3\264\3^\0}\3\30\0004\2\206\0026\1\356\1\247\1?"..., 1024, 3388416) = 1024
[pid 18114] pread64(5, "\2\2D\0\n\0&\0\0\0\305\254\0q\0&\0\272\1\375\1\266\1S\1\r\3\304\3p\3\20"..., 1024, 18892800) = 1024
[pid 18114] pread64(5, "\n\3s\0\f\0\245\0\3\305\0\245\3w\0030\2\353\2\246\2Z\2\25\1\277\1i\1/\0\351"..., 1024, 35149824) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/1kwvq"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0no-sys-dirs.patc"..., 32768) = 8888
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/2xihh65mm3hjwd3d6lfrh"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1S\0\n\0\274\3\0\0\356\233\1\254\1^\3q\0\274\1\356\2\212\2\306\3\272\1\n\28"..., 1024, 5715968) = 1024
[pid 18114] pread64(5, "\2\2\255\0\t\0\314\5\0\0\225X\1v\1\27\3\260\3e\2\320\0\314\2]\2\20\1\303\0$"..., 1024, 28527616) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0)\0\3\302\3y\39\2\356\2\240\2e\2\22\1\301\1~\1>\0\374\0\267"..., 1024, 47235072) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0n\0\3j\2\307\0026\1\242\1\4\0n\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 46080) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/2xihh"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0setup-hook.sh\0\0\0"..., 32768) = 280
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/gyhbyximhn4nkrg60rzc6"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0W\0\0\0n\366\3~\3:\2\344\1\r\2\211\0W\2A\1\371\1\250\0\243"..., 1024, 15767552) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0J\0\0\0w\32\3\252\3O\2\376\2\270\2g\2\35\1\315\1y\0J\0014"..., 1024, 38541312) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\27\0\3\302\2\27\3|\3,\2\351\2\244\2V\0\0\0\0\0\0\0\0\0\0"..., 1024, 71732224) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/gyhby"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0perl-5.22.1.tar."..., 32768) = 824
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/sia6d85kziyh8qi013jjw"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\36\0\7\1\235\0\0\0\316\277\3\261\3f\1\373\1\235\2\326\2\224\2E\0\0\0\0\0\0"..., 1024, 75681792) = 1024
[pid 18114] pread64(5, "\2\0\0\0\5\2p\0\0\0\315J\3\250\3Z\3\5\2\274\2p\0\0\0\0\0\0\0\0\0\0"..., 1024, 82884608) = 1024
[pid 18114] pread64(5, "\n\0030\0\f\0000\0\0z\2\355\2\260\2i\0000\2+\3\254\1\356\1\250\1R\1\t\0\276"..., 1024, 44492800) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/sia6d"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0perl-5.22.1.drv\0"..., 32768) = 3312
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/cznv06icckk2wdxi6r4rs"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\n\0\345\0\0\1\4e\3\260\0\345\3X\3\10\2\271\2s\2(\1\337\1\223\1M"..., 1024, 64154624) = 1024
[pid 18114] pread64(5, "\2\2\271\0\5\2\26\1\0\0\357\302\3\264\3\\\2\26\2\337\2g\0\0\0\0\0\0\0\0\0\0"..., 1024, 68259840) = 1024
[pid 18114] pread64(5, "\n\0\353\0\r\0]\0\3\275\0\371\3y\3.\1\200\2\350\0]\2\240\2\\\2\27\0\244\1\310"..., 1024, 39952384) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/cznv0"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0bison-3.0.4.tar."..., 32768) = 800
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/fp4s16l9076zjwdwz16vv"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0{\0\n\0#\0\2\334\2\222\2I\1\372\0\211\1\251\0#\1U\1\25\0\311\4\201-\3"..., 1024, 73886720) = 1024
[pid 18114] pread64(5, "\5\0\0\0b\1R\0\0\0\225\10\3\371\3\362\3\353\3\344\3\335\3\326\3\317\3\310\3\301\3\272"..., 1024, 14442496) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0]\0\3`\2\304\2-\1\220\0\372\0]\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 17824768) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/fp4s1"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0bison-3.0.4.drv\0"..., 32768) = 1808
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/c6p89jcavaslrs5wf2373"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\224\0\n\0\371\6\0\0@\265\0\371\3e\1\337\1\231\3\17\3\260\1G\2\304\2v\2("..., 1024, 59797504) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0-\0\1\f\0u\1\364\1\237\1c\3\304\0\311\3\206\39\0-\2\371\2q"..., 1024, 18400256) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\233\0\3&\2M\1t\0\233\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73473024) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/c6p89"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-001.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/030y01drwlqbn955lrn21"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0\233\2\0\0\265\301\3\300\3}\3;\2\367\2\256\2g\2\17\1\303\0\347\0\233"..., 1024, 1573888) = 1024
[pid 18114] pread64(5, "\2\1T\0\n\0\277\0\0\0w\333\1\16\3\272\3v\3\24\2\307\2o\0\277\2\"\1\333\1\\"..., 1024, 113664) = 1024
[pid 18114] pread64(5, "\n\0021\0\n\0|\0\1\357\3\263\1\255\1]\0\364\3q\0\262\3+\0|\2\346\1\200\0\0"..., 1024, 47931392) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/030y0"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-002.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/h6kg9wcfnvif8dk10flw7"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\277\0\v\0k\0\0\0st\0\331\0k\2\216\1\256\3\251\3`\3 \2\325\1\26\1W"..., 1024, 36364288) = 1024
[pid 18114] pread64(5, "\2\0\0\0\r\0H\0\0\0\33\350\3\254\3c\3\24\2\303\2}\2;\1\366\1\266\1j\1)"..., 1024, 1572864) = 1024
[pid 18114] pread64(5, "\n\0\0\0\v\0\346\0\2\5\1\272\1p\3\275\3p\0032\2\356\1.\2\241\2I\0\346\0\272"..., 1024, 36996096) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/h6kg9"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-003.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/bp5sidl5da33zz4jwv811"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1P\0\n\0`\0\0\1\16G\3$\2\334\2\220\2C\1\366\0`\1h\0\373\3\274\0\251"..., 1024, 54686720) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0W\0\0\0L\322\1\376\3\260\3a\3\33\2\334\2\221\2K\1\250\0\251\0W"..., 1024, 30713856) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\35\0\3\254\3j\3(\2\347\2\243\2_\2\35\0\0\0\0\0\0\0\0\0\0"..., 1024, 82949120) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/bp5si"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-004.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/smvv33mgybic8mdqrfbb6"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\346\0\10\1S\3\0\0012;\2\311\3\272\1\236\2\201\29\3s\3\37\1S\0\0\0\0"..., 1024, 54196224) = 1024
[pid 18114] pread64(5, "\n\0s\0\v\0%\0\1?\0x\1\6\0\300\0%\3#\2\221\2\32\2\341\1\326\1\211\0s"..., 1024, 67457024) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73474048) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/smvv3"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-005.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/pckq4v9jb98z76pg4qvm0"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0S\0\0\0\357N\3\264\3t\3(\2\334\2\202\2.\0S\1\326\1\213\19"..., 1024, 20395008) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0]\0\0\0\204\241\3\270\3x\3$\2\331\2\213\2B\1\364\1\250\0]\1_"..., 1024, 27652096) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0%\0\3\264\3r\3<\2\370\2\246\2c\2 \1\314\1\212\1E\1\0\0\262"..., 1024, 30261248) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/pckq4"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-006.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/c8crhs2x9hcl214jb3y3p"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0v\3\0\0\204L\3\243\0v\3e\3!\2\330\2E\1\365\2\222\1\247\1g"..., 1024, 47204352) = 1024
[pid 18114] pread64(5, "\n\1J\0\f\0k\0\1\10\1\200\2\343\0036\1\321\2\227\2\16\2R\0\300\3\303\3x\0k"..., 1024, 33316864) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/c8crh"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-007.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/rgs9wpyzmmf7zd5l71bb7"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\231\4\0\0\266\355\0\346\3\264\3g\3\32\2\265\2m\2\30\0017\1\311\0\231"..., 1024, 60610560) = 1024
[pid 18114] pread64(5, "\2\0\225\0\f\0B\1\0\0\3348\3\263\3d\1=\3\37\2\327\2z\0B\0\351\0\241\2+"..., 1024, 45680640) = 1024
[pid 18114] pread64(5, "\n\0\320\0\v\08\3\0\205\3\300\0033\1\37\3\201\2\354\1\305\2\232\2P\2\7\08\0\0"..., 1024, 16590848) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/rgs9w"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-008.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/j3am49lij17arrfklbbx6"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\200\0\n\0005\0\0\0Y\356\2s\2)\1\326\1\217\1?\0\361\0005\0\236\3\262\3f"..., 1024, 25962496) = 1024
[pid 18114] pread64(5, "\2\2\334\0\f\0%\6\0\0\320\343\0%\1a\3\271\0k\1\3\3n\3\25\0\271\2\222\2F"..., 1024, 39962624) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\210\0\2D\3n\3\37\2\325\0\210\2\210\1,\0\341\1\367\1\265\1p\3\261"..., 1024, 14368768) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73475072) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/j3am4"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-009.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5pgw732hpzj4jkcliqpb5"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0{\1\0\0%2\3\270\3h\3\25\2\317\2\202\0021\0{\1\351\1\243\1Z"..., 1024, 62038016) = 1024
[pid 18114] pread64(5, "\n\0r\0\n\0(\0\1\n\2\30\2Z\3s\3\260\1\326\1\222\1F\0(\0\264I\4\201\21"..., 1024, 16390144) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/5pgw7"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-010.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/xapvayiwdvkn1zs37waw2"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\"\0\f\0@\3\0\18\304\2\320\2\203\28\1\223\3(\3p\1\356\1>\0\340\0\213"..., 1024, 37683200) = 1024
[pid 18114] pread64(5, "\2\2=\0\t\1\0\0\0\0005\315\2w\1V\1\0\3\301\3m\1\251\3%\2\324\1\362\2\216"..., 1024, 9295872) = 1024
[pid 18114] pread64(5, "\n\0\354\0\r\0\\\2\1E\0\240\3\262\3h\3#\2\343\2\240\0\\\2`\1\3\2\33\1\322"..., 1024, 5542912) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/xapva"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-011.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/ccg7xs4hiki81h5fx9lbx"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\317\0\n\0\200\0\0\1# \2\242\2T\2\n\3o\1\276\0\200\1n\1\34\0\332\3\272"..., 1024, 73163776) = 1024
[pid 18114] pread64(5, "\n\0\233\0\f\0Y\0\1\35\3\255\3b\3\21\0\326\0Y\2\320\2\214\1\360\0026\1\245\1f"..., 1024, 18678784) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/ccg7x"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-012.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/s669kky76y611c6bapma0"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\366\0\10\0U\0\0\0r\316\1u\1&\1\313\3b\3\16\2\264\0\246\0U\2\31\1\321"..., 1024, 62732288) = 1024
[pid 18114] pread64(5, "\2\2\26\0\f\0V\0\0\0a\341\3\256\0\241\0V\3c\3\20\1,\0\346\2\274\2p\2!"..., 1024, 13005824) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0a\0\0010\3\300\3t\0032\0\356\0a\0\256\2\352\2\237\2[\2\t\1\276"..., 1024, 6523904) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73477120) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/s669k"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-013.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/cmvxwcynpbmkrjhrl9zsn"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0W\3\0\0011)\3\272\3s\3$\2\335\2\216\0\356\2B\1\370\1\234\0W"..., 1024, 19164160) = 1024
[pid 18114] pread64(5, "\n\2@\0\f\0Q\0\19\2\1\1\303\1v\0\351\3\273\3u\3+\2\314\2\213\0\235\0Q"..., 1024, 36934656) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/cmvxw"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-014.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/islz83ql481agvklsgg2h"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1<\0\n\0G\0\0\0\264%\0\350\0G\3\263\3a\1\340\0\232\3\23\2\304\2u\0024"..., 1024, 23821312) = 1024
[pid 18114] pread64(5, "\n\0\374\0\t\0a\4\1\t\1\226\3f\0\246\3\276\1\337\0a\2$\1L\2\362\2\260\2k"..., 1024, 35955712) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/islz8"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-015.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/1hk0fqw3g1kpv71c2rwxi"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\364\0\n\0\357\6\0\0:S\1\212\3\257\1A\3\\\3\4\0\357\1\330\2\247\2i\2\34"..., 1024, 15379456) = 1024
[pid 18114] pread64(5, "\n\2L\0\r\0g\0\3)\2\336\2\240\2W\2\n\0g\1\313\0\365\1\203\1E\3\266\3q"..., 1024, 14405632) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/1hk0f"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-016.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0q7gkl1pgc0iqs9wsrif3"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3.\0\f\0&\6\0\1 q\3\251\1#\3Y\2\341\0&\2\233\2L\2\6\1\274\0\313"..., 1024, 6701056) = 1024
[pid 18114] pread64(5, "\n\1\210\0\t\0j\2\2\2\3\247\2K\1<\0j\0\301\0\375\3\27\2\325\0&\0\0\2J"..., 1024, 75612160) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73480192) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/0q7gk"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-017.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6y5gxy1fsb07mlb0487ss"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1E\0\v\0V\1\0\0\376\331\3\271\3e\3\16\0V\0\256\1\1\2\223\2L\1\374\1\251"..., 1024, 39204864) = 1024
[pid 18114] pread64(5, "\n\0\0\0\n\1\20\0\1\363\1\256\1\20\1R\3\260\3r\3\"\2\320\2\211\2@\0\314\0}"..., 1024, 14298112) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/6y5gx"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-018.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0bhhagnxjns9sg0g7l69a"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\32\0\n\0\206\3\0\0\265\206\1\221\2\305\2y\1B\1\340\0\322\0\206\3l\3\34\3\271"..., 1024, 14144512) = 1024
[pid 18114] pread64(5, "\n\3n\0\r\0V\0\3'\2\333\3\267\2\217\2I\1\374\1\274\0V\3u\1s\1&\0\350"..., 1024, 14510080) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/0bhha"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-019.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0q2gmrjghldqqiwmxyb85"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\2\254\0\f\0U\0\2\316\2_\2 \1\336\1\223\1M\1\1\0\273\0U\3\267\3o\3\37"..., 1024, 22695936) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/0q2gm"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-020.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/g9pfjwpay327dp1p5hw3c"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\35\0\n\0\234\3\0\0~\363\1\337\0\234\2v\2\"\0\363\1?\3n\1\223\3\"\2\316"..., 1024, 25541632) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0000\0\0\0\352\314\3v\3/\2\347\2\232\2W\1\371\1\260\1e\1\37\0\307"..., 1024, 14660608) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0_\0\2\341\2\236\2W\2\24\1\301\1\204\3s\0014\3\276\0\363\0\247\0_"..., 1024, 24122368) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73481216) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/g9pfj"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-021.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/k7cfyvb89fcf41lkb2wrq"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1-\0\10\0\310\2\0\0\377\325\2X\2\f\1\273\0\310\3\261\3b\1m\3\22\1-\2~"..., 1024, 41705472) = 1024
[pid 18114] pread64(5, "\2\0l\0\f\0*\2\0\0\342]\1\22\3\260\3a\0*\3\24\2\326\2\222\2>\0\312\0t"..., 1024, 18290688) = 1024
[pid 18114] pread64(5, "\n\2%\0\v\1\3\0\2k\1\214\2)\1E\3\274\3~\1\3\0032\2\372\1\337\2\262\1C"..., 1024, 59338752) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/k7cfy"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-022.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zlp7wk7wpizkppi7kmw5a"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\301\0\v\0003\0\0\0\205\21\3#\2\325\0003\2m\2\22\1\300\1u\1(\0\330\0\215"..., 1024, 35379200) = 1024
[pid 18114] pread64(5, "\n\1\353\0\r\0d\0\2B\1\264\1-\0\351\3\262\0\241\3n\2\0\3)\2\344\1p\2\231"..., 1024, 20754432) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/zlp7w"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-023.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/4nh67hipg0kprlp87bwmv"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\335\0\f\0?\5\0\0\360#\3\246\0\357\3V\3\7\2\260\0\223\2e\2\31\1\307\1\201"..., 1024, 32906240) = 1024
[pid 18114] pread64(5, "\n\2\361\0\n\0\352\0\3\273\3n\3,\2\245\1,\0\352\2\\\2\31\1\316\1y\2\361\0\232"..., 1024, 15318016) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/4nh67"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-024.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/hy3v80526mgzdl7wyk9p0"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2E\0\f\0g\0\0\0>\24\3\267\3s\3)\2\336\2\236\2P\1\360\1\241\1N\0\246"..., 1024, 7315456) = 1024
[pid 18114] pread64(5, "\n\0\231\0\v\0V\2\0\357\0014\3\271\3v\3.\1\214\2\351\0V\2\226\2N\0\255\0\364"..., 1024, 5576704) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73483264) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/hy3v8"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-025.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/ckhdsiaml19gx7d61pbcv"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\335\0\7\1\217\0\0\1\20x\3\241\1\351\3M\1\217\2\360\2\252\2/\0\0\0\0\0\0"..., 1024, 73531392) = 1024
[pid 18114] brk(0x1cb5000) = 0x1cb5000
[pid 18114] pread64(5, "\n\2\335\0\f\0z\0\2\230\2[\2\36\3\36\1\333\1\225\1M\0z\0\374\0\274\3\300\3{"..., 1024, 1163264) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/ckhds"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-026.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5zzrzlwgpr9w2na977kqj"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\216\0\f\0005\1\0\0\321\341\0005\3\264\3;\1\211\1C\2\354\2\244\2b\0\213\2\22"..., 1024, 12722176) = 1024
[pid 18114] pread64(5, "\n\0j\0\f\0&\0\0\272\3,\2\350\2\250\2d\2!\0&\1\326\1\226\1T\3\255\1\3"..., 1024, 18359296) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/5zzrz"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-027.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/7lgirlznd22svviy2iwrd"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\253\0\n\0\313\3\0\0\347\312\1\260\3\250\3X\2\257\2g\0\313\1\374\1\33\1^\2\372"..., 1024, 64233472) = 1024
[pid 18114] pread64(5, "\2\2w\0\7\1\221\3\0\1&\256\3\253\1\336\1\221\0021\3J\2\370\2\246\0\0\0\0\0\0"..., 1024, 52591616) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0\201\0\3\301\3s\2\27\0034\2\370\2\254\2[\1\322\1\230\1N\1\17\0\307"..., 1024, 59447296) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/7lgir"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-028.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/yg4wrc8fsdl0r6pqqjiyw"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\353\0\t\0\241\0\0\1\21\375\3\261\3g\2\231\1+\1j\2R\1\377\1\260\0\241\0\0"..., 1024, 80497664) = 1024
[pid 18114] pread64(5, "\n\0\320\0\f\0\216\0\1\20\2X\3\34\0\326\2\332\2\240\1\356\3\266\1X\0\216\1\243\3l"..., 1024, 59325440) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73485312) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/yg4wr"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-029.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/jw1525wgk8pky990ylrgp"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0p\0\0\0\23y\3\257\3c\2\362\2\256\2a\2\25\1\301\1\\\1\32\0\266"..., 1024, 46176256) = 1024
[pid 18114] pread64(5, "\n\2\212\0\t\1K\0\3v\3\37\2\343\2\230\2-\1\352\1\226\1K\3\276\3s\0030\2\353"..., 1024, 52556800) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/jw152"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-030.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/hi1kz08hqlb0h8khqksx4"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3_\0\v\0$\4\0\1\v\256\3\254\2b\1u\2\375\2\22\0$\0x\1\276\2\261\1\""..., 1024, 4424704) = 1024
[pid 18114] pread64(5, "\n\3l\0\n\1\27\0\0031\2\324\2\211\2/\3\271\1\341\3w\1\235\1[\1\27\0\0\0\0"..., 1024, 36144128) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/hi1kz"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-031.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/wsb7hjh2gbpkbzn80af4i"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\320\0\t\0\326\5\0\0{l\2x\2-\1\212\1.\3d\3\35\1\336\0\326\2\312\0012"..., 1024, 19684352) = 1024
[pid 18114] pread64(5, "\n\3\223\0\r\0<\0\0<\3=\2\360\2\257\2s\0020\1\352\3\276\1\234\1W\1\f\0\316"..., 1024, 50657280) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/wsb7h"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-032.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/4ansp881n69j93zai6ijz"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\225\0\v\0L\1\0\0\37M\1\227\2\210\3\267\3%\2\322\1:\28\0L\0\364\1\347"..., 1024, 19165184) = 1024
[pid 18114] pread64(5, "\2\0\0\0\v\0\253\0\0\1\n`\3\263\0\253\3]\3\21\2\270\2u\2 \1\326\1\222\1G"..., 1024, 45298688) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0`\0\3\270\3n\3\"\2\336\2\240\2X\2\r\1\300\1v\0014\0\351\0\245"..., 1024, 9519104) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73487360) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/4ansp"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-033.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/572k2yc3vyhmvnwr7bymp"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\236\0\n\0007\0\0\0<\276\0007\3\253\3T\3\10\2\300\2i\2\36\1\326\1\207\1@"..., 1024, 16104448) = 1024
[pid 18114] pread64(5, "\n\0\276\0\r\0.\0\0.\2q\0\307\2#\1\t\1\340\1\212\3\252\3[\0k\1K\2\377"..., 1024, 65028096) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/572k2"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-034.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/09mrfziw73dha205xpapy"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\28\0\n\0\232\0\0\1\20\r\3\240\3&\2\332\2\222\2C\0\232\0\360\1\362\1\227\1>"..., 1024, 70544384) = 1024
[pid 18114] pread64(5, "\n\1\37\0\f\0\210\0\0013\2\211\2?\1v\2\t\1\270\0\335\3\271\3t\3#\0\210\2\326"..., 1024, 58108928) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/09mrf"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-035.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/rmspw4wa6h0kpxrgvm87g"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\337\0\f\0Q\0\0\0.\320\3\265\3o\0Q\3)\1\342\2\345\2\210\0025\1\235\1H"..., 1024, 8196096) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0)\0\3\262\3o\0)\3,\2\352\2\250\2a\2\37\1\333\1\234\1M\1\r"..., 1024, 56391680) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/rmspw"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-036.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0rk6fix7y8w6ifgmzfmwl"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\231\0\n\0E\0\0\1\fr\0\306\1W\1\16\1\362\1\233\2\215\3\257\0E\3%\2\331"..., 1024, 9036800) = 1024
[pid 18114] pread64(5, "\n\2\v\0\v\0\256\0\0\256\3\24\2\311\2}\3\263\1\301\1\213\2;\1@\3j\0\363\2\v"..., 1024, 35937280) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\234\0\3'\2N\1u\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73488384) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/0rk6f"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-037.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/2lniq3x10j9x41mqfixr8"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\337\0\f\0L\0\0\0\327\331\3\251\0\214\0L\3g\3\32\2\303\2t\2(\1\334\1\230"..., 1024, 4439040) = 1024
[pid 18114] pread64(5, "\2\3c\0\f\0j\0\0\1(\226\3\264\3j\3\31\2\327\2\217\2L\1\367\1\230\1I\1\5"..., 1024, 22754304) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0\226\0\3\270\3v\3<\2\372\2\266\2t\2#\1\330\1\222\1T\1\25\0\330"..., 1024, 31724544) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/2lniq"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-038.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/d7iad8gylwly13nrliwpw"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\334\0\n\0\252\0\0\0\353e\3\227\0\252\0\365\3\33\2\325\2\204\2=\1\365\1\220\1E"..., 1024, 57934848) = 1024
[pid 18114] pread64(5, "\2\2Z\0\f\0,\0\0\0\32\34\3\233\0,\3P\3\0\0v\2\261\2a\2\23\1\264\1g"..., 1024, 32989184) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0s\0\3\264\3p\0030\2\336\2\217\2L\2\t\1\303\1}\19\0\367\0\260"..., 1024, 40564736) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/d7iad"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-039.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/bqa3cbk4frq47898xj9x7"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\217\0\t\0T\0\0\0{\274\2r\2*\0\251\1\333\0T\1\227\3\271\1N\0\377\0\0"..., 1024, 70850560) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0'\0\0\242\0\344\2\7\1+\1\272\3\261\3m\3(\2\332\2\226\0`\0'"..., 1024, 16581632) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/bqa3c"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-040.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/7lz88j9dss91581bm5wja"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0g\0\v\0-\0\1\357\1\247\2\332\1b\3h\0-\1\n\0\265\2\201\3\34\0s\0\0"..., 1024, 60749824) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\227\0\3'\2N\1u\0\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73489408) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/7lz88"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-041.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/flmrap6q9abyq3vfd5w6p"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3V\0\10\1{\0\0\0\0\264\2\33\1\312\1{\3\264\3c\3\f\2\306\2r\0\214\1z"..., 1024, 35564544) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0Z\0\3\253\3q\3.\2\340\2\231\2M\2\3\0Z\1\257\1m\1'\0\353"..., 1024, 32161792) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/flmra"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0bash43-042.drv\0\0"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/1wy0v22byjd0gvcdv53m4"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\36\0\v\0C\5\0\0\\p\3\254\3`\2\273\0C\2l\0\221\0\330\2\37\1\320\1\210"..., 1024, 52089856) = 1024
[pid 18114] pread64(5, "\n\3\263\0\f\0\271\0\3\306\1\224\1Q\1\4\3h\0\271\3,\2\336\2\235\2^\2 \1\343"..., 1024, 49577984) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/1wy0v"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0bash-4.3.tar.gz."..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/lc78ri8apnnbphbhiwnhl"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\316\0\n\0\310\0\0\1)\233\3\266\0\310\2|\2-\1\353\1\243\1[\1\23\3g\3\20"..., 1024, 53198848) = 1024
[pid 18114] pread64(5, "\2\1\260\0\n\0(\1\0\1\34\364\0027\1\344\3\267\1d\0(\1\30\0\305\0u\2\315\2\201"..., 1024, 70987776) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0T\0\1\0\3\275\0\301\3q\0034\2\375\0T\2\262\2b\2\33\1\322\1\213"..., 1024, 3297280) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/lc78r"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0setup-hook.sh\0\0\0"..., 32768) = 784
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/djv2yc911laq9ak65ya51"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0u\0\t\0,\0\0\1\v\313\3\"\2\322\1\244\1b\3n\0,\0\365\0\245\3\274\0\0"..., 1024, 61706240) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0_\0\3\265\3u\3,\2\355\2\223\2O\1\377\1\305\1u\0013\0\346\0\233"..., 1024, 28062720) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0m\0\3i\2\312\2/\1\235\1\7\0m\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5355520) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/djv2y"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0patchelf-0.9.tar"..., 32768) = 840
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6cyglnn29ld7z2fqrf3n8"..., 69) = 69
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\316\0\f\0\\\0\0\1\f3\3\247\3^\3\10\2\306\2m\2%\1\331\0\\\1\206\1:"..., 1024, 78191616) = 1024
[pid 18114] pread64(5, "\n\0z\0\v\0*\0\3\275\3o\3#\2\327\2\202\2<\0*\1\375\1\267\1p\1\17\0\307"..., 1024, 1653760) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\32\0\3&\2\214\1\355\1P\0\272\0\32\0\0\0\0\0\0\201\33\206\234N\t"..., 1024, 33296384) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0D\0\0\0\0\0\0\0/nix/store/6cygl"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0zlib-1.2.8.tar.g"..., 32768) = 760
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/qlbw2axj0f7vb4y8zw33j"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\307\0\n\0>\0\0\1+\353\0\351\2\243\2]\2\27\1\315\3\224\0>\0\206\1}\1+"..., 1024, 36890624) = 1024
[pid 18114] pread64(5, "\2\0\0\0\v\0\215\0\0\0\v\264\1\322\0\334\0\215\2l\2\"\0013\1\211\3x\3$\3\275"..., 1024, 42253312) = 1024
[pid 18114] pread64(5, "\n\0\0\0\6\2<\0\3\223\3K\3\r\2\304\2y\2<\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 79432704) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\207\0\3 \2G\1c\0\207\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73491456) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/qlbw2"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0zlib-1.2.8.drv\0\0"..., 32768) = 1584
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/39njvkdhg0z13bxd5bp72"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\23\0\f\0v\3\0\0\211\310\3\266\3r\3\36\2\321\2\204\2A\1\363\0v\1\261\1^"..., 1024, 62547968) = 1024
[pid 18114] pread64(5, "\n\0\0\0\10\1\275\0\3\301\3~\3;\2\330\1\275\2\224\2\10\2J\0\0\0\0\0\0\0\0"..., 1024, 72230912) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/39njv"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0new-dtags.patch\0"..., 32768) = 496
[pid 18114] brk(0x1cd7000) = 0x1cd7000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/q9pypsrw5slh7m607scrb"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0J\0\0\1\22\307\3\271\3m\3\"\2\322\2\210\0\366\1C\2\34\1\330\1\213"..., 1024, 4303872) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\6\0\3\264\3r\3#\2\322\2\221\2R\2\6\0\0\0\0\0\0\0\0\0\0"..., 1024, 71035904) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0s\0\3f\2\323\2?\1\254\1\24\0s\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 36864) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/q9pyp"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0dtneeded.patch\0\0"..., 32768) = 528
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/wy1lrg34fw2f1msbiws3b"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0K\0\0\0Rr\3\255\3f\3\27\2\320\0K\2\177\2-\1\327\1\211\1E"..., 1024, 33606656) = 1024
[pid 18114] pread64(5, "\n\0\217\0\v\0<\0\1$\3\264\3u\0035\0<\2\363\2\236\2^\2\33\1\302\1t\0\336"..., 1024, 4418560) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/wy1lr"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0deterministic.pa"..., 32768) = 656
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/sqbhaaayam0xw3a3164ks"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\346\0\f\0B\0\0\0\264\334\3\300\3u\3)\2\343\2\212\0025\1\336\1\224\1D\0\373"..., 1024, 25490432) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0a\0\0\0002)\3\263\3c\3\16\2\316\2\201\0a\2/\1\343\1\234\1U"..., 1024, 13287424) = 1024
[pid 18114] pread64(5, "\n\2c\0\f\0/\1\2\35\2\337\2\200\1\323\1\213\3\201\1>\0\307\3\310\0/\0\202\0036"..., 1024, 6316032) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/sqbha"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\22\0\0\0\0\0\0\0pt-pax-flags.pat"..., 32768) = 8664
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/warg8i0kjfr2hkc3lz3kw"..., 63) = 63
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1C\0\n\0K\0\0\1\7\210\3`\1\254\2\311\0\360\2<\1\364\0K\3\257\1\\\0\243"..., 1024, 36152320) = 1024
[pid 18114] pread64(5, "\2\0\225\0\f\0F\1\0\1\7\332\3\300\3k\3\27\0\367\2\325\0F\2\210\0024\1\326\0\245"..., 1024, 16385024) = 1024
[pid 18114] pread64(5, "\n\0|\0\f\08\0\1F\3\274\3\202\0033\2\363\2\255\08\2j\0\360\2%\1\324\1\216"..., 1024, 7129088) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0>\0\0\0\0\0\0\0/nix/store/warg8"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0fix-bsymbolic.pa"..., 32768) = 2040
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/19iv39z98bbyja1a6af1l"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2)\0\v\0-\0\0\0o?\3\251\3N\0\307\2\377\2\265\0\200\0-\1\10\1\350\1\227"..., 1024, 50966528) = 1024
[pid 18114] pread64(5, "\n\0\244\0\f\0[\0\0027\1\360\1\266\1k\0[\3\252\3]\1\37\0\337\3\27\2\313\2}"..., 1024, 2294784) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0Q\0\3g\2\302\2#\1\210\0\354\0Q\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5348352) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/19iv3"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\37\0\0\0\0\0\0\0fix-update-symbo"..., 32768) = 2976
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/24baaa2bb6x08nczkj28i"..., 76) = 76
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3o\0\t\1Y\2\0\1\0103\2B\1\361\1\236\1Y\3\271\3|\3!\2\331\2\223\1\1"..., 1024, 34277376) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0O\0\3\254\3j\3(\2\344\2\222\2M\1\372\1\253\1g\1%\0\334\0\226"..., 1024, 13473792) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0K\0\0\0\0\0\0\0/nix/store/24baa"..., 96) = 96
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0binutils-2.26.ta"..., 32768) = 816
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/w1z48c6sy2q91m9wknxmj"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1%\0\v\0;\0\0\0\321\233\0\213\2\320\3d\2\203\3\263\2=\1\354\1\241\0;\1)"..., 1024, 31413248) = 1024
[pid 18114] pread64(5, "\2\1c\0\r\0(\0\0\0\377\7\3\270\3o\0\303\0z\0(\3+\1\f\2\352\2\247\2U"..., 1024, 54945792) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\226\0\3\262\3q\3$\2\327\2\224\2A\1\377\1\301\1{\18\0\342\0\226"..., 1024, 20436992) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/w1z48"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0binutils-2.26.dr"..., 32768) = 3768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/ayl32qd9xzidmmwlwj2dp"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\202\0\f\0r\1\0\0/\200\2\340\2\232\3)\0r\2:\1\360\1\235\1O\1\7\0\276"..., 1024, 39321600) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0j\0\0\1\f\3\3\254\0j\3\\\3\23\2\311\2\204\28\1\354\1\252\1\\"..., 1024, 8761344) = 1024
[pid 18114] pread64(5, "\n\1[\0\f\0<\2\1\265\2=\1\375\0\307\2\327\2\203\0\201\1\22\3\274\3r\3\33\0<"..., 1024, 6355968) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/ayl32"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0bootstrap-gcc-wr"..., 32768) = 7208
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/a5z5pdq0gxfxfjih8ib25"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2x\0\f\0W\2\0\1\t\33\0W\3\272\3\21\2\307\2\203\0\246\0026\1\352\1\230\1P"..., 1024, 52161536) = 1024
[pid 18114] pread64(5, "\n\3\25\0\f\0]\0\2\325\2\222\2F\2\0\1\303\0]\1\204\3[\1@\0\371\3\261\0\252"..., 1024, 69494784) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\210\0\3\34\2<\1a\0\210\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73494528) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/a5z5p"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0stdenv-linux-boo"..., 32768) = 2976
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9qmg2aary29l9xyclfbl7"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3h\0\f\0{\0\0\0\366\244\3\271\3m\3\34\2\330\2\213\0026\1\351\1\241\0{\1E"..., 1024, 54249472) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0Y\0\3\273\3o\3$\2\305\2{\0025\1\354\1\255\1o\1+\0\337\0\233"..., 1024, 49634304) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/9qmg2"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0patchelf-0.9.drv"..., 32768) = 1568
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/y034al1l47rzam8z70qkd"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\225\0\10\1l\0\0\1\32_\1\373\1\264\1l\3t\0035\2M\2\347\2\233\0\0\0\0"..., 1024, 71243776) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\250\0\0\366\3\257\3p\3,\2\354\0\250\2\240\2X\2\20\1\316\1{\0010"..., 1024, 37021696) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/y034a"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0xz-5.2.2.tar.bz2"..., 32768) = 760
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9id73l19wybimps7lw5v4"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\t\1F\0\0\0\225\243\1\352\1\224\1F\3\261\3a\3\35\2\317\2\177\2/\0\316"..., 1024, 39231488) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0U\2\0\1;\355\0\236\3\252\3X\3\v\2\274\2x\2)\1\341\1\211\1?"..., 1024, 39225344) = 1024
[pid 18114] pread64(5, "\n\2\226\0\r\0E\0\3v\2\243\2U\0E\2\22\1\313\3\272\0\223\1u\1-\0\342\3."..., 1024, 27508736) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0^\0\3h\2\310\2,\1\225\0\372\0^\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 23392256) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/9id73"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0setup-hook.sh\0\0\0"..., 32768) = 296
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zf8l7zilkiy2gr1gab7l5"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3V\0\f\0/\0\0\0\r\17\0\307\1 \0z\2\377\2\257\1j\2]\0/\3\262\2\7"..., 1024, 28139520) = 1024
[pid 18114] pread64(5, "\n\3v\0\n\0013\0\3z\1\304\1\177\0013\3\302\38\2\362\2\247\2Y\2\20\3~\0\262"..., 1024, 60500992) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0|\0\3o\2\334\2N\1\264\1\27\0|\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 44032) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/zf8l7"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0paxctl-0.9.tar.g"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/jfxi4gypqrzvnzcrxrri5"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\33\0\v\0=\2\0\1\31\31\1R\0=\0023\3\300\0\211\3v\3!\2\302\0\323\1\350"..., 1024, 2085888) = 1024
[pid 18114] pread64(5, "\n\3j\0\v\0j\0\3%\2\325\2\210\29\1\334\1\230\1O\1\v\0\274\0j\3\302\0\0"..., 1024, 73687040) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/jfxi4"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0paxctl-0.9.drv\0\0"..., 32768) = 1688
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/f3yxipr6xmaf4j3bg5h7w"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\17\0\7\0\302\0\0\0\374.\1a\1\25\3\266\0\302\2o\2.\1\337\1N\1\r\1N"..., 1024, 71690240) = 1024
[pid 18114] pread64(5, "\n\0\0\0\n\1U\0\2\"\1\344\1\227\1U\3\273\3p\0031\2\372\2\260\2i\0\324\0\204"..., 1024, 34103296) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/f3yxi"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0builder.sh\0\0\0\0\0\0"..., 32768) = 1360
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/svzyykk2snk6d4ywxfnsq"..., 55) = 55
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\363\0\t\0\370\0\0\0\333\226\1\240\1L\2\345\3\300\3|\1\376\0\370\2\232\2K\0\0"..., 1024, 67499008) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\231\0\1#\3\257\3h\3\32\2\316\0\231\2\204\2=\1\367\1\260\1j\0\341"..., 1024, 41147392) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0j\0\3e\2\321\0026\1\247\1\t\0j\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5360640) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0006\0\0\0\0\0\0\0/nix/store/svzyy"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0linux-3.18.14.ta"..., 32768) = 824
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0q0z8nf9dxhcc1vmsfmsh"..., 69) = 69
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\f\0\277\0\3\273\3f\3!\2\337\2\234\2R\2\20\1\320\1\206\1=\1\1\0\277"..., 1024, 19808256) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\200\0\3\35\29\1Y\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73497600) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0D\0\0\0\0\0\0\0/nix/store/0q0z8"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0linux-headers-3."..., 32768) = 2168
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/g5y49xgc3n3prbcwfvd3w"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\301\0\t\0\345\2\0\0\3413\1<\0\345\3\257\1\324\1\202\2\35\3$\2\317\2r\0\0"..., 1024, 50326528) = 1024
[pid 18114] pread64(5, "\n\0t\0\r\0+\0\1R\0\241\0+\3\306\3\201\3<\2\371\2\265\0\356\2u\2)\1\327"..., 1024, 24524800) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/g5y49"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0separate-debug-i"..., 32768) = 1376
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/j129lwgfyh3cyffap18jc"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0*\0\0\0015\331\3\270\3t\1\24\3-\2\336\0\304\1[\2\224\2E\1\372"..., 1024, 35528704) = 1024
[pid 18114] pread64(5, "\n\2P\0\f\0^\0\2\f\1\314\1\206\0^\1<\3\262\3i\3$\0\360\0\265\2\342\2\233"..., 1024, 9103360) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0c\0\3d\2\311\2(\1\231\0\376\0c\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5364736) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/j129l"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0rpcgen-path.patc"..., 32768) = 1704
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/r0rc2prwi70hgw4jray5a"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\6\2L\0\0\1\31}\3\264\3l\3&\2\326\2\224\2L\0\0\0\0\0\0\0\0"..., 1024, 80432128) = 1024
[pid 18114] pread64(5, "\2\0\0\0\v\0\262\0\0\1\16\312\3\265\3c\3\33\2\324\2\206\0\262\2@\1\367\1\244\1O"..., 1024, 15949824) = 1024
[pid 18114] pread64(5, "\n\3%\0\r\0-\0\2\333\2\213\2C\0-\1\263\0g\3\303\2\5\1k\0\253\1(\0\352"..., 1024, 20472832) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/r0rc2"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0nix-locale-archi"..., 32768) = 3816
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/svkayyzppy2ncmax2m4kl"..., 69) = 69
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\3g\0\v\0\250\0\3\32\2\277\2t\29\1\351\3l\1\237\1G\3\271\0\375\0\250\0+"..., 1024, 72342528) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0002\0\3c\2\275\2\25\1v\0\316\0002\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 48128) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0D\0\0\0\0\0\0\0/nix/store/svkay"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0!\0\0\0\0\0\0\0dont-use-system-"..., 32768) = 1864
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5vbd382jzryfwsa30fmac"..., 78) = 78
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\t\1e\2\0\0v\344\1\371\1\262\1e\3\271\3r\3%\2\326\2\226\2B\0X"..., 1024, 40252416) = 1024
[pid 18114] pread64(5, "\n\0u\0\f\0$\0\1+\0$\3b\0\350\3\25\2\327\2\231\2F\3\271\2\3\1\276\1\200"..., 1024, 12380160) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0M\0\0\0\0\0\0\0/nix/store/5vbd3"..., 96) = 96
[pid 18114] read(4, "\7\0\0\0\0\0\0\0#\0\0\0\0\0\0\0dont-use-system-"..., 32768) = 808
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/mnglr8rr7nl444h7p50ys"..., 80) = 80
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2c\0\v\0\260\0\0\0ob\3\256\3X\3\30\2\305\2k\2\32\1\330\1\215\1K\0\373"..., 1024, 52972544) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0H\0\1\377\1\252\1e\1\37\3\263\3u\3.\0\337\2\344\2\240\2P\0\225"..., 1024, 4226048) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0O\0\0\0\0\0\0\0/nix/store/mnglr"..., 96) = 96
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\32\0\0\0\0\0\0\0glibc-crypt-blow"..., 32768) = 28008
[pid 18114] brk(0x1d02000) = 0x1d02000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/29g1iy1lyc1qgg5mjjjlb"..., 71) = 71
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0\210\0\0\1\10\t\3\271\3f\3\37\2\323\2\204\2>\1\367\0\210\1\257\1g"..., 1024, 47340544) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0%\0\2\7\0\355\1\305\1~\0010\3\274\3x\0032\2\342\2\226\2R\0\252"..., 1024, 1947648) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] brk(0x1cdd000) = 0x1cdd000
[pid 18114] write(4, "stla\0\0\0\0F\0\0\0\0\0\0\0/nix/store/29g1i"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0#\0\0\0\0\0\0\0fix_path_attribu"..., 32768) = 544
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/za0pg7fmysrcwrqcal26f"..., 80) = 80
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\346\0\v\0J\0\0\0\366H\3\261\3h\0\240\3\30\2\301\0J\2\27\1\322\1\223\1B"..., 1024, 47938560) = 1024
[pid 18114] pread64(5, "\n\0\373\0\v\0k\0\1\310\1x\0013\3\253\0\264\2\337\2\235\0k\3?\2Z\2\n\0w"..., 1024, 39800832) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0O\0\0\0\0\0\0\0/nix/store/za0pg"..., 96) = 96
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0cve-2016-3075.pa"..., 32768) = 1424
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/98q5hn2c56gis839df91n"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\264\0\0\1!\352\3\272\3n\3\35\2\327\2\231\2@\0\264\1\371\1\267\1_"..., 1024, 12733440) = 1024
[pid 18114] pread64(5, "\n\1j\0\v\0@\0\0\251\3\t\2\305\1\20\2~\29\1\363\1\265\1u\3\303\0@\0\0"..., 1024, 17858560) = 1024
[pid 18114] pread64(5, "\5\0022\0V\1\264\0\0\0\34p\1\336\3\202\3|\3v\3p\3j\3d\3^\3X\3R"..., 1024, 5665792) = 1024
[pid 18114] pread64(5, "\r\1\246\0\3\1\r\0\3g\2\304\1\r\1\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7285760) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/98q5h"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\35\0\0\0\0\0\0\0glob-simplify-in"..., 32768) = 7584
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/sh7fa5xblzqhb8diafzh9"..., 74) = 74
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\206\0\t\0B\1\0\19\245\29\1\346\1\235\3\267\3p\3\"\0B\2\337\2\224\0\206"..., 1024, 43059200) = 1024
[pid 18114] pread64(5, "\n\2\313\0\n\1\n\0\3A\2\375\1P\1\n\3|\3\305\2{\2.\1\347\1\223\0b\2\313"..., 1024, 36837376) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0I\0\0\0\0\0\0\0/nix/store/sh7fa"..., 96) = 96
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0cve-2016-1234.pa"..., 32768) = 11880
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6hm8pjimwfhx6hbkd8prj"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\310\0\f\0=\0\0\0\347\213\0=\3\262\3h\3\24\2\304\2s\0022\1\332\1w\1\37"..., 1024, 16698368) = 1024
[pid 18114] pread64(5, "\n\2\23\0\f\0c\0\0031\2\33\2\353\0c\2\253\2]\1\317\1\201\0016\0\356\0\254\3\274"..., 1024, 25253888) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/6hm8p"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0cve-2016-3706.pa"..., 32768) = 6288
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/8nfljll0idsk5r0rmrs0m"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0{\0\r\0004\2\0\1\2=\0\300\0\200\3\276\3]\3\r\2\277\2~\0004\2$\1\342"..., 1024, 6626304) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0e\0\3\276\2$\3s\0\252\0e\3(\1B\2\337\2\234\2^\1\336\0\375"..., 1024, 33586176) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0v\0\3g\2\323\0024\1\231\1\10\0v\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7415808) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/8nflj"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0%\0\0\0\0\0\0\0glibc-remove-dat"..., 32768) = 496
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9q36zh5k8gbbyrxrmggvh"..., 82) = 82
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\2\315\0\v\0\307\0\3*\2\202\3\304\2A\2\343\1\363\1\245\1S\1\25\3\201\0\307\3C"..., 1024, 33674240) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0Y\0\3d\2\314\0024\1\212\0\367\0Y\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 49152) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0Q\0\0\0\0\0\0\0/nix/store/9q36z"..., 104) = 104
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0glibc-2.23.tar.g"..., 32768) = 784
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6xppqdhq5ljlkx028bcpb"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\5\0\r\0.\0\0\1\0242\3\265\3d\3\35\2\324\2\206\2:\1\361\1\253\1[\1\f"..., 1024, 14135296) = 1024
[pid 18114] pread64(5, "\n\0\0\0\6\2S\0\3\264\3i\3 \2\326\2\222\2S\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 80395264) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/6xppq"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0glibc-2.23.drv\0\0"..., 32768) = 6352
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/hp4kybcqy6nkxf4l7gm76"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0R\0\0\1\3Q\3\273\0R\3b\3\33\2\310\2\177\2/\1\350\1\237\1T"..., 1024, 21781504) = 1024
[pid 18114] pread64(5, "\n\3\264\0\f\0\213\4\0\327\3\276\2\5\1\265\1a\1\31\0\213\3 \2\334\2\216\2G\3p"..., 1024, 33723392) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/hp4ky"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0bootstrap-gcc-wr"..., 32768) = 7200
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/3iq479qpz5smzx12s9nyy"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2%\0\v\0\233\4\0\1-M\2)\3!\1\327\3m\2\271\2u\3\266\1\207\19\0\352"..., 1024, 8648704) = 1024
[pid 18114] pread64(5, "\2\1:\0\t\0\354\3\0\0\367_\2\26\0\354\1\317\1\215\1E\3\264\3k\2\301\2^\0\356"..., 1024, 39320576) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0R\0\3\306\3\211\0036\2\350\2\224\2I\1\374\1\253\1q\1)\0\346\0\232"..., 1024, 18055168) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\215\0\3\34\2<\1f\0\215\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73501696) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/3iq47"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0stdenv-linux-boo"..., 32768) = 3376
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/03gh60vvwgwd3y38i9v0i"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\1\321\0\v\0k\1\2\364\2V\2\31\1J\1\4\0\272\1\211\0k\3\270\3\177\3=\0("..., 1024, 70363136) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/03gh6"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\f\0\0\0\0\0\0\0xz-5.2.2.drv\0\0\0\0"..., 32768) = 1424
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9ggwdxqfcxyac2x9wh55n"..., 57) = 57
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\232\0\0\0(\300\3\271\3m\3\37\2\323\2~\2+\1\341\1\220\1;\0\363"..., 1024, 33568768) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0e\0\3\300\3x\0030\2\346\2\244\2b\2\30\1\313\1\214\1A\0\374\0\260"..., 1024, 5062656) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\08\0\0\0\0\0\0\0/nix/store/9ggwd"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0zlib-1.2.8.tar.g"..., 32768) = 760
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/qlbw2axj0f7vb4y8zw33j"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/qlbw2"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0zlib-1.2.8.drv\0\0"..., 32768) = 1584
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0wlpw92qgc0b8mmb1nix7"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\177\0\n\0'\2\0\0\227\3\0\311\1\224\0\205\2f\0'\3\252\1\30\2 \1\336\2\275"..., 1024, 19771392) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0A\0\3\267\3l\0A\0031\2\344\2\231\2^\2\16\1\273\1g\1\34\0\325"..., 1024, 5948416) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/0wlpw"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0builder.sh\0\0\0\0\0\0"..., 32768) = 9344
[pid 18114] brk(0x1cfe000) = 0x1cfe000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/14b24j6k1s73v7dmr1kg5"..., 55) = 55
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\232\0\f\0x\5\0\0\373\337\0x\2\302\2|\29\1\356\1\244\3\250\1R\0\377\0\300"..., 1024, 35575808) = 1024
[pid 18114] pread64(5, "\n\0\0\0\10\1\257\0\3\263\3v\1\257\3%\2\351\2\240\2P\1\376\0\0\0\0\0\0\0\0"..., 1024, 66025472) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] brk(0x1ce8000) = 0x1ce8000
[pid 18114] write(4, "stla\0\0\0\0006\0\0\0\0\0\0\0/nix/store/14b24"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0gmp-5.1.3.tar.bz"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/q7vmqg2zcr0n6b9cm8v91"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\226\0\t\0C\0\0\0;+\2t\2!\1\317\1\216\3\260\0C\3n\3\32\2\305\1?"..., 1024, 65571840) = 1024
[pid 18114] pread64(5, "\n\0\205\0\n\0<\0\0026\1B\1\341\1\213\0<\3\270\3[\3\35\2\326\2\211\1!\0\326"..., 1024, 5946368) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\227\0\3 \2I\1p\0\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73503744) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/q7vmq"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0gmp-5.1.3.drv\0\0\0"..., 32768) = 1728
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9dx363qk0sh46icp6yr13"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3F\0\6\2\36\2\0\0\364\362\3\276\3t\2\36\2\367\2\266\2^\0\0\0\0\0\0\0\0"..., 1024, 68914176) = 1024
[pid 18114] pread64(5, "\n\0l\0\v\0,\0\2[\2\30\1\323\1c\3\270\3m\3&\2\343\1 \0,\2\241\0\367"..., 1024, 60536832) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/9dx36"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0isl-0.14.1.tar.x"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9jx421b1izbv1wqnl65a2"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\212\0\t\0+\0\3J\3\1\2\271\2o\2+\1\204\0016\0\350\0+\0\212\0\0\0\212"..., 1024, 79396864) = 1024
[pid 18114] pread64(5, "\5\0\0\0b\1R\0\0\0sX\3\371\3\362\3\353\3\344\3\335\3\326\3\317\3\310\3\301\3\272"..., 1024, 14797824) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0q\0\3d\2\322\2<\1\240\1\r\0q\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 59041792) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/9jx42"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0isl-0.14.1.drv\0\0"..., 32768) = 1656
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/qvsgrwgpwl6wnks76zz1g"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\225\0\v\0000\0\0\0X\241\2\301\2j\0000\1\347\1\237\3b\3\22\1#\0\315\0{"..., 1024, 59536384) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0z\1\3j\1\213\1H\3&\0\300\1\2\2\347\2\227\2U\2\30\3\265\0z"..., 1024, 21008384) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/qvsgr"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0upstream.patch\0\0"..., 32768) = 32768
[pid 18114] read(4, " "..., 32768) = 32768
[pid 18114] brk(0x1d13000) = 0x1d13000
[pid 18114] read(4, " if (mpfr_get_emax () != MPFR_EM"..., 32768) = 16952
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/pcwp81d05vgqsl9yhhqkr"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\16\0=\0\3\261\3q\0=\3-\2\355\2\245\2]\2\33\1\323\1\223\1V\1\t"..., 1024, 34766848) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0z\0\3f\2\325\2:\1\246\1\23\0z\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 60416) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] brk(0x1ceb000) = 0x1ceb000
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/pcwp8"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0mpfr-3.1.3.tar.b"..., 32768) = 784
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/m011lj8xcy1r9id0i9v1v"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1N\0\t\0\371\0\0\1\0\224\3\257\3\\\2\307\2~\0\371\2=\1\357\1\254\1]\0\0"..., 1024, 81902592) = 1024
[pid 18114] pread64(5, "\2\1\232\0\n\0\243\0\0\0\254a\1\353\1\v\0\243\1^\3\262\1\250\3j\2\312\2\200\0027"..., 1024, 17385472) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0R\0\3\266\3i\3\31\2\322\2\202\0\343\2B\2\0\1\304\0\225\0R\1z"..., 1024, 6363136) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0g\0\3k\2\316\29\1\236\1\7\0g\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 27249664) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/m011l"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0mpfr-3.1.3.drv\0\0"..., 32768) = 1888
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/l9lylgymh3scxpcjljfiq"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\351\0\n\0P\2\0\0\373%\0021\1\366\0\233\3\266\3!\0P\1\243\1_\1\7\2\333"..., 1024, 44695552) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0?\0\0?\1&\3\31\2\335\2\240\2Q\3\244\2\3\1\265\0\214\0\335\3b"..., 1024, 62687232) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/l9lyl"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0mpc-1.0.3.tar.gz"..., 32768) = 800
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/r46a971nkj02a2mqgqcrx"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0021\0\n\0V\0\0\0\3\204\2\335\2w\3\264\0V\3Y\1\345\1\233\1P\0\370\0\254"..., 1024, 24776704) = 1024
[pid 18114] pread64(5, "\n\1^\0\f\08\0\2\311\2\177\1h\3\255\3\16\3\\\08\0\274\1\363\1\246\0v\1\v"..., 1024, 39432192) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/r46a9"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0libmpc-1.0.3.drv"..., 32768) = 1912
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/s9a16i474kgalvk6xnl2q"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1W\0\t\1\v\0\0\1\t\251\2K\2\3\1\263\1l\3l\3)\2\325\1\v\2\224\3\277"..., 1024, 30094336) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0$\0\3\300\3K\3\17\2\315\2~\0022\1\334\1\224\1D\0\367\0\263\0g"..., 1024, 2334720) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\210\0\3%\2A\1d\0\210\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73505792) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/s9a16"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0absolute-paths.d"..., 32768) = 1168
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/p2fp6i7hjx9af1wbwr32k"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\220\0\t\0\307\2\0\0\340\365\3\265\3e\3\24\2:\0\307\1\353\1\252\1]\1\v\2\326"..., 1024, 7867392) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0I\0\2\227\2H\1\373\1\265\1y\3\276\0I\1\25\0\210\3q\0\312\3)"..., 1024, 1745920) = 1024
[pid 18114] pread64(5, "\r\1\7\0\3\0l\0\3g\1\234\0l\0l\0l\0l\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5374976) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/p2fp6"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0gettext-0.19.7.t"..., 32768) = 816
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/82jq07r0xapk7kbxxxv88"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\264\0\f\0t\0\0\0\235V\3\255\0t\0\272\3]\3\22\2\313\2\202\28\1\361\1\244"..., 1024, 35290112) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0'\0\3\253\3\\\3\17\2\311\2}\28\1\353\1\250\1U\1\f\0\302\0m"..., 1024, 21075968) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/82jq0"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\22\0\0\0\0\0\0\0gettext-0.19.7.d"..., 32768) = 2552
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/m3xfizahp0bsyz13kkr20"..., 63) = 63
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2,\0\f\0c\0\0\0z\0\3\254\3k\0\264\0c\3\35\2\330\2\202\29\1\340\1\227"..., 1024, 22629376) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\26\0\3\272\3n\3*\2\352\2\246\2X\2\26\0\0\0\0\0\0\0\0\0\0"..., 1024, 81008640) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0>\0\0\0\0\0\0\0/nix/store/m3xfi"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0libelf-0.8.13.ta"..., 32768) = 792
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/769z5jhhnk019dkpi1w01"..., 69) = 69
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0`\0\0\0011\215\3\257\3h\3\17\2\300\2t\2'\1\322\1\211\0`\18"..., 1024, 33644544) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0'\0\3u\3*\2\336\2\232\0d\0'\2[\2\23\0\247\3\274\1\277\1{"..., 1024, 14606336) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0a\0\3g\2\310\0020\1\223\0\375\0a\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 50989056) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0D\0\0\0\0\0\0\0/nix/store/769z5"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0libelf-0.8.13.dr"..., 32768) = 1592
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/kq19mzh8hlgchqh6d7vri"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\37\0\n\0\365\0\0\0\2\376\0\365\3\260\3p\3%\2\331\2\205\2-\1\340\1\227\1A"..., 1024, 34414592) = 1024
[pid 18114] pread64(5, "\n\0\202\0\r\0=\0\0\360\3\271\0\210\0=\3c\3#\2\330\2\214\2N\1u\18\2\5"..., 1024, 30486528) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/kq19m"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0texinfo-6.0.tar."..., 32768) = 792
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/3wsp9p6m5c7364f8bvabj"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\304\0\v\0&\0\0\0~@\0\347\3`\3\257\0n\0&\1g\1#\2\314\2\207\1\266"..., 1024, 14116864) = 1024
[pid 18114] pread64(5, "\n\1/\0\n\0%\0\0\366\0\247\3\273\0c\0%\3g\3\21\2\317\2\210\1\345st\0="..., 1024, 78135296) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\214\0\3\37\2E\1l\0\214\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73509888) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/3wsp9"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0texinfo-6.0.drv\0"..., 32768) = 1872
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6bx2g04inww7q96487blr"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\277\0\f\0f\3\0\0h\n\3&\2\333\2\223\2L\1\365\1\247\1S\1\16\0\306\0f"..., 1024, 24878080) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0O\0\1\366\1\261\1o\0012\3\275\3r\3*\2\342\0\242\2\216\0\345\2H"..., 1024, 64830464) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/6bx2g"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0which-2.21.tar.g"..., 32768) = 784
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/mpbj27a4vyxb15n9k8mya"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\f\0c\0\1\222\3\254\3^\2\34\1E\0c\0\377\0\247\1\330\3\25\2\322\2\200"..., 1024, 14013440) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/mpbj2"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0which-2.21.drv\0\0"..., 32768) = 1344
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/n6mri2q2lf0shn2ycbpp7"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1O\0\10\0\235\5\0\1 ^\0\371\0\235\2\214\2E\1\373\1\235\3\247\3,\0\0\0\0"..., 1024, 60887040) = 1024
[pid 18114] pread64(5, "\2\3s\0\n\0\325\0\0\0q\356\3%\2\326\2\210\2<\3\261\1\372\1\247\1_\1\31\0\325"..., 1024, 59764736) = 1024
[pid 18114] pread64(5, "\n\1\26\0\n\0\312\0\1\34\3-\2\325\2\216\2C\0\312\2\1\1\256\1^\3\266\0\0\0\0"..., 1024, 58369024) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/n6mri"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\33\0\0\0\0\0\0\0use-source-date-"..., 32768) = 1832
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/k4xxs05a0y02m36sv2hdl"..., 72) = 72
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0=\0\0\0\227[\3\262\0\205\0=\3V\3\2\2\260\2d\2\"\1\332\1\210"..., 1024, 12697600) = 1024
[pid 18114] pread64(5, "\n\0y\0\r\0;\0\0\306\1\3\3\260\3i\3-\2\345\0;\2\253\2T\2\35\1\317\1\205"..., 1024, 23094272) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0G\0\0\0\0\0\0\0/nix/store/k4xxs"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0no-sys-dirs.patc"..., 32768) = 1208
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/pz03lhak99nzyyni72m14"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\256\0\v\0+\2\0\1\7\v\1\242\2\325\0j\0+\3\256\3r\0\362\3\"\1F\28"..., 1024, 30820352) = 1024
[pid 18114] pread64(5, "\n\2\261\0\r\0007\0\2h\2 \1\344\1\231\1Y\1\25\3\f\3I\0\323\0\177\0007\3\302"..., 1024, 53847040) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0w\0\3m\2\330\2E\1\252\1\r\0w\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 65536) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/pz03l"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0gcc-5.3.0.tar.bz"..., 32768) = 800
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/drb9v6774py4mk8fzz10a"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\216\0\r\0A\2\0A\3v\0034\2\353\1\2\2\250\2]\1\316\1K\1\216\0\274\3\270"..., 1024, 39506944) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/drb9v"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0gcc-5.3.0.drv\0\0\0"..., 32768) = 5880
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/232i1a2588jzfkpz1i9n5"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2k\0\n\0\356\0\0\1\4\310\0016\0\356\3\263\3f\3\20\2\307\2v\2\36\1\307\1x"..., 1024, 25961472) = 1024
[pid 18114] pread64(5, "\n\2\333\0\16\0?\0\0?\0\177\2\233\2S\3\304\2\20\1\321\1\226\1L\3\201\1\0\0\273"..., 1024, 43403264) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\216\0\3)\2I\1i\0\216\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73511936) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/232i1"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0gcc-wrapper-5.3."..., 32768) = 7312
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zlhdqy1s32f4ppp11p3xh"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\1'\0\t\0\320\2\2\203\2:\1\363\3\262\3h\0\322\3#\1+\2\335\0J\1\265\1w"..., 1024, 59248640) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/zlhdq"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0stdenv-linux-boo"..., 32768) = 3360
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/l91xf4vy7bl1p457c955b"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\273\0\10\0=\1\0\0\222\f\2`\0=\0\203\2\f\1\314\1~\1(\0\325\0\0\0\0"..., 1024, 80939008) = 1024
[pid 18114] pread64(5, "\n\0\207\0\v\0A\0\1 \3\267\3g\3\35\2\331\2\211\2A\0A\1\374\1\263\1j\0\324"..., 1024, 18530304) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/l91xf"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0bash-4.3-p42.drv"..., 32768) = 10440
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5zwxfq9kzf9ms46icvpp4"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/5zwxf"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0gzip-1.6.tar.xz."..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/1b2a7xnk576iis3hg9qik"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1{\0\10\0\335\0\0\0\253\305\1\267\0\335\1.\3G\2\264\2S\3\266\3\1\0\0\0\0"..., 1024, 60593152) = 1024
[pid 18114] pread64(5, "\n\3\267\0\f\0X\0\3o\3%\2\350\2\255\2o\0X\1\361\1\252\1a\1\34\0\331\0\243"..., 1024, 15513600) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\221\0\3\"\2L\1k\0\221\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73519104) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/1b2a7"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\f\0\0\0\0\0\0\0gzip-1.6.drv\0\0\0\0"..., 32768) = 1400
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/ha749i969qkd2pd1zccl5"..., 57) = 57
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0k\0\0\19\24\3\257\3b\3\6\2\247\2`\2\1\1\263\1^\1\r\0\275"..., 1024, 51400704) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0%\0\2\316\2}\2A\0%\2\3\3\270\1\274\1t\0014\0s\0\364\3x"..., 1024, 22573056) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\08\0\0\0\0\0\0\0/nix/store/ha749"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0bzip2-1.0.6.tar."..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/cwhdyxkd8y1b0ycz6ybyx"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0;\0\0\0\366s\3\271\3b\3\32\2\306\2\203\29\1\351\1\243\0;\1U"..., 1024, 23067648) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0/\0\1\362\3\265\3c\3 \2\327\2\217\2@\1\246\1P\0/\1\20\0\307"..., 1024, 3214336) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/cwhdy"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0bzip2-1.0.6.drv\0"..., 32768) = 1960
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/bjnysj9kh4w00f1x8qx2d"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2E\0\t\0_\3\0\0=\261\2\316\0_\2\177\3\274\1\365\1\245\1X\1\t\0\277\0\0"..., 1024, 61795328) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0\224\0\3\300\3x\3.\2\360\2\253\2a\2%\1\345\1\242\1Z\1!\0\345"..., 1024, 7269376) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/bjnys"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0xz-5.2.2.tar.bz2"..., 32768) = 760
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9id73l19wybimps7lw5v4"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/9id73"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\f\0\0\0\0\0\0\0xz-5.2.2.drv\0\0\0\0"..., 32768) = 1424
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/gj8cljh4kj4disbji8z70"..., 57) = 57
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\32\0\f\0n\0\0\0\226w\3\265\3b\3\36\2\323\2\215\2A\2\0\1\261\1n\1 "..., 1024, 27209728) = 1024
[pid 18114] pread64(5, "\n\3\256\0\n\1\32\0\1\365\1\260\1l\1\32\3\301\3k\3\31\2\322\2\217\2?\0\311\0\214"..., 1024, 14672896) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\217\0\3*\2N\1i\0\217\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73520128) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\08\0\0\0\0\0\0\0/nix/store/gj8cl"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0binutils-2.26.ta"..., 32768) = 816
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/w1z48c6sy2q91m9wknxmj"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/w1z48"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0binutils-2.26.dr"..., 32768) = 3800
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/0fkvs6rjpi5jv2z6hxb6m"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\207\0\n\0W\0\0\0\251u\3\252\0\252\1<\0\366\3]\2\377\2\264\2i\2\25\0W"..., 1024, 48448512) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0@\0\0@\3\262\3x\3-\2\340\2\222\2S\2\31\1\333\1\230\1J\1\5"..., 1024, 35500032) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/0fkvs"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\32\0\0\0\0\0\0\0attr-2.4.47.src."..., 32768) = 840
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/nbqs99ihlpjd0bwdnsikr"..., 71) = 71
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\323\0\v\0\232\0\0\0\371\211\3\256\3^\3\2\2\272\2q\2'\1\330\1\204\1:\0\232"..., 1024, 45936640) = 1024
[pid 18114] pread64(5, "\2\0\0\0\f\0\214\0\0\0\244\320\3\265\3h\3\36\0\324\0\214\2\330\2\220\2E\2\0\1\300"..., 1024, 11824128) = 1024
[pid 18114] pread64(5, "\n\1\374\0\t\0F\0\3\276\2<\1\267\1m\1(\0\332\0F\0\224\3j\0\0\0\0\0\0"..., 1024, 69641216) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0F\0\0\0\0\0\0\0/nix/store/nbqs9"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0attr-2.4.47.drv\0"..., 32768) = 1728
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/rfpz70zrc9k2x6p2vj68s"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\f\0\6\0020\0\0\0\205h\3\243\3b\3\30\2\305\2s\0020\0\0\0\0\0\0\0\0"..., 1024, 73539584) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\247\0\1\303\1\177\1,\0\351\0\247\3\264\1\376\3h\3'\2\345\2\220\2I"..., 1024, 34970624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/rfpz7"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0acl-2.2.52.src.t"..., 32768) = 832
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/pvnizwkbrfpypjb2v9rn3"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\r\0\0\0\4\0\202\0\3\34\2C\1_\0\202\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73523200) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/pvniz"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0acl-2.2.52.drv\0\0"..., 32768) = 2040
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/kj471d99ihv7gsxxqvvh1"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\356\0\v\0<\0\0\0\335\335\3\253\3Y\2\5\3\6\2\205\2B\0<\1\247\1V\0\360"..., 1024, 11326464) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0003\0\3\250\3_\2\370\0003\2\255\2k\2!\1\337\1\226\1O\1\v\0\307"..., 1024, 49111040) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/kj471"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\31\0\0\0\0\0\0\0coreutils-8.25.t"..., 32768) = 816
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9adjx6chai703ij9sbyv8"..., 70) = 70
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\326\0\n\0\245\0\0\0016\21\3s\3#\2\205\29\1b\1\16\1\362\1\264\3\271\0\245"..., 1024, 26202112) = 1024
[pid 18114] pread64(5, "\n\1\356\0\f\0005\0\3\263\1\244\3\21\1Z\0005\0{\1\22\0\306\3h\2\317\2\212\2J"..., 1024, 50458624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0E\0\0\0\0\0\0\0/nix/store/9adjx"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\22\0\0\0\0\0\0\0coreutils-8.25.d"..., 32768) = 2296
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/1hrszk5fk42z0rckw2y9r"..., 63) = 63
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\r\0g\0\3\275\3v\1>\0\356\3/\1\204\2\337\0\252\2\230\2[\2\37\1\314"..., 1024, 17390592) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0>\0\0\0\0\0\0\0/nix/store/1hrsz"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0diffutils-3.3.ta"..., 32768) = 808
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/hp2h5dggz6ksndss52iax"..., 69) = 69
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\1R\0\f\0&\0\1\6\3\272\0q\3x\3.\0&\2\354\2\206\2?\0\272\1\352\1\241"..., 1024, 30998528) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0~\0\3\35\2A\1\\\0~\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73528320) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0D\0\0\0\0\0\0\0/nix/store/hp2h5"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0diffutils-3.3.dr"..., 32768) = 1576
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/50c1rj51h5x6gbfgz8mbs"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\267\0\n\0\261\2\0\0\316+\3j\0\261\2>\3\37\2\313\2\203\1\345\1\225\1O\1\7"..., 1024, 64232448) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0002\0\0002\3\274\3w\3)\2\345\2\231\2T\2\26\1\322\1\211\1:\0\366"..., 1024, 22420480) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/50c1r"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0findutils-path.p"..., 32768) = 688
[pid 18114] brk(0x1d14000) = 0x1d14000
[pid 18114] brk(0x1d04000) = 0x1d04000
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/mlks49c4zngg22ss08v17"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3d\0\r\0004\0\0\0\333\366\3\277\3{\0004\3\27\2\324\2\215\2B\1\362\1\245\1T"..., 1024, 47883264) = 1024
[pid 18114] pread64(5, "\n\2\\\0\n\0\326\1\2\357\2\242\1\35\0\326\2\f\1\277\1t\3\312\3\202\0032\2\242\0\362"..., 1024, 24148992) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0P\0\3b\2\313\2+\1\221\0\365\0P\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 110592) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/mlks4"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0change_echo_path"..., 32768) = 736
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zcpdc2zbg74ckyknl5m1j"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0Q\0\0\0H\t\3\257\3g\3!\0Q\2\331\2\223\2&\1\336\1\227\1J"..., 1024, 25330688) = 1024
[pid 18114] pread64(5, "\n\0015\0\r\0,\0\3\300\3|\0033\2\370\0\257\2\264\2h\2\21\1\310\0q\0\357\0,"..., 1024, 2972672) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/zcpdc"..., 88) = 88
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\37\0\0\0\0\0\0\0disable-test-can"..., 32768) = 656
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/7996wckmkai2zblz29y5j"..., 76) = 76
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\26\0\f\0}\0\0\0p\325\3\267\3p\3\36\2\330\2\210\2A\1\356\1\236\1^\1\v"..., 1024, 39692288) = 1024
[pid 18114] pread64(5, "\n\0\0\0\n\1&\0\1&\1\377\1\276\1x\3\271\3g\3#\2\325\2\177\2?\0\336\0E"..., 1024, 24395776) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0K\0\0\0\0\0\0\0/nix/store/7996w"..., 96) = 96
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\32\0\0\0\0\0\0\0findutils-4.4.2."..., 32768) = 824
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/skl7q6i8lln6rmznzfn4v"..., 71) = 71
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\356\0\7\0U\1\0\0\353\346\1\324\1\226\0U\2#\0\240\1V\0\377\1\347\1\221\1\347"..., 1024, 53073920) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0001\0\3\267\3u\0037\2\374\2\263\2\\\2\30\1\312\1\216\1@\1\0\0\301"..., 1024, 11378688) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0F\0\0\0\0\0\0\0/nix/store/skl7q"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0findutils-4.4.2."..., 32768) = 2280
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/cfg4y6yr67yw4k7hkzkaf"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\255\0\f\0a\0\0\1\30\200\3\252\3X\3\26\2\317\2{\0022\0a\0\271\1\352\1\235"..., 1024, 29472768) = 1024
[pid 18114] pread64(5, "\n\0\233\0\r\0P\0\1}\3\256\3d\0\357\3\37\2\326\2\211\0\252\2K\2\0\1\275\0016"..., 1024, 34148352) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/cfg4y"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\32\0\0\0\0\0\0\0libsigsegv-2.10."..., 32768) = 824
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/9q430kp7nb31iknqcd4fs"..., 71) = 71
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\r\0\0\0\6\0e\0\3k\2\312\0020\1\224\0\377\0e\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 45754368) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0F\0\0\0\0\0\0\0/nix/store/9q430"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0libsigsegv-2.10."..., 32768) = 1392
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/nvldz7v2dymivasm4pfab"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0[\1\0\0\254\272\0\364\1\234\1G\3\262\3g\0[\0\247\3&\2\336\1\337"..., 1024, 65413120) = 1024
[pid 18114] pread64(5, "\n\0\273\0\f\0)\0\1j\0)\0y\3\302\3s\1\31\3$\2\335\2\225\2M\1\375\1\261"..., 1024, 21487616) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\220\0\3\"\2I\1j\0\220\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73533440) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/nvldz"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0gawk-4.1.3.tar.x"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/kwajq9lnhs0ihi7mj0975"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\36\0\f\0'\1\0\0\327\250\3\254\3a\3\r\2\276\2e\0'\2\24\1\274\1f\1\""..., 1024, 48439296) = 1024
[pid 18114] pread64(5, "\n\1U\0\f\0`\1\0\375\0\264\3\264\2\5\0`\3u\3*\2\215\2H\1\307\1\204\2\326"..., 1024, 35693568) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/kwajq"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0gawk-4.1.3.drv\0\0"..., 32768) = 1712
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/18gkfg3di4qd8840djkj8"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\f\0O\0\0\236\0O\0\340\1\331\1k\1\36\3\266\3v\3(\2\277\2y\2+"..., 1024, 47791104) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/18gkf"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0impure-dirs.patc"..., 32768) = 936
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/2vcw4vlinll7w0qkn4kjc"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3[\0\v\0\231\0\0\0\233\325\3\271\3i\3\v\2\272\2i\2 \1\315\1x\0017\0\341"..., 1024, 13498368) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0&\0\3\266\3j\3/\2\353\2\247\2b\2#\1\336\1\232\1O\1\r\0\306"..., 1024, 3550208) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0r\0\3i\2\322\2=\1\242\1\f\0r\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 117760) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/2vcw4"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\21\0\0\0\0\0\0\0no-tty-name.patc"..., 32768) = 2056
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/walmizw8ccs0bazrrzppi"..., 62) = 62
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0=\0\0\0\0\0\0\0/nix/store/walmi"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0make-4.1.tar.bz2"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/kdmkpi0r4r0k4d8qhdnxj"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\372\0\n\0\255\0\0\0\23\216\3\252\3\\\3\10\2\266\2h\2&\1\334\1\232\1J\0\255"..., 1024, 67063808) = 1024
[pid 18114] pread64(5, "\n\1\17\0\r\0005\2\1@\1\300\1\202\0005\3\264\3r\0\302\3#\1\375\2\327\2\205\2="..., 1024, 15956992) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/kdmkp"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0gnumake-4.1.drv\0"..., 32768) = 1768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/j5bqv4h87skp8bppqw8qi"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\227\0\t\0\365\0\0\0\206\342\0\365\1\233\2\270\2t\3\236\3O\2+\1\337\1K\1\343"..., 1024, 53339136) = 1024
[pid 18114] pread64(5, "\n\2\207\0\v\0H\0\2?\1\361\3\275\1\251\0H\1`\1\23\0\313\0\217\3w\0030\0\0"..., 1024, 77219840) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/j5bqv"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0sed-4.2.2.tar.bz"..., 32768) = 792
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/646sibd2ksdpysixqijj8"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0&\0\0\0\4w\3\267\3m\3\34\2\277\2s\2'\1\301\1\202\1=\0\373"..., 1024, 13891584) = 1024
[pid 18114] pread64(5, "\n\2\227\0\v\0w\0\2H\1\374\1\263\1e\1\24\3\253\0\314\0w\3^\2\343\3\36\0\0"..., 1024, 30316544) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\214\0\3 \2E\1f\0\214\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73535488) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/646si"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0gnused-4.2.2.drv"..., 32768) = 1352
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/z5nj1rlwzarg2zcmjwf6l"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\341\0\t\0\360\2\0\0\366\311\2T\2\r\1\232\1D\3\265\3m\3+\0\360\2\226\1\0"..., 1024, 39437312) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0007\0\3\275\3x\0034\2\360\2\255\2j\0s\2-\1\361\1\242\1U\1\25"..., 1024, 23555072) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/z5nj1"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0tar-1.28.tar.bz2"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/53zp30map5w21y5bdn7yp"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\224\0\f\0>\0\0\0015\246\3\271\3o\3'\2\322\2\177\2-\1\336\1\215\1J\0>"..., 1024, 1010688) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0M\0\3\261\3f\3\36\2\322\2\207\2<\1\357\1\247\1g\1(\0\326\0\222"..., 1024, 13137920) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/53zp3"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0gnutar-1.28.drv\0"..., 32768) = 1440
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/7jsbaw5glqcxaw5g9f8ck"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1d\0\n\0`\1\0\0011\341\1\361\1\257\1p\0`\3\257\3\33\2\317\1\t\2B\0\264"..., 1024, 51390464) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\20\0\3\256\3k\2\20\3#\2\337\2\224\2U\0\0\0\0\0\0\0\0\0\0"..., 1024, 80183296) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/7jsba"..., 80) = 80
[pid 18114] read(4, "\7\0\0\0\0\0\0\0\23\0\0\0\0\0\0\0CVE-2016-1283.pa"..., 32768) = 936
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/465qbb1waa7lcz0lwhzr5"..., 64) = 64
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0y\0\0\1.\17\3\263\3m\3&\2\323\0y\2\220\2L\2\10\1\264\1u"..., 1024, 26114048) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0e\0\0\261\2\16\1\321\1\213\1D\3\263\0\377\3n\3,\2\343\2\230\2P"..., 1024, 9272320) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0c\0\3f\2\313\0021\1\227\0\374\0c\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 5414912) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0?\0\0\0\0\0\0\0/nix/store/465qb"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0pcre-8.38.tar.bz"..., 32768) = 824
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/qabdh722crdbkh8cvf7zg"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\200\0\v\0;\0\0014\2T\2\r\1\304\1t\0;\3\276\3s\3/\2\345\2\226\0\327"..., 1024, 18796544) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\217\0\3 \2I\1j\0\217\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73537536) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/qabdh"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0pcre-8.38.drv\0\0\0"..., 32768) = 1952
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/y6j1ijlvayajq5hkw2pi1"..., 58) = 58
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\220\0\v\0d\0\0\18x\1\362\1\255\2\336\1L\3\301\0\366\0\252\2\226\2C\3s"..., 1024, 60666880) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\30\0\3\272\3q\3)\2\343\2\236\2^\2\30\0\0\0\0\0\0\0\0\0\0"..., 1024, 81910784) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\09\0\0\0\0\0\0\0/nix/store/y6j1i"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0grep-2.22.tar.xz"..., 32768) = 776
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/r8ca2xvis6vnf9zx3zmq1"..., 65) = 65
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1U\0\r\0)\0\0\0>B\3\255\3[\3\23\2\303\2u\2-\1\352\1\241\0)\1["..., 1024, 36786176) = 1024
[pid 18114] pread64(5, "\n\3\24\0\r\0D\0\2\306\2\201\2?\1\375\1\267\1q\3\302\1+\0\335\0\214\3t\0D"..., 1024, 5044224) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0@\0\0\0\0\0\0\0/nix/store/r8ca2"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0gnugrep-2.22.drv"..., 32768) = 2296
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/c5a4ll64pppnhyf34vrpw"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\26\0\f\0<\0\0\1*m\1J\0~\0<\3\263\3^\3\22\2\315\2x\0\315\2."..., 1024, 52477952) = 1024
[pid 18114] pread64(5, "\n\1\2\0\f\0N\0\1S\2o\1\17\3\16\2\"\0\251\1\336\2\272\0N\1\235\3\271\3u"..., 1024, 18395136) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/c5a4l"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\22\0\0\0\0\0\0\0ed-1.12.tar.gz.d"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/05h0av9p6djdgk4aa9jn3"..., 63) = 63
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0r\2\0\0\3626\3\252\0r\3h\3\34\2\315\2\203\2<\1\366\1\270\1a"..., 1024, 2578432) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0002\0\3\276\3w\3-\2\341\2\210\2.\1\341\1\236\1U\1\n\0\304\0~"..., 1024, 43953152) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\231\0\3#\2N\1t\0\231\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73540608) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0>\0\0\0\0\0\0\0/nix/store/05h0a"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0ed-1.12.drv\0\0\0\0\0"..., 32768) = 1344
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/l2qjrnj1jsf87sicf3az7"..., 56) = 56
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0013\0\v\0;\0\0\0\262\212\1T\3\262\0;\1\250\0\223\0\342\3i\3\36\2\322\2\206"..., 1024, 35298304) = 1024
[pid 18114] pread64(5, "\n\1R\0\r\0)\2\2\1\1^\0)\1\267\1\4\0\302\3\255\2\227\0|\3e\3\26\2Y"..., 1024, 30645248) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0007\0\0\0\0\0\0\0/nix/store/l2qjr"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\26\0\0\0\0\0\0\0patch-2.7.5.tar."..., 32768) = 784
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/x4i3la9h4iv3v2jfmdjjy"..., 67) = 67
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\21\0\t\0\312\0\0\0\322#\0012\3\264\2\261\2h\2\34\0\312\3O\3\7\1\205\0\0"..., 1024, 62611456) = 1024
[pid 18114] pread64(5, "\n\2\t\0\f\0W\0\2\336\3\261\2`\1\302\3j\2\231\1{\0011\0\350\3 \0\245\0W"..., 1024, 55085056) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0}\0\3m\2\320\2:\1\252\1\23\0}\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 38984704) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0B\0\0\0\0\0\0\0/nix/store/x4i3l"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\17\0\0\0\0\0\0\0patch-2.7.5.drv\0"..., 32768) = 1552
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/8lqdmfsbq85nrf95lyn2v"..., 60) = 60
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\331\0\t\0\345\2\0\0\256\322\3\300\3u\0016\1\210\3'\0\345\2\317\2\210\2\36\0\0"..., 1024, 61316096) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0(\0\1O\0\261\3\266\3m\3(\2\351\0o\1\n\2\245\2_\0(\2\34"..., 1024, 39346176) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0;\0\0\0\0\0\0\0/nix/store/8lqdm"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0patchelf-0.9.tar"..., 32768) = 840
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/6cyglnn29ld7z2fqrf3n8"..., 69) = 69
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0D\0\0\0\0\0\0\0/nix/store/6cygl"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0patchelf-0.9.drv"..., 32768) = 1568
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/iiyhpmfaj47akj98yv9qy"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0p\0\v\0)\0\0\0\377f\3\0\2\270\2o\0)\0\351\0\234\1\333\1r\1+\3\263"..., 1024, 48095232) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\08\0\3\267\3u\0031\2\362\2\247\2h\2\20\1\272\1f\1\26\0\315\0\213"..., 1024, 66950144) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0<\0\0\0\0\0\0\0/nix/store/iiyhp"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0paxctl-0.9.tar.g"..., 32768) = 768
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/jfxi4gypqrzvnzcrxrri5"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/jfxi4"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\16\0\0\0\0\0\0\0paxctl-0.9.drv\0\0"..., 32768) = 1688
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/p90vba7z0jmjnlrh6kd70"..., 59) = 59
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2g\0\f\0N\0\0\0\214\270\1*\2\5\1\271\0\336\3\264\1u\0N\3k\3\32\2\321"..., 1024, 19909632) = 1024
[pid 18114] pread64(5, "\n\2\352\0\r\0*\0\2\241\2]\0p\2\31\1\321\1\224\1O\1\20\3\276\0\300\0*\3s"..., 1024, 36887552) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\242\0\3'\2G\1s\0\242\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 73543680) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0:\0\0\0\0\0\0\0/nix/store/p90vb"..., 80) = 80
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\25\0\0\0\0\0\0\0gcc-wrapper-5.3."..., 32768) = 7744
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/fxvl4vspnq5aj5baypxnl"..., 66) = 66
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\224\0\10\0\367\0\0\0\362\277\3\264\0\367\3#\2\331\1M\1\355\1\245\2C\0\0\0\0"..., 1024, 65630208) = 1024
[pid 18114] pread64(5, "\n\3\256\0\f\0V\0\3\\\3\f\2\305\2\202\2>\1\365\1\251\0\237\1d\0V\1\37\0\344"..., 1024, 39784448) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0A\0\0\0\0\0\0\0/nix/store/fxvl4"..., 88) = 88
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0stdenv.drv\0\0\0\0\0\0"..., 32768) = 9264
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/wz4hklfqcwadgf100py2v"..., 55) = 55
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0C\0\0\0\265\306\3\247\3X\3\r\2\271\2p\2)\0C\1\330\1\226\1U"..., 1024, 69960704) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\23\0\3\265\3y\0034\2\23\2\342\2\245\2V\0\0\0\0\0\0\0\0\0\0"..., 1024, 78995456) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0006\0\0\0\0\0\0\0/nix/store/wz4hk"..., 72) = 72
[pid 18114] read(4, "\10\0\0\0\0\0\0\0\5\0\0\0\0\0\0\0x.drv\0\0\0007\3\0\0\0\0\0\0"..., 32768) = 1072
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zbgyqwnmzgz3c07zlr5f9"..., 50) = 50
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\r\0X\0\3\265\3k\0X\3%\2\306\2j\2\"\1\332\1\235\1^\1\33\0\326"..., 1024, 14447616) = 1024
[pid 18114] pread64(5, "\5\3f\0_\0\360\0\0\1>T\3_\3X\3Q\3J\3C\3<\0035\3.\3'\3 "..., 1024, 83052544) = 1024
[pid 18114] pread64(5, "\r\0\0\0\2\2b\0\0031\2b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 83446784) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "stla\0\0\0\0001\0\0\0\0\0\0\0/nix/store/zbgyq"..., 72) = 72
[pid 18114] read(4, "(\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0005\0\0\0\0\0\0\0/nix/sto"..., 32768) = 80
[pid 18114] write(4, "TRTS\0\0\0\0\0\0\0\0\360D\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] sched_setaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 0
[pid 18114] openat(AT_FDCWD, "/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 8
[pid 18114] read(8, "0-11\n", 8192) = 5
[pid 18114] close(8) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv", O_RDONLY|O_CLOEXEC) = 8
[pid 18114] fstat(8, {st_mode=S_IFREG|0444, st_size=823, ...}) = 0
[pid 18114] read(8, "Derive([(\"out\",\"/nix/store/sy4im"..., 823) = 823
[pid 18114] close(8) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\313\0\f\0z\0\0\1\ry\3\261\3_\3\27\0z\2\323\2\212\2:\1\363\1\250\1b"..., 1024, 25667584) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0^\0\3\263\3s\3.\2\343\2\233\2_\2\26\1\315\1\201\1:\0\360\0\256"..., 1024, 59847680) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] lstat("/root/.cache/nix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] lstat("/root/.cache/nix/binary-cache-v5.sqlite", {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] getpid() = 18114
[pid 18114] openat(AT_FDCWD, "/root/.cache/nix/binary-cache-v5.sqlite", O_RDWR|O_CREAT|O_CLOEXEC, 0644) = 8
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite", {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] pread64(8, "SQLite format 3\0\20\0\1\1\0@ \0\0\16@\0\0\1\372"..., 100, 0) = 100
[pid 18114] brk(0x1d3a000) = 0x1d3a000
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44088e90) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] pread64(8, "SQLite format 3\0\20\0\1\1\0@ \0\0\16@\0\0\1\372"..., 4096, 0) = 4096
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089bf0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089bf0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089bf0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089a50) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] pread64(8, "\r\0\0\0\1\17\367\0\17\367\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096, 24576) = 4096
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089cf0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] pread64(8, "\n\0\0\0\2\17\312\0\17\345\17\312\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096, 8192) = 4096
[pid 18114] pread64(8, "\r\0\0\0\2\17\243\0\17\321\17\243\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096, 4096) = 4096
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089cf0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089eb0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] pread64(8, "\2\f\321\0\35\n\366\2\0\0\1\262\f\246\rP\v!\v\370\r\246\16'\n\366\r\374\16R\16\250"..., 4096, 20480) = 4096
[pid 18114] pread64(8, "\n\0034\0_\0\352\1\3\367\6\31\6\216\5\313\4l\4E\5\10\10b\10;\10\24\5V\7\355"..., 4096, 1568768) = 4096
[pid 18114] pread64(8, "\5\0\0\1\320\0052\0\0\0\1\372\17\373\17\366\17\361\17\354\17\347\17\342\17\335\17\330\17\323\17\316"..., 4096, 16384) = 4096
[pid 18114] pread64(8, "\r\0\0\0\6\16\271\0\17\312\17\223\17]\17&\16\360\16\271\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096, 2068480) = 4096
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] futex(0x1d35eb8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d34bc8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-journal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18114] pread64(8, "\0\0\16@\0\0\1\372\0\0\0\0\0\0\0\0", 16, 24) = 16
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite-wal", 0x7ffd44089eb0) = -1 ENOENT (No such file or directory)
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] pread64(8, "\n\0\0\0a\0\344\2\r\371\n\21\t\352\t\303\t\234\tu\tO\t(\t\1\fj\10\332\10\263"..., 4096, 1773568) = 4096
[pid 18114] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] futex(0x1d35eb8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d34bc8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f494a5d9000
[pid 18114] mprotect(0x7f494a5da000, 8388608, PROT_READ|PROT_WRITE) = 0
[pid 18114] clone(child_stack=0x7f494add8b30, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f494add99d0, tls=0x7f494add9700, child_tidptr=0x7f494add99d0) = 18116
strace: Process 18116 attached
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18116] set_robust_list(0x7f494add99e0, 24 <unfinished ...>
[pid 18114] <... fcntl resumed> ) = 0
[pid 18116] <... set_robust_list resumed> ) = 0
[pid 18114] fstat(5, <unfinished ...>
[pid 18116] mmap(NULL, 134217728, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0 <unfinished ...>
[pid 18114] <... fstat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18116] <... mmap resumed> ) = 0x7f49425d9000
[pid 18116] munmap(0x7f49425d9000, 27422720 <unfinished ...>
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18116] <... munmap resumed> ) = 0
[pid 18114] <... fcntl resumed> ) = 0
[pid 18116] munmap(0x7f4948000000, 39686144 <unfinished ...>
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18116] <... munmap resumed> ) = 0
[pid 18114] <... fcntl resumed> ) = 0
[pid 18116] mprotect(0x7f4944000000, 135168, PROT_READ|PROT_WRITE <unfinished ...>
[pid 18114] fstat(5, <unfinished ...>
[pid 18116] <... mprotect resumed> ) = 0
[pid 18114] <... fstat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18116] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18116] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18116] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18116] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18114] <... futex resumed> ) = 0
[pid 18116] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18114] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18116] <... fcntl resumed> ) = 0
[pid 18116] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18116] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18116] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18114] <... futex resumed> ) = 0
[pid 18116] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18116] <... futex resumed> ) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/5zwxfq9kzf9ms46icvpp46za2d9vw2ld-bash-4.3-p42.drv", O_RDONLY|O_CLOEXEC <unfinished ...>
[pid 18116] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18114] <... openat resumed> ) = 10
[pid 18116] <... fcntl resumed> ) = 0
[pid 18114] fstat(10, <unfinished ...>
[pid 18116] fstat(5, <unfinished ...>
[pid 18114] <... fstat resumed> {st_mode=S_IFREG|0444, st_size=6999, ...}) = 0
[pid 18116] <... fstat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] read(10, <unfinished ...>
[pid 18116] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18114] <... read resumed> "Derive([(\"doc\",\"/nix/store/14gnv"..., 6999) = 6999
[pid 18116] <... fcntl resumed> ) = 0
[pid 18116] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 18114] close(10 <unfinished ...>
[pid 18116] <... futex resumed> ) = 0
[pid 18114] <... close resumed> ) = 0
[pid 18116] openat(AT_FDCWD, "/nix/store/wz4hklfqcwadgf100py2vp8hhp8an0mx-stdenv.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18116] fstat(10, {st_mode=S_IFREG|0444, st_size=6718, ...}) = 0
[pid 18116] read(10, <unfinished ...>
[pid 18114] brk(0x1d5b000 <unfinished ...>
[pid 18116] <... read resumed> "Derive([(\"out\",\"/nix/store/62h3c"..., 6718) = 6718
[pid 18114] <... brk resumed> ) = 0x1d5b000
[pid 18116] close(10) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\35\0\f\0B\0\0\00103\0021\3\265\3n\3\27\1\316\1q\2\316\2w\1%\0\335"..., 1024, 12685312) = 1024
[pid 18116] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18114] pread64(5, "\n\0\0\0\16\0'\0\1\10\0\272\3\276\3v\3<\2\372\2\266\2g\2$\1\331\1\213\0'"..., 1024, 15607808) = 1024
[pid 18114] pread64(5, "\r\2\255\0\5\0\\\0\3o\2\35\1\177\0\356\0\\\0\\\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7033856) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18116] <... futex resumed> ) = 0
[pid 18116] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18114] futex(0x7ffd4408b250, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...>
[pid 18116] <... fcntl resumed> ) = 0
[pid 18116] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18116] pread64(5, "\2\1)\0\f\0:\0\0\0\271S\3\264\3Z\3\22\2\263\2d\2#\1\325\1\201\1B\0\341"..., 1024, 48388096) = 1024
[pid 18116] pread64(5, "\n\2\204\0\r\0,\3\3x\0022\2\324\1\340\1\220\1W\1\10\0,\0\301\2\216\0y\3'"..., 1024, 35066880) = 1024
[pid 18116] pread64(5, "\5\0\0\0b\1R\0\0\08\311\3\371\3\362\3\353\3\344\3\335\3\326\3\317\3\310\3\301\3\272"..., 1024, 14665728) = 1024
[pid 18116] pread64(5, "\r\0\0\0\6\0007\0\3t\2\330\2H\1n\0\323\0007\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 30289920) = 1024
[pid 18116] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18116] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 18116] futex(0x7ffd4408b250, FUTEX_WAKE_PRIVATE, 2147483647) = 1
[pid 18114] <... futex resumed> ) = 0
[pid 18116] madvise(0x7f494a5d9000, 8368128, MADV_DONTNEED <unfinished ...>
[pid 18114] futex(0x7ffd4408b180, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 18116] <... madvise resumed> ) = 0
[pid 18116] exit(0 <unfinished ...>
[pid 18114] futex(0x7f494add99d0, FUTEX_WAIT, 18116, NULL <unfinished ...>
[pid 18116] <... exit resumed>) = ?
[pid 18116] +++ exited with 0 +++
[pid 18114] <... futex resumed> ) = 0
[pid 18114] write(4, "POTS\0\0\0\0\0\0\0\0\360D\0\0", 16) = 16
[pid 18114] write(4, "stla\0\0\0\0\1\0\0\0\0\0\0\0001\0\0\0\0\0\0\0/nix/sto"..., 112) = 112
[pid 18114] read(4, "\32\0\0\0\0\0\0\0001\0\0\0\0\0\0\0/nix/store/zbgyq"..., 32768) = 72
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\336\0\6\3\203\1\0\1:\312\3\313\3\356\3\271\3\247\3\225\3\203\0\0\0\0\0\0\0\0"..., 1024, 5120) = 1024
[pid 18114] pread64(5, "\2\0\0\0\34\2\n\0\0\1=\313\3\356\3\334\3\312\3\270\3\246\3\226\3\204\3r\3`\3N"..., 1024, 82519040) = 1024
[pid 18114] pread64(5, "\2\2\360\0000\0\214\2\0\1>N\2\336\2\314\2\272\2\250\2\226\2\204\2r\2`\1\342\2N"..., 1024, 83306496) = 1024
[pid 18114] pread64(5, "\n\0\0\0@\0\212\0\0010\3R\2,\3D\0036\3(\3\32\3\f\2\376\2:\2\360\1Z"..., 1024, 83440640) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1cb6418, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1c56408, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1c5e578, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] write(4, "stla\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 416) = 416
[pid 18114] read(4, "\t\0\0\0\0\0\0\0\1\0\0\0\0\0\0\0005\0\0\0\0\0\0\0/nix/sto"..., 32768) = 88
[pid 18114] write(4, "TRTS\0\0\0\0\1\0\0\0\360D\0\0\0\0\0\0\0\0\0\0f\0\0\0\0\0\0\0"..., 56) = 56
[pid 18114] write(4, "TRTS\0\0\0\0\2\0\0\0\360D\0\0\0\0\0\0\0\0\0\0h\0\0\0\0\0\0\0"..., 56) = 56
[pid 18114] write(4, "TRTS\0\0\0\0\3\0\0\0\360D\0\0\0\0\0\0\0\0\0\0g\0\0\0\0\0\0\0"..., 56) = 56
[pid 18114] write(4, "TRTS\0\0\0\0\4\0\0\0\360D\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] sched_setaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18114] fstat(10, {st_mode=S_IFREG|0444, st_size=823, ...}) = 0
[pid 18114] read(10, "Derive([(\"out\",\"/nix/store/sy4im"..., 823) = 823
[pid 18114] close(10) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c68c08, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d35f88, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1c68c08, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d35f88, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] clone(child_stack=0x7f494add8b30, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f494add99d0, tls=0x7f494add9700, child_tidptr=0x7f494add99d0) = 18118
strace: Process 18118 attached
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18118] set_robust_list(0x7f494add99e0, 24 <unfinished ...>
[pid 18114] <... fcntl resumed> ) = 0
[pid 18118] <... set_robust_list resumed> ) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18118] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18118] <... futex resumed> ) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18118] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18114] <... fcntl resumed> ) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18118] <... futex resumed> ) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18118] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18114] <... fcntl resumed> ) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18118] <... futex resumed> ) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/5zwxfq9kzf9ms46icvpp46za2d9vw2ld-bash-4.3-p42.drv", O_RDONLY|O_CLOEXEC <unfinished ...>
[pid 18118] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18114] <... openat resumed> ) = 10
[pid 18118] <... fcntl resumed> ) = 0
[pid 18114] fstat(10, <unfinished ...>
[pid 18118] fstat(5, <unfinished ...>
[pid 18114] <... fstat resumed> {st_mode=S_IFREG|0444, st_size=6999, ...}) = 0
[pid 18118] <... fstat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] read(10, "Derive([(\"doc\",\"/nix/store/14gnv"..., 6999) = 6999
[pid 18118] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18114] close(10 <unfinished ...>
[pid 18118] <... fcntl resumed> ) = 0
[pid 18114] <... close resumed> ) = 0
[pid 18118] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 18118] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18118] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18118] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18118] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18118] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 18118] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18118] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 18114] <... futex resumed> ) = 0
[pid 18118] openat(AT_FDCWD, "/nix/store/wz4hklfqcwadgf100py2vp8hhp8an0mx-stdenv.drv", O_RDONLY|O_CLOEXEC <unfinished ...>
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18118] <... openat resumed> ) = 10
[pid 18114] <... fcntl resumed> ) = 0
[pid 18118] fstat(10, <unfinished ...>
[pid 18114] fstat(5, <unfinished ...>
[pid 18118] <... fstat resumed> {st_mode=S_IFREG|0444, st_size=6718, ...}) = 0
[pid 18114] <... fstat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18118] read(10, <unfinished ...>
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1} <unfinished ...>
[pid 18118] <... read resumed> "Derive([(\"out\",\"/nix/store/62h3c"..., 6718) = 6718
[pid 18114] <... fcntl resumed> ) = 0
[pid 18114] futex(0x1c167a8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 18118] close(10 <unfinished ...>
[pid 18114] <... futex resumed> ) = 0
[pid 18118] <... close resumed> ) = 0
[pid 18114] futex(0x7ffd4408ae70, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...>
[pid 18118] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18118] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18118] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18118] futex(0x7ffd4408ae70, FUTEX_WAKE_PRIVATE, 2147483647) = 1
[pid 18114] <... futex resumed> ) = 0
[pid 18118] madvise(0x7f494a5d9000, 8368128, MADV_DONTNEED <unfinished ...>
[pid 18114] futex(0x7ffd4408ada0, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 18118] <... madvise resumed> ) = 0
[pid 18118] exit(0 <unfinished ...>
[pid 18114] futex(0x7f494add99d0, FUTEX_WAIT, 18118, NULL <unfinished ...>
[pid 18118] <... exit resumed>) = ?
[pid 18118] +++ exited with 0 +++
[pid 18114] <... futex resumed> ) = 0
[pid 18114] write(4, "POTS\0\0\0\0\4\0\0\0\360D\0\0", 16) = 16
[pid 18114] write(4, "TLSR\0\0\0\0\2\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\3\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] statfs("/nix/store", {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks=120097209, f_bfree=22547190, f_bavail=16440835, f_files=30515200, f_ffree=20120716, f_fsid={val=[3413666119, 2786122112]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/zbgyqwnmzgz3c07zlr5f9"..., 50) = 50
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18114] fstat(10, {st_mode=S_IFREG|0444, st_size=823, ...}) = 0
[pid 18114] read(10, "Derive([(\"out\",\"/nix/store/sy4im"..., 823) = 823
[pid 18114] close(10) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/sy4im2zm10ik5xgc0bln7"..., 46) = 46
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/sy4im2zm10ik5xgc0bln7"..., 46) = 46
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1c181b8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1c5e538, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1c181b8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1c5e538, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "TLSR\0\0\0\0\2\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\3\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] write(4, "TLSR\0\0\0\0\2\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\3\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/5zwxfq9kzf9ms46icvpp4"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/5zwxfq9kzf9ms46icvpp46za2d9vw2ld-bash-4.3-p42.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18114] fstat(10, {st_mode=S_IFREG|0444, st_size=6999, ...}) = 0
[pid 18114] read(10, "Derive([(\"doc\",\"/nix/store/14gnv"..., 6999) = 6999
[pid 18114] close(10) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/14gnv1q1w0n9qwa3q23id"..., 61) = 61
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/i7hx6w6zy3bv53f2xm1r2"..., 57) = 57
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "TLSR\0\0\0\0\2\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\3\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/wz4hklfqcwadgf100py2v"..., 55) = 55
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/wz4hklfqcwadgf100py2vp8hhp8an0mx-stdenv.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18114] fstat(10, {st_mode=S_IFREG|0444, st_size=6718, ...}) = 0
[pid 18114] read(10, "Derive([(\"out\",\"/nix/store/62h3c"..., 6718) = 6718
[pid 18114] close(10) = 0
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] write(9, "/nix/store/62h3c4d6rdnlxichixqg8"..., 51) = 51
[pid 18114] fcntl(9, F_SETLKW, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] write(4, "TLSR\0\0\0\0\2\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\3\0\0\0\360D\0\0i\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0"..., 96) = 96
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] write(4, "TLSR\0\0\0\0\1\0\0\0\360D\0\0j\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0"..., 64) = 64
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/5zwxfq9kzf9ms46icvpp46za2d9vw2ld-bash-4.3-p42.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18114] fstat(10, {st_mode=S_IFREG|0444, st_size=6999, ...}) = 0
[pid 18114] read(10, "Derive([(\"doc\",\"/nix/store/14gnv"..., 6999) = 6999
[pid 18114] close(10) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\374\0\37\0\351\3\0\0>a\3\361\3\342\3\323\3\305\3\266\3\250\3\230\3\210\3x\3h"..., 1024, 21709824) = 1024
[pid 18114] pread64(5, "\2\1\233\0,\0\314\2\0\0\36\245\0\375\2i\2\n\3\340\3:\3\320\3\300\3\260\3\240\3\220"..., 1024, 3065856) = 1024
[pid 18114] pread64(5, "\n\1\245\0 \1\215\0\1\231\1\215\1\275\2)\3\350\3\334\3\320\3\304\3\270\3\254\3\240\3\224"..., 1024, 5371904) = 1024
[pid 18114] pread64(5, "\r\0\0\0\5\0t\0\3\31\2\205\1\364\1\t\0t\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7031808) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1cb6418, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d3d368, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1j\0\r\0B\4\0\0*\212\2\t\0\323\3\277\1n\1#\3n\3(\2\333\2\224\2P"..., 1024, 24176640) = 1024
[pid 18114] pread64(5, "\n\0\365\0\f\0h\0\0h\0\263\3\256\3n\0014\0033\2\360\2\264\2j\2\32\1\322\1\204"..., 1024, 6390784) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d3e5c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d3e608, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0)\0\0\0^\261\3\256\3\\\3\20\2\311\2~\0027\1\361\1\241\1U\1\2"..., 1024, 5114880) = 1024
[pid 18114] pread64(5, "\n\0\374\0\v\0/\0\2*\1\343\1\246\1^\0\257\0/\2\366\0l\1\31\2\256\2d\1E"..., 1024, 17558528) = 1024
[pid 18114] pread64(5, "\n\1B\0\35\1*\3\0016\1*\1\255\1\241\1\225\1\211\1}\1q\1e\1Y\3\270\3\254"..., 1024, 4506624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d3e7d8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d3f408, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/wz4hklfqcwadgf100py2vp8hhp8an0mx-stdenv.drv", O_RDONLY|O_CLOEXEC) = 10
[pid 18114] fstat(10, {st_mode=S_IFREG|0444, st_size=6718, ...}) = 0
[pid 18114] read(10, "Derive([(\"out\",\"/nix/store/62h3c"..., 6718) = 6718
[pid 18114] close(10) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0,\0\355\0\0\0\217\253\1G\0015\1#\1\21\0\377\0\355\3\356\3\334\3\312\3\270"..., 1024, 22156288) = 1024
[pid 18114] pread64(5, "\2\0\0\0-\0\341\2\0\0\263\300\1\353\1\331\1\307\0\363\0\341\1\266\1\244\1\223\1\201\1p"..., 1024, 39448576) = 1024
[pid 18114] pread64(5, "\n\2\253\0<\0\322\2\2\327\2\312\2\275\2\257\3\362\3\345\3\330\3\313\3\226\3\211\3|\3o"..., 1024, 51012608) = 1024
[pid 18114] pread64(5, "\n\0\0\0:\0\360\0\1L\1?\0012\1%\1\30\1\v\0\376\3\363\3\346\3\331\3\314\3\277"..., 1024, 50476032) = 1024
[pid 18114] pread64(5, "\r\1!\0\3\0\216\0\3s\2L\0\216\0\216\0\216\0\216\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7036928) = 1024
[pid 18114] pread64(5, "\r\1\35\0\3\0\216\0\2\332\1\257\0\216\0\216\0\216\0\216\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7038976) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\234\0\3p\2\336\2L\1\273\1*\0\234\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7041024) = 1024
[pid 18114] pread64(5, "\r\0\0\0\5\0w\0\3o\2\252\1\332\1\f\0w\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7065600) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0\36\0\3j\2\333\2=\1\250\1\v\0\36\0\0\0\0\0\0\0\0\0\0\201i"..., 1024, 7069696) = 1024
[pid 18114] pread64(5, "\r\0\0\0\6\0P\0\3m\2\226\2\4\1v\0\345\0P\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7108608) = 1024
[pid 18114] pread64(5, "\r\1#\0\4\0\221\0\2\335\2K\1\271\0\221\0\221\0\221\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7163904) = 1024
[pid 18114] pread64(5, "\r\3o\0\4\1,\0\2\340\2P\1\276\1,\0\232\0\232\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7168000) = 1024
[pid 18114] pread64(5, "\r\1\254\0\3\0k\0\3h\1\10\0k\0k\0k\0k\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7170048) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d3f518, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d3f558, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0S\0\0\0014k\3\275\3k\3\34\2\317\2\221\0S\2H\2\16\1\316\1\177"..., 1024, 47998976) = 1024
[pid 18114] pread64(5, "\n\0\0\0\n\1*\0\1\200\1\304\3\265\3h\2\5\3)\1*\2\343\2\237\2V\0\0\0\0"..., 1024, 32808960) = 1024
[pid 18114] pread64(5, "\n\1\250\0006\1\f\0\1\234\1\220\3\364\3\334\3\320\3\240\3\224\3\210\3d\3X\3L\3@"..., 1024, 6863872) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d478f8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d47938, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\6\0020\0\0\0\253\341\3\266\3s\3'\2\325\2\204\0020\0\0\0\0\0\0\0\0"..., 1024, 74470400) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0h\0\0\311\3\254\3h\3\30\2\325\2\225\1S\2K\1\n\2\5\0h\1\237"..., 1024, 32872448) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48b48, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48b88, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\261\0\10\1R\0\0\0\212x\1\236\3\277\1R\38\2\360\2\241\2A\1\350\0(\0\304"..., 1024, 58972160) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0<\0\0\177\3\271\3{\39\2\350\2\254\2[\2\t\1\276\1x\1;\0\345"..., 1024, 21040128) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d49ec8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d49f38, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\221\0\t\0003\0\0\0\253\345\2G\1\376\1\276\1l\1\37\0003\3\261\0\327\0\206\0\0"..., 1024, 81901568) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0l\0\0l\0\354\3\253\3X\3\25\2\277\2s\2-\1\347\1\255\0\254\1p"..., 1024, 29963264) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4b218, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4b288, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0007\0\343\0\0\0\2\37\3\364\3\347\3\332\3\315\3\277\3\261\3\243\3\225\3\207\3y"..., 1024, 609280) = 1024
[pid 18114] pread64(5, "\n\0\0\0Z\0017\0\3\373\3\364\3\354\3\344\3\334\3\324\3\315\3\305\3\275\3\265\3\255\3\245"..., 1024, 26624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4a368, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4a438, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\6\0022\0\0\0\306\357\3\245\3]\3\22\2\312\2\177\0022\0\0\0\0\0\0\0\0"..., 1024, 80757760) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0Y\0\0Y\3\273\3j\3\"\2\324\2\207\2<\1\364\1\254\1n\1(\0\346"..., 1024, 21507072) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4a438, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4a5c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d49d18, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d491e8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0E\0\0\0\370%\3\304\3r\3\32\2\312\2\210\0\223\0\350\0022\1\346\1\221"..., 1024, 39230464) = 1024
[pid 18114] pread64(5, "\n\1%\0\v\0H\4\2\343\1\310\3\266\3l\0\232\0H\3)\0\335\2b\2\20\1t\1%"..., 1024, 6778880) = 1024
[pid 18114] pread64(5, "\n\1\234\0#\1x\0\3\364\3\350\3\334\3\320\3\304\3\270\3\254\3\240\3\224\3\210\3|\3p"..., 1024, 7110656) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4b0f8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4a5c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\16\08\0\3\306\3\202\39\2\353\2\242\2^\2\36\1\332\1\225\1K\0\377\0\304"..., 1024, 7105536) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d49d18, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d49ec8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d491e8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d49058, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\3\34\0\v\0n\0\0\0B:\2\320\2\204\0021\1\371\1\257\1_\1\21\0\305\3\266\3b"..., 1024, 56788992) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0\204\0\3\300\3\203\3@\2\356\2\250\2a\2$\1\344\1\241\1Q\1\25\0\304"..., 1024, 4245504) = 1024
[pid 18114] pread64(5, "\n\2t\0;\1\f\0\3\364\3\350\3\334\3\320\3\304\3\270\3\254\3\240\3\224\3\210\3|\3p"..., 1024, 7061504) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4b188, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4b218, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\f\0W\0\0\0\6=\3\276\3t\3 \2\316\2y\0025\1\352\1\237\1B\0\360"..., 1024, 1286144) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0<\0\3\300\3y\0035\2\370\2\264\2`\2\25\1\316\1\221\0\302\0<\1X"..., 1024, 15258624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48b88, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48a18, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\1\0\v\0c\0\0\0b\270\1<\0c\3\271\0\261\3]\3\t\2\300\2x\2%\1\341"..., 1024, 12422144) = 1024
[pid 18114] pread64(5, "\n\0\0\0\f\0\214\0\1\27\1\364\1\220\1W\3\252\3P\3\r\2\310\2\212\2=\0\323\0\214"..., 1024, 35821568) = 1024
[pid 18114] pread64(5, "\n\2\200\0/\1\f\0\3\364\3\350\3\334\3\320\3\304\3\270\3\254\3\240\3\224\3\210\3|\3p"..., 1024, 7164928) = 1024
[pid 18114] pread64(5, "\r\2E\0\5\0\223\0\3f\2\330\1\265\1&\0\223\0\223\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7147520) = 1024
[pid 18114] pread64(5, "\n\1\300\0\34\1\264\0\2\370\2\354\2\340\2\324\2\310\2\274\3\364\3\270\3\254\3\240\3\224\3\210"..., 1024, 7169024) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d3f6e8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d464d8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\1}\0\r\0_\0\2\365\2\253\2l\0\340\3\275\1\324\3\201\1\220\2%\3=\0017\0\245"..., 1024, 19146752) = 1024
[pid 18114] pread64(5, "\n\2\244\0\35\1\264\0\3(\3\34\3\20\3\4\2\370\2\354\2\340\2\324\2\230\2\214\2\200\2t"..., 1024, 7143424) = 1024
[pid 18114] pread64(5, "\n\2,\0$\1\f\0\2D\28\2P\2\24\2 \2\10\1\360\1\374\1\344\1\314\1\300\1\330"..., 1024, 7148544) = 1024
[pid 18114] pread64(5, "\r\2\205\0\2\1\365\0\3\33\1\365\0\313\0\313\0\313\0002\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 7114752) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4a0c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d49f68, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\365\0\r\0[\0\0\244\1\215\1\331\0[\3\273\3w\39\2\370\2u\1G\1\10\2\264"..., 1024, 11940864) = 1024
[pid 18114] pread64(5, "\n\1\220\0*\1H\0\3\210\3|\1\314\1\300\1\264\1\330\1\250\1\234\1\204\1x\28\2,"..., 1024, 7116800) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d47a58, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d47a98, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48c08, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48ca8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\r\0D\0\0\0\377\f\3\260\3l\0D\3 \2\322\2\206\2E\1\364\1\250\1\\"..., 1024, 6020096) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0005\0\3t\3 \2\330\2\207\1\234\2<\1\351\1Z\0005\1\34\0\330\0\177"..., 1024, 12573696) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48ce8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48dd8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\f\0\311\0\2/\1\364\0\311\1\261\1o\3\276\3v\1\31\3/\2\350\2\254\2q"..., 1024, 16922624) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d47768, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d477a8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4b0f8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48a18, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\202\0\5\2%\0\0\0\346\267\3\272\3b\2\364\2\247\2%\0\0\0\0\0\0\0\0\0\0"..., 1024, 79796224) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0A\0\3C\3\6\2p\2,\3\220\1\351\1\246\0A\1Y\1\f\2\272\0\317"..., 1024, 60479488) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48dd8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48ce8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\0\0\v\0\252\0\0\0\v\273\3\300\3i\3!\2\330\2\202\0022\1\345\1\231\1S\1\n"..., 1024, 12290048) = 1024
[pid 18114] pread64(5, "\n\0\202\0\v\0.\0\1_\3\275\3f\3&\2\342\0.\2\223\1\r\2I\1\372\1\241\0\301"..., 1024, 3074048) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d464d8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d47a98, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\r\0\\\0\3\265\3l\3\37\2\325\2\212\2A\1\356\1\257\1k\1.\0\\\0\344"..., 1024, 15760384) = 1024
[pid 18114] pread64(5, "\n\2\274\0,\1\f\0\2\260\2\244\2\230\2\214\2\200\2t\2h\2\\\1\344\1\374\2\10\1\360"..., 1024, 7176192) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d47a98, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d47a58, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\2\361\0\f\0x\3\0x\3p\2\257\1\334\2b\2#\3\26\1\201\1C\1\7\3\274\0\305"..., 1024, 18642944) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48ce8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48c08, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\2\1\0\n\0|\0\0\1\0@\0|\3-\2\322\3t\2{\2+\1\253\1c\1\36\0\313"..., 1024, 41232384) = 1024
[pid 18114] pread64(5, "\n\0\0\0\16\0L\0\1\37\0\220\2\"\1\343\1\247\1_\3\275\0\330\3\200\3;\2\366\2\262"..., 1024, 4531200) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48a18, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d49da8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\n\0\0\0\6\2a\0\3\265\3q\0031\2\357\2\243\2a\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 81884160) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d47a58, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d47a98, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\0\352\0\f\0M\0\0\0KH\0\374\3\263\0M\3k\3\34\2\327\2\216\2=\0\236\1\355"..., 1024, 6680576) = 1024
[pid 18114] pread64(5, "\n\0\0\0\7\2\24\0\3\273\3~\3D\2\374\2\256\2d\2\24\0\0\0\0\0\0\0\0\0\0"..., 1024, 74054656) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d49f68, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d49f18, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\347\0\v\0k\1\0\1\21P\3\261\3_\2\177\0020\1\355\3\17\1\223\1K\1\6\0\275"..., 1024, 30112768) = 1024
[pid 18114] pread64(5, "\n\1\317\0\f\0$\3\0\267\1\223\3\267\0j\3n\0$\2\n\1B\2\235\3*\2\345\0\365"..., 1024, 1822720) = 1024
[pid 18114] pread64(5, "\n\0010\0005\1\f\0\3\304\3\270\3\254\3\240\3\224\3\210\3|\3p\3d\3X\3L\3@"..., 1024, 7076864) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d48ce8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d48af8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d49f68, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4b188, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d49f68, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4b188, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d4b188, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d4a5c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/sy4im2zm10ik5xgc0bln7gbf6r2kf15b-x.lock", O_RDWR|O_CREAT|O_CLOEXEC, 0600) = 10
[pid 18114] fcntl(10, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fstat(10, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] lstat("/nix/store/sy4im2zm10ik5xgc0bln7gbf6r2kf15b-x", 0x7ffd4408a8f0) = -1 ENOENT (No such file or directory)
[pid 18114] pipe2([11, 12], O_CLOEXEC) = 0
[pid 18114] pipe2([13, 14], O_CLOEXEC) = 0
[pid 18114] pipe2([15, 16], O_CLOEXEC) = 0
[pid 18114] vfork(strace: Process 18119 attached
<unfinished ...>
[pid 18119] prctl(PR_SET_PDEATHSIG, SIGKILL) = 0
[pid 18119] sched_setaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 0
[pid 18119] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
[pid 18119] setsid() = 18119
[pid 18119] dup2(12, 2) = 2
[pid 18119] dup2(2, 1) = 1
[pid 18119] openat(AT_FDCWD, "/dev/null", O_RDWR) = 17
[pid 18119] dup2(17, 0) = 0
[pid 18119] close(17) = 0
[pid 18119] chdir("/") = 0
[pid 18119] dup2(13, 0) = 0
[pid 18119] dup2(16, 4) = 4
[pid 18119] dup2(15, 5) = 5
[pid 18119] execve("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/libexec/nix/build-remote", ["build-remote", "1"], 0x7ffd4408c3e0 /* 10 vars */ <unfinished ...>
[pid 18114] <... vfork resumed> ) = 18119
[pid 18114] close(12) = 0
[pid 18114] close(13) = 0
[pid 18119] <... execve resumed> ) = 0
[pid 18119] brk(NULL) = 0x128d000
[pid 18114] brk(0x1d83000) = 0x1d83000
[pid 18119] access("/etc/ld-nix.so.preload", R_OK) = -1 ENOENT (No such file or directory)
[pid 18114] write(14, "\1\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0allow-new-privil"..., 3744 <unfinished ...>
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/haswell/x86_64/libnixmain.so", O_RDONLY|O_CLOEXEC <unfinished ...>
[pid 18114] <... write resumed> ) = 3744
[pid 18119] <... openat resumed> ) = -1 ENOENT (No such file or directory)
[pid 18114] read(11, <unfinished ...>
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/haswell/x86_64", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/haswell/libnixmain.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/haswell", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/x86_64/libnixmain.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/x86_64", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls/libnixmain.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/tls", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/haswell/x86_64/libnixmain.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/haswell/x86_64", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/haswell/libnixmain.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/haswell", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/x86_64/libnixmain.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/x86_64", 0x7ffe515066b0) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libnixmain.so", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \v\1\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=248456, ...}) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e76b000
[pid 18119] mmap(NULL, 2290832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082e319000
[pid 18119] mprotect(0x7f082e346000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082e546000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2d000) = 0x7f082e546000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libnixstore.so", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\357\7\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=2547064, ...}) = 0
[pid 18119] mmap(NULL, 4211496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082df14000
[pid 18119] mprotect(0x7f082e10a000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082e30a000, 49152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f6000) = 0x7f082e30a000
[pid 18119] mmap(0x7f082e316000, 9000, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f082e316000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libnixutil.so", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p[\3\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=819184, ...}) = 0
[pid 18119] mmap(NULL, 2741464, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082dc76000
[pid 18119] mprotect(0x7f082dd0f000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082df0f000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x99000) = 0x7f082df0f000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/haswell/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/haswell/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/haswell/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/haswell", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/tls", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/haswell/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/haswell/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/haswell/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/haswell", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/haswell/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/haswell/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/haswell/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/haswell", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/tls", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/haswell/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/haswell/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/haswell/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/haswell", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/x86_64", 0x7ffe51506620) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zk5zj2307zxaq7dx585yia3dn5k4qlsl-gcc-7.3.0-lib/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2007\t\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=1587672, ...}) = 0
[pid 18119] mmap(NULL, 3696160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082d8ef000
[pid 18119] mprotect(0x7f082da67000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082dc66000, 53248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x177000) = 0x7f082dc66000
[pid 18119] mmap(0x7f082dc73000, 9760, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f082dc73000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\272\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=1768232, ...}) = 0
[pid 18119] mmap(NULL, 3751960, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082d55a000
[pid 18119] mprotect(0x7f082d6ed000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082d8ed000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x193000) = 0x7f082d8ed000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20+\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=100608, ...}) = 0
[pid 18119] mmap(NULL, 2185600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082d344000
[pid 18119] mprotect(0x7f082d35a000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082d559000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f082d559000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\34\2\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=2011232, ...}) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e769000
[pid 18119] mmap(NULL, 3881376, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082cf90000
[pid 18119] mprotect(0x7f082d13a000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082d33a000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1aa000) = 0x7f082d33a000
[pid 18119] mmap(0x7f082d340000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f082d340000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/haswell/x86_64/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/haswell/x86_64", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/haswell/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/haswell", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/x86_64/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/x86_64", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/tls", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/haswell/x86_64/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/haswell/x86_64", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/haswell/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/haswell", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/x86_64/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/x86_64", 0x7ffe51506410) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/libcrypto.so.1.0.0", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\22\7\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=2760792, ...}) = 0
[pid 18119] mmap(NULL, 4613696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082cb29000
[pid 18119] mprotect(0x7f082cd66000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082cf65000, 159744, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23c000) = 0x7f082cf65000
[pid 18119] mmap(0x7f082cf8c000, 13888, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f082cf8c000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/haswell/x86_64/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/haswell/x86_64", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/haswell/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/haswell", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/x86_64/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/x86_64", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/tls", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/haswell/x86_64/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/haswell/x86_64", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/haswell/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/haswell", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/x86_64/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/x86_64", 0x7ffe51506250) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libsqlite3.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\346\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=1156992, ...}) = 0
[pid 18119] mmap(NULL, 3159096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082c825000
[pid 18119] mprotect(0x7f082c924000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082cb23000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xfe000) = 0x7f082cb23000
[pid 18119] mmap(0x7f082cb28000, 1080, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f082cb28000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/haswell/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/haswell/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/haswell/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/haswell", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/tls", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/haswell/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/haswell/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/haswell/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/haswell", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/haswell/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/haswell/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/haswell/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/haswell", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/tls", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/haswell/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/haswell/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/haswell/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/haswell", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/haswell/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/haswell/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/haswell/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/haswell", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/tls", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/haswell/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/haswell/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/haswell/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/haswell", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/x86_64/libbz2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/x86_64", 0x7ffe51506220) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libbz2.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \31\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=70768, ...}) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e767000
[pid 18119] mmap(NULL, 2161704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082c615000
[pid 18119] mprotect(0x7f082c624000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082c823000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f082c823000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libcurl.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libcurl.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libcurl.so.4", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\326\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=611520, ...}) = 0
[pid 18119] mmap(NULL, 2643368, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082c38f000
[pid 18119] mprotect(0x7f082c411000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082c611000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x7f082c611000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libsodium.so.23", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libsodium.so.23", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libsodium.so.23", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libsodium.so.23", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \323\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=391608, ...}) = 0
[pid 18119] mmap(NULL, 2438152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082c13b000
[pid 18119] mprotect(0x7f082c18e000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082c38d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x52000) = 0x7f082c38d000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/haswell/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/haswell", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/tls", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/haswell/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/haswell", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/haswell/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/haswell", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/tls", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/haswell/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/haswell/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/haswell/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/haswell", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/x86_64", 0x7ffe51506190) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\16\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=18616, ...}) = 0
[pid 18119] mmap(NULL, 2109584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082bf37000
[pid 18119] mprotect(0x7f082bf3a000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082c139000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f082c139000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/libaws-cpp-sdk-transfer.so", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\327\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=266008, ...}) = 0
[pid 18119] mmap(NULL, 2289680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082bd07000
[pid 18119] mprotect(0x7f082bd35000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082bf34000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2d000) = 0x7f082bf34000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/libaws-cpp-sdk-s3.so", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\376\n\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=3962896, ...}) = 0
[pid 18119] mmap(NULL, 4596648, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082b8a4000
[pid 18119] mprotect(0x7f082baf4000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082bcf4000, 77824, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x250000) = 0x7f082bcf4000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/libaws-cpp-sdk-core.so", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \355\4\0\0\0\0\0"..., 832) = 832
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e765000
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=1246888, ...}) = 0
[pid 18119] mmap(NULL, 3114496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082b5ab000
[pid 18119] mprotect(0x7f082b69d000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082b89d000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf2000) = 0x7f082b89d000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/libseccomp.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\374\1\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=278384, ...}) = 0
[pid 18119] mmap(NULL, 2363424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082b369000
[pid 18119] mprotect(0x7f082b395000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082b595000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7f082b595000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/92pyrnjf90wix80yzphv0z5fqilg88h5-sqlite-3.24.0/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/ir8xfvrc777i875k3ygxjlf3ykj1nsgh-curl-7.59.0/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/shza3baza0x5mzblnglyr0a412g91bzf-libsodium-1.0.16/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/wwhp4klykgvd7xwl94izc8xxb9idf4wy-bzip2-1.0.6.0.1/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/dvkcysalycgsg3q8gqbd8vplag8kcy7d-libseccomp-2.3.3-lib/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/b0q958qd8j7yx0ybr8x7mkn2jqcdz15i-aws-sdk-cpp-1.5.17/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pb\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=142424, ...}) = 0
[pid 18119] mmap(NULL, 2220624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082b14a000
[pid 18119] mprotect(0x7f082b163000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082b363000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19000) = 0x7f082b363000
[pid 18119] mmap(0x7f082b365000, 12880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f082b365000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/haswell/x86_64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/haswell/x86_64", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/haswell/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/haswell", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/x86_64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/x86_64", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/tls", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/haswell/x86_64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/haswell/x86_64", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/haswell/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/haswell", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/x86_64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/x86_64", 0x7ffe51506040) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P5\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=174424, ...}) = 0
[pid 18119] mmap(NULL, 2252816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082af23000
[pid 18119] mprotect(0x7f082af48000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082b148000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x25000) = 0x7f082b148000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/haswell/x86_64/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/haswell/x86_64", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/haswell/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/haswell", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/x86_64/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/x86_64", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/tls", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/haswell/x86_64/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/haswell/x86_64", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/haswell/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/haswell", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/x86_64/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/x86_64", 0x7ffe51506010) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/libbrotlienc.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\r\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=643680, ...}) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e763000
[pid 18119] mmap(NULL, 2727952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082ac88000
[pid 18119] mprotect(0x7f082ad22000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082af21000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x99000) = 0x7f082af21000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libbrotlidec.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/6v0w8pn91zqdm2ri7wgrlg3y16gqsbij-xz-5.2.4/lib/libbrotlidec.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/libbrotlidec.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/libbrotlidec.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\f\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=55608, ...}) = 0
[pid 18119] mmap(NULL, 2146320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082aa7b000
[pid 18119] mprotect(0x7f082aa87000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082ac86000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f082ac86000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/z5sinsgx6dwvzcl519c82r8cvzkbwcan-nix-2.1.3/lib/libboost_context.so.1.67.0", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\30\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=19928, ...}) = 0
[pid 18119] mmap(NULL, 2109520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082a877000
[pid 18119] mprotect(0x7f082a87a000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082aa79000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f082aa79000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/haswell/x86_64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/haswell/x86_64", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/haswell/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/haswell", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/x86_64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/x86_64", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/tls", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/haswell/x86_64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/haswell/x86_64", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/haswell/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/haswell", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/x86_64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/x86_64", 0x7ffe51505f80) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`(\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=120824, ...}) = 0
[pid 18119] mmap(NULL, 2207760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082a65b000
[pid 18119] mprotect(0x7f082a676000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082a875000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7f082a875000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/haswell/x86_64/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/haswell/x86_64", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/haswell/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/haswell", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/x86_64/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/x86_64", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/tls", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/haswell/x86_64/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/haswell/x86_64", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/haswell/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/haswell", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/x86_64/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/x86_64", 0x7ffe51505f50) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libnghttp2.so.14", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pR\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=185984, ...}) = 0
[pid 18119] mmap(NULL, 2252528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082a435000
[pid 18119] mprotect(0x7f082a458000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082a658000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23000) = 0x7f082a658000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/haswell/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/haswell/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/haswell/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/haswell", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/tls", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/haswell/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/haswell/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/haswell/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/haswell", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/haswell/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/haswell/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/haswell/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/haswell", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/tls", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/haswell/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/haswell/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/haswell/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/haswell", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/x86_64/libssh2.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/x86_64", 0x7ffe51505f20) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/k97dv1k3fpsxcrrdqx79n1d72py1qssc-libssh2-1.8.0/lib/libssh2.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320]\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=209488, ...}) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e761000
[pid 18119] mmap(NULL, 2281912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082a207000
[pid 18119] mprotect(0x7f082a233000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082a433000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7f082a433000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libssl.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libssl.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/bv6znzsv2qkbcwwa251dx7n5dshz3nr3-zlib-1.2.11/lib/libssl.so.1.0.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/9kr8r78bwk12050ppywfbhg1vrsd6dp8-openssl-1.0.2p/lib/libssl.so.1.0.0", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\261\1\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=524456, ...}) = 0
[pid 18119] mmap(NULL, 2569776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0829f93000
[pid 18119] mprotect(0x7f0829ffc000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f082a1fc000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x69000) = 0x7f082a1fc000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libgssapi_krb5.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libgssapi_krb5.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\313\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=353608, ...}) = 0
[pid 18119] mmap(NULL, 2402992, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0829d48000
[pid 18119] mprotect(0x7f0829d90000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f0829f90000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x48000) = 0x7f0829f90000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libkrb5.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libkrb5.so.3", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240h\2\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=1072704, ...}) = 0
[pid 18119] mmap(NULL, 2982992, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0829a6f000
[pid 18119] mprotect(0x7f0829b38000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f0829d37000, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc8000) = 0x7f0829d37000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libk5crypto.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libk5crypto.so.3", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300O\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=216568, ...}) = 0
[pid 18119] mmap(NULL, 2297624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082983e000
[pid 18119] mprotect(0x7f082986d000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f0829a6c000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2e000) = 0x7f0829a6c000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/zsglbnyb42fg0gyxrg6sm96phfj7ig4k-nghttp2-1.32.0-lib/lib/libcom_err.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libcom_err.so.3", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\21\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=18712, ...}) = 0
[pid 18119] mmap(NULL, 2109648, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f082963a000
[pid 18119] mprotect(0x7f082963d000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082983c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f082983c000
[pid 18119] close(3) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e75f000
[pid 18119] openat(AT_FDCWD, "/nix/store/j1qbbdqcfsz8442s5n5gbgx6n9zp5wwl-brotli-1.0.5-lib/lib/libbrotlicommon.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\7\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=135144, ...}) = 0
[pid 18119] mmap(NULL, 2228520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0829419000
[pid 18119] mprotect(0x7f0829438000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f0829638000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f000) = 0x7f0829638000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \"\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=41848, ...}) = 0
[pid 18119] mmap(NULL, 2128384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0829211000
[pid 18119] mprotect(0x7f0829218000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f0829417000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f0829417000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libkrb5support.so.0", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3403\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=59104, ...}) = 0
[pid 18119] mmap(NULL, 2142856, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0829005000
[pid 18119] mprotect(0x7f0829010000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f082920f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f082920f000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/haswell/x86_64/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/haswell/x86_64", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/haswell/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/haswell", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/x86_64/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/x86_64", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/tls", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/haswell/x86_64/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/haswell/x86_64", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/haswell/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/haswell", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/x86_64/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/x86_64", 0x7ffe51505d70) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\30\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=18408, ...}) = 0
[pid 18119] mmap(NULL, 2109456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0828e01000
[pid 18119] mprotect(0x7f0828e04000, 2093056, PROT_NONE) = 0
[pid 18119] mmap(0x7f0829003000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0829003000
[pid 18119] close(3) = 0
[pid 18119] openat(AT_FDCWD, "/nix/store/574xmi6n0ys0qdxk9q2lh7fk5ipjsg85-libkrb5-1.15.2/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/1kk3vawy29wy3xlh8rp0nlhsrjc4gp51-keyutils-1.5.10-lib/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] openat(AT_FDCWD, "/nix/store/fg4yq8i8wd08xg3fy58l6q73cjy8hjr2-glibc-2.27/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@8\0\0\0\0\0\0"..., 832) = 832
[pid 18119] fstat(3, {st_mode=S_IFREG|0555, st_size=97512, ...}) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e75d000
[pid 18119] mmap(NULL, 2189584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0828bea000
[pid 18119] mprotect(0x7f0828bfd000, 2097152, PROT_NONE) = 0
[pid 18119] mmap(0x7f0828dfd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13000) = 0x7f0828dfd000
[pid 18119] mmap(0x7f0828dff000, 6416, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0828dff000
[pid 18119] close(3) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e75b000
[pid 18119] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e758000
[pid 18119] arch_prctl(ARCH_SET_FS, 0x7f082e758bc0) = 0
[pid 18119] mprotect(0x7f082d33a000, 16384, PROT_READ) = 0
[pid 18119] mprotect(0x7f0828dfd000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f0829003000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082c139000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082920f000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082b363000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f0829417000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082d8ed000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f0829638000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082983c000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f0829a6c000, 8192, PROT_READ) = 0
[pid 18119] mprotect(0x7f0829d37000, 61440, PROT_READ) = 0
[pid 18119] mprotect(0x7f0829f90000, 8192, PROT_READ) = 0
[pid 18119] mprotect(0x7f082cf65000, 114688, PROT_READ) = 0
[pid 18119] mprotect(0x7f082a1fc000, 20480, PROT_READ) = 0
[pid 18119] mprotect(0x7f082a875000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082a433000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082a658000, 4096, PROT_READ) = 0
[pid 18119] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e756000
[pid 18119] mprotect(0x7f082dc66000, 49152, PROT_READ) = 0
[pid 18119] mprotect(0x7f082aa79000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082ac86000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082af21000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082b148000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082b595000, 86016, PROT_READ) = 0
[pid 18119] mprotect(0x7f082c611000, 12288, PROT_READ) = 0
[pid 18119] mprotect(0x7f082b89d000, 24576, PROT_READ) = 0
[pid 18119] mprotect(0x7f082bcf4000, 73728, PROT_READ) = 0
[pid 18119] mprotect(0x7f082bf34000, 8192, PROT_READ) = 0
[pid 18119] mprotect(0x7f082c38d000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082c823000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082cb23000, 12288, PROT_READ) = 0
[pid 18119] mprotect(0x7f082df0f000, 16384, PROT_READ) = 0
[pid 18119] mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f082e753000
[pid 18119] mprotect(0x7f082e30a000, 45056, PROT_READ) = 0
[pid 18119] mprotect(0x7f082e546000, 8192, PROT_READ) = 0
[pid 18119] mprotect(0x61f000, 4096, PROT_READ) = 0
[pid 18119] mprotect(0x7f082e76d000, 4096, PROT_READ) = 0
[pid 18119] set_tid_address(0x7f082e758e90) = 18119
[pid 18119] set_robust_list(0x7f082e758ea0, 24) = 0
[pid 18119] rt_sigaction(SIGRTMIN, {sa_handler=0x7f082b14fcf0, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f082b15bf10}, NULL, 8) = 0
[pid 18119] rt_sigaction(SIGRT_1, {sa_handler=0x7f082b14fd80, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f082b15bf10}, NULL, 8) = 0
[pid 18119] rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
[pid 18119] prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 18119] brk(NULL) = 0x128d000
[pid 18119] brk(0x12ae000) = 0x12ae000
[pid 18119] futex(0x7f082dc7367c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18119] futex(0x7f082dc73688, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18119] ioctl(2, TCGETS, 0x7ffe51506f70) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 18119] getpid() = 18119
[pid 18119] openat(AT_FDCWD, "/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] read(3, "0-11\n", 8192) = 5
[pid 18119] close(3) = 0
[pid 18119] getuid() = 0
[pid 18119] lstat("/etc/ssl/certs/ca-certificates.crt", {st_mode=S_IFLNK|0777, st_size=41, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/etc/nix/nix.conf", O_RDONLY|O_CLOEXEC) = 3
[pid 18119] fstat(3, {st_mode=S_IFREG|0444, st_size=696, ...}) = 0
[pid 18119] read(3, "# WARNING: this file is generate"..., 696) = 696
[pid 18119] close(3) = 0
[pid 18119] getuid() = 0
[pid 18119] socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
[pid 18119] connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = 0
[pid 18119] sendto(3, "\2\0\0\0\v\0\0\0\7\0\0\0passwd\0", 19, MSG_NOSIGNAL, NULL, 0) = 19
[pid 18119] poll([{fd=3, events=POLLIN|POLLERR|POLLHUP}], 1, 5000) = 1 ([{fd=3, revents=POLLIN|POLLHUP}])
[pid 18119] recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="passwd\0", iov_len=7}, {iov_base="\310O\3\0\0\0\0\0", iov_len=8}], msg_iovlen=2, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[6]}], msg_controllen=20, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 15
[pid 18119] mmap(NULL, 217032, PROT_READ, MAP_SHARED, 6, 0) = 0x7f082e71e000
[pid 18119] close(6) = 0
[pid 18119] close(3) = 0
[pid 18119] futex(0x7f082df134a0, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18119] openat(AT_FDCWD, "/root/.config/nix/nix.conf", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 18119] futex(0x7f082d5596f0, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18119] ioctl(1, TIOCGWINSZ, 0x7ffe51506398) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 18119] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 18119] rt_sigprocmask(SIG_BLOCK, [HUP INT PIPE TERM WINCH], NULL, 8) = 0
[pid 18119] mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f08283e9000
[pid 18119] mprotect(0x7f08283ea000, 8388608, PROT_READ|PROT_WRITE) = 0
[pid 18119] clone(child_stack=0x7f0828be8b30, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f0828be99d0, tls=0x7f0828be9700, child_tidptr=0x7f0828be99d0) = 18120
strace: Process 18120 attached
[pid 18119] rt_sigaction(SIGCHLD, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f082cfc4c50}, <unfinished ...>
[pid 18120] set_robust_list(0x7f0828be99e0, 24 <unfinished ...>
[pid 18119] <... rt_sigaction resumed> NULL, 8) = 0
[pid 18120] <... set_robust_list resumed> ) = 0
[pid 18119] rt_sigaction(SIGUSR1, {sa_handler=0x7f082e334790, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f082cfc4c50}, <unfinished ...>
[pid 18120] rt_sigtimedwait([HUP INT PIPE TERM WINCH], <unfinished ...>
[pid 18119] <... rt_sigaction resumed> NULL, 8) = 0
[pid 18119] brk(0x12cf000) = 0x12cf000
[pid 18119] sigaltstack({ss_sp=0x12a9ae0, ss_flags=0, ss_size=18432}, NULL) = 0
[pid 18119] rt_sigaction(SIGSEGV, {sa_handler=0x7f082e33ed80, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER|SA_ONSTACK|SA_SIGINFO, sa_restorer=0x7f082cfc4c50}, NULL, 8) = 0
[pid 18119] umask(022) = 022
[pid 18119] read(0, "\1\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0allow-new-privil"..., 32768) = 3744
[pid 18119] access("/nix/var/nix", R_OK|W_OK) = 0
[pid 18119] getpid() = 18119
[pid 18119] lstat("/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=8597504, ...}) = 0
[pid 18119] getuid() = 0
[pid 18119] statfs("/nix/store", {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks=120097209, f_bfree=22547159, f_bavail=16440804, f_files=30515200, f_ffree=20120716, f_fsid={val=[3413666119, 2786122112]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
[pid 18119] lstat("/nix/store/.links", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18119] lstat("/nix/var/nix/profiles", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18119] lstat("/nix/var/nix/temproots", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18119] lstat("/nix/var/nix/db", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18119] lstat("/nix/var/nix/gcroots", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18119] getuid() = 0
[pid 18119] lstat("/nix/var/nix/profiles/per-user", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 18119] chmod("/nix/var/nix/profiles/per-user", 01777) = 0
[pid 18119] socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
[pid 18119] connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = 0
[pid 18119] sendto(3, "\2\0\0\0\f\0\0\0\6\0\0\0group\0", 18, MSG_NOSIGNAL, NULL, 0) = 18
[pid 18119] poll([{fd=3, events=POLLIN|POLLERR|POLLHUP}], 1, 5000) = 1 ([{fd=3, revents=POLLIN|POLLHUP}])
[pid 18119] recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="group\0", iov_len=6}, {iov_base="\310O\3\0\0\0\0\0", iov_len=8}], msg_iovlen=2, msg_control=[{cmsg_len=20, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[6]}], msg_controllen=20, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 14
[pid 18119] mmap(NULL, 217032, PROT_READ, MAP_SHARED, 6, 0) = 0x7f082e6e9000
[pid 18119] close(6) = 0
[pid 18119] close(3) = 0
[pid 18119] stat("/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=8597504, ...}) = 0
[pid 18119] lstat("/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=8597504, ...}) = 0
[pid 18119] lstat("/nix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18119] stat("/nix/var/nix/db/reserved", {st_mode=S_IFREG|0600, st_size=8388608, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/var/nix/db/big-lock", O_RDWR|O_CREAT|O_CLOEXEC, 0600) = 3
[pid 18119] fcntl(3, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18119] lstat("/nix/var/nix/db/schema", {st_mode=S_IFREG|0644, st_size=2, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/var/nix/db/schema", O_RDONLY|O_CLOEXEC) = 6
[pid 18119] fstat(6, {st_mode=S_IFREG|0644, st_size=2, ...}) = 0
[pid 18119] read(6, "10", 2) = 2
[pid 18119] close(6) = 0
[pid 18119] access("/nix/var/nix/db", R_OK|W_OK) = 0
[pid 18119] lstat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] getpid() = 18119
[pid 18119] getpid() = 18119
[pid 18119] openat(AT_FDCWD, "/nix/var/nix/db/db.sqlite", O_RDWR|O_CLOEXEC) = 6
[pid 18119] fstat(6, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] fstat(6, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] stat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] pread64(6, "SQLite format 3\0\4\0\2\2\0@ \0\0\20\276\0\1>U"..., 100, 0) = 100
[pid 18119] brk(0x12f9000) = 0x12f9000
[pid 18119] fcntl(6, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18119] fcntl(6, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18119] fcntl(6, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18119] stat("/nix/var/nix/db/db.sqlite-journal", 0x7ffe51504580) = -1 ENOENT (No such file or directory)
[pid 18119] stat("/nix/var/nix/db/db.sqlite-wal", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18119] fstat(6, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] pread64(6, "SQLite format 3\0\4\0\2\2\0@ \0\0\20\276\0\1>U"..., 1024, 0) = 1024
[pid 18119] getpid() = 18119
[pid 18119] stat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/var/nix/db/db.sqlite-wal", O_RDWR|O_CREAT|O_CLOEXEC, 0644) = 7
[pid 18119] fstat(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 18119] geteuid() = 0
[pid 18119] fchown(7, 0, 0) = 0
[pid 18119] fstat(6, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] openat(AT_FDCWD, "/nix/var/nix/db/db.sqlite-shm", O_RDWR|O_CREAT|O_CLOEXEC, 0644) = 8
[pid 18119] fstat(8, {st_mode=S_IFREG|0644, st_size=32768, ...}) = 0
[pid 18119] geteuid() = 0
[pid 18119] fchown(8, 0, 0) = 0
[pid 18119] fcntl(8, F_GETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=128, l_len=1, l_pid=18114}) = 0
[pid 18119] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=128, l_len=1}) = 0
[pid 18119] fstat(8, {st_mode=S_IFREG|0644, st_size=32768, ...}) = 0
[pid 18119] mmap(NULL, 32768, PROT_READ|PROT_WRITE, MAP_SHARED, 8, 0) = 0x7f082e6e1000
[pid 18119] fcntl(8, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18119] fstat(6, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18119] pread64(6, "SQLite format 3\0\4\0\2\2\0@ \0\0\20\276\0\1>U"..., 1024, 0) = 1024
[pid 18119] pread64(6, "\r\0\0\0\7\0>\0\0>\3\313\3y\2+\3P\1\340\1\222\0\0\0\0\0\0\0\0\0\0"..., 1024, 8192) = 1024
[pid 18119] pread64(6, "\r\2\205\0\4\0\255\0\2\211\1!\2B\0\255\0v\0v\0\0\0\0\0v\0\0\0\0\0\0"..., 1024, 9216) = 1024
[pid 18119] fcntl(8, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18119] write(2, "# decline-permanently\n", 22) = 22
[pid 18114] <... read resumed> "#", 1) = 1
[pid 18119] stat("/nix/var/nix/db/db.sqlite", <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... stat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] <... read resumed> " ", 1) = 1
[pid 18119] fcntl(6, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1} <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... fcntl resumed> ) = 0
[pid 18114] <... read resumed> "d", 1) = 1
[pid 18119] fcntl(6, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510} <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... fcntl resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
[pid 18114] <... read resumed> "e", 1) = 1
[pid 18119] munmap(0x7f082e6e1000, 32768 <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... munmap resumed> ) = 0
[pid 18114] <... read resumed> "c", 1) = 1
[pid 18119] close(8 <unfinished ...>
[pid 18114] read(11, "l", 1) = 1
[pid 18114] read(11, "i", 1) = 1
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... close resumed> ) = 0
[pid 18114] <... read resumed> "n", 1) = 1
[pid 18119] close(7 <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... close resumed> ) = 0
[pid 18114] <... read resumed> "e", 1) = 1
[pid 18119] fcntl(6, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=2} <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... fcntl resumed> ) = 0
[pid 18114] <... read resumed> "-", 1) = 1
[pid 18119] fcntl(6, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0} <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... fcntl resumed> ) = 0
[pid 18114] <... read resumed> "p", 1) = 1
[pid 18119] fstat(6, <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... fstat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] <... read resumed> "e", 1) = 1
[pid 18119] stat("/nix/var/nix/db/db.sqlite", <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... stat resumed> {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] <... read resumed> "r", 1) = 1
[pid 18119] close(6 <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... close resumed> ) = 0
[pid 18114] <... read resumed> "m", 1) = 1
[pid 18114] read(11, "a", 1) = 1
[pid 18119] close(3 <unfinished ...>
[pid 18114] read(11, <unfinished ...>
[pid 18119] <... close resumed> ) = 0
[pid 18114] <... read resumed> "n", 1) = 1
[pid 18114] read(11, "e", 1) = 1
[pid 18114] read(11, "n", 1) = 1
[pid 18114] read(11, "t", 1) = 1
[pid 18114] read(11, "l", 1) = 1
[pid 18114] read(11, "y", 1) = 1
[pid 18114] read(11, <unfinished ...>
[pid 18119] exit_group(0 <unfinished ...>
[pid 18114] <... read resumed> "\n", 1) = 1
[pid 18119] <... exit_group resumed>) = ?
[pid 18120] <... rt_sigtimedwait resumed> <unfinished ...>) = ?
[pid 18120] +++ exited with 0 +++
[pid 18114] close(14) = 0
[pid 18114] kill(-18119, SIGKILL) = 0
[pid 18114] wait4(18119, <unfinished ...>
[pid 18119] +++ exited with 0 +++
[pid 18114] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 18119
[pid 18114] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=18119, si_uid=0, si_status=0, si_utime=1, si_stime=1} ---
[pid 18114] brk(0x1d7b000) = 0x1d7b000
[pid 18114] close(16) = 0
[pid 18114] close(15) = 0
[pid 18114] close(11) = 0
[pid 18114] getuid() = 0
[pid 18114] lstat("/nix/var/nix/userpool", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/var/nix/userpool/30001", O_RDWR|O_CREAT|O_CLOEXEC, 0600) = 11
[pid 18114] fcntl(11, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] getuid() = 0
[pid 18114] geteuid() = 0
[pid 18114] clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f495114b310) = 18121
strace: Process 18121 attached
[pid 18114] wait4(18121, <unfinished ...>
[pid 18121] set_robust_list(0x7f495114b320, 24) = 0
[pid 18121] ioctl(2, TCGETS, 0x7ffd44089d00) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 18121] prctl(PR_SET_PDEATHSIG, SIGKILL) = 0
[pid 18121] sched_setaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 0
[pid 18121] setuid(30001) = 0
[pid 18121] kill(-1, SIGKILL) = 0
[pid 18121] exit_group(0) = ?
[pid 18121] +++ exited with 0 +++
[pid 18114] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 18121
[pid 18114] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=18121, si_uid=30001, si_status=0, si_utime=0, si_stime=0} ---
[pid 18114] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=450560, ...}) = 0
[pid 18114] mkdir("/tmp/nix-build-x.drv-0", 0700) = 0
[pid 18114] chown("/tmp/nix-build-x.drv-0", 30001, 30000) = 0
[pid 18114] fcntl(7, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] pread64(5, "\2\1\10\0\v\0f\0\0\0\fl\3b\3\20\2\315\2\210\2<\1\372\1\250\1d\1\26\0\275"..., 1024, 54892544) = 1024
[pid 18114] pread64(5, "\n\0\0\0\r\0A\0\3\262\1\377\3j\3\27\2\320\1\270\2\205\2A\1k\1'\0\337\0A"..., 1024, 552960) = 1024
[pid 18114] pread64(5, "\5\0\0\0b\1R\0\0\0\254\344\3\371\3\362\3\353\3\344\3\335\3\326\3\317\3\310\3\301\3\272"..., 1024, 45890560) = 1024
[pid 18114] pread64(5, "\r\0\0\0\4\0\303\0\0033\2^\1\221\0\303\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1024, 18688000) = 1024
[pid 18114] pread64(5, "\2\0\0\0,\0\356\1\0\0\214\356\3\312\3\271\3\247\3\225\0\356\3\204\3r\3a\1\220\1~"..., 1024, 57484288) = 1024
[pid 18114] pread64(5, "\2\0\0\0-\0\341\0\0\0\332\222\1:\1(\1\26\1\5\0\363\3\356\3\334\3\314\3\272\3\250"..., 1024, 45780992) = 1024
[pid 18114] pread64(5, "\n\0\0\08\0\360\1\3\326\3\310\3\272\3\254\3\236\3\220\0\376\3\202\3t\3f\3X\3J"..., 1024, 62855168) = 1024
[pid 18114] fcntl(7, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=123, l_len=1}) = 0
[pid 18114] futex(0x1d40ef8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] futex(0x1d3f518, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", 0x7ffd44089ee0) = -1 ENOENT (No such file or directory)
[pid 18114] mkdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", 0750) = 0
[pid 18114] chown("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", 0, 30000) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp", 0x7ffd44089f10) = -1 ENOENT (No such file or directory)
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
[pid 18114] mkdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp", 0777) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] chmod("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp", 01777) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc", 0x7ffd44089f10) = -1 ENOENT (No such file or directory)
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
[pid 18114] mkdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc", 0777) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/passwd", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 12
[pid 18114] write(12, "root:x:0:0:Nix build user:/build"..., 130) = 130
[pid 18114] close(12) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/group", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 12
[pid 18114] write(12, "root:x:0:\nnixbld:!:100:\nnogroup:"..., 41) = 41
[pid 18114] close(12) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/hosts", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 12
[pid 18114] write(12, "127.0.0.1 localhost\n", 20) = 20
[pid 18114] close(12) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", 0x7ffd44089f10) = -1 ENOENT (No such file or directory)
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix", 0x7ffd44089b80) = -1 ENOENT (No such file or directory)
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
[pid 18114] mkdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix", 0777) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] mkdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", 0777) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] chmod("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", 01775) = 0
[pid 18114] chown("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", 0, 30000) = 0
[pid 18114] lstat("/nix/store/0c80aywsq3kxifpp10mgm4a4rn7dkny1-diffutils-3.3", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/17h0mw5sipbvg70hdsn8i5mai4619l8c-move-docs.sh", {st_mode=S_IFREG|0444, st_size=1355, ...}) = 0
[pid 18114] link("/nix/store/17h0mw5sipbvg70hdsn8i5mai4619l8c-move-docs.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/17h0mw5sipbvg70hdsn8i5mai4619l8c-move-docs.sh") = 0
[pid 18114] lstat("/nix/store/25lv2pv9c6nlzcxhh4kcln406rnh991q-gnused-4.2.2", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/5hzb6zwq8xls6ny9pzg8h8rmp0p903y1-strip.sh", {st_mode=S_IFREG|0444, st_size=955, ...}) = 0
[pid 18114] link("/nix/store/5hzb6zwq8xls6ny9pzg8h8rmp0p903y1-strip.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/5hzb6zwq8xls6ny9pzg8h8rmp0p903y1-strip.sh") = 0
[pid 18114] lstat("/nix/store/5xbamcjwscssy80nf0gzqzaaywgrbq0q-ed-1.12", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/62h3c4d6rdnlxichixqg8h9jxi8nhxk0-stdenv", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/6w0wrgc9yvzk0lncc6wxpdixdmqspp3f-xz-5.2.2", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/78i3ia55aq3hbb5gjyz7mmarnb8q1xkk-gzip-1.6", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/7ps94j28m8jgrb4za09gckl37my915v1-patch-shebangs.sh", {st_mode=S_IFREG|0444, st_size=2495, ...}) = 0
[pid 18114] link("/nix/store/7ps94j28m8jgrb4za09gckl37my915v1-patch-shebangs.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/7ps94j28m8jgrb4za09gckl37my915v1-patch-shebangs.sh") = 0
[pid 18114] lstat("/nix/store/89pbrd7mgdd7dz7a0f85qb5l4i6hb8nf-patch-2.7.5", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh", {st_mode=S_IFREG|0444, st_size=34, ...}) = 0
[pid 18114] link("/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh") = 0
[pid 18114] lstat("/nix/store/9srabrkss2srkghmss1cq2wcwpp4d3nk-patchelf-0.9", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/a92kz10cwkpa91k5239inl3fd61zp5dh-move-lib64.sh", {st_mode=S_IFREG|0444, st_size=784, ...}) = 0
[pid 18114] link("/nix/store/a92kz10cwkpa91k5239inl3fd61zp5dh-move-lib64.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/a92kz10cwkpa91k5239inl3fd61zp5dh-move-lib64.sh") = 0
[pid 18114] lstat("/nix/store/bxzwd8nb1jjdh9fcqpii4x7r4gl2s8qb-binutils-2.26", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/c7ipds48nb7sfzhb7vqp26rrllirxwxv-gcc-5.3.0", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/dp6c8mcsashywfkppdzic3l1qz4n9paq-gnugrep-2.22", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/dpkbd1ffigsvbk9n92ihzzicld5z3p7a-pcre-8.38", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/gwl3ppqj4i730nhd4f50ncl5jc4n97ks-glibc-2.23", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/i7hx6w6zy3bv53f2xm1r23ya8qbzn4is-bash-4.3-p42", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/iwa35vp5b9rg5jlpxplivl2dhy5spxza-set-source-date-epoch-to-latest.sh", {st_mode=S_IFREG|0444, st_size=1253, ...}) = 0
[pid 18114] link("/nix/store/iwa35vp5b9rg5jlpxplivl2dhy5spxza-set-source-date-epoch-to-latest.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/iwa35vp5b9rg5jlpxplivl2dhy5spxza-set-source-date-epoch-to-latest.sh") = 0
[pid 18114] lstat("/nix/store/j0iqb8qz273xw7xynlx25s0zbr7y2853-gnutar-1.28", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/jzm1pqc3jgwnv7x5cli8j3z3x7678z7c-attr-2.4.47", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/l65knk24c08q0lwdcf0yyh7x6l5shhqj-findutils-4.4.2", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/m0pbxxvs7zz4ixk4sxyq9shwazpd3kwq-gcc-wrapper-5.3.0", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/mq5a5h2p9wwwbpv0i7lmjzw2a503ph22-acl-2.2.52", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/raza8n6f2d65njscffjaj2sgm3j0s5ys-gawk-4.1.3", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/rm9fycfaprdr0zmkssmb5rg1g59w82lp-bzip2-1.0.6", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/slbij3ypl8w60kdyynylmyc6pfc8k4vf-zlib-1.2.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/vh2xkhgp9li6dcj76b1zyvz65bwp2svf-linux-headers-3.18.14", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/w8vzn0lsahbd9sfh0v30x65qwq6xrpa8-coreutils-8.25", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/x6x1fl9qz7ss4f3l6csxvgryyvh5gz1z-gnumake-4.1", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/z2i4zh64b1ki9zxis5zgf7adddw8pad3-paxctl-0.9", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 18114] lstat("/nix/store/z82dl6ialp166drqihzkz67nkl6w3l16-move-sbin.sh", {st_mode=S_IFREG|0444, st_size=545, ...}) = 0
[pid 18114] link("/nix/store/z82dl6ialp166drqihzkz67nkl6w3l16-move-sbin.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/z82dl6ialp166drqihzkz67nkl6w3l16-move-sbin.sh") = 0
[pid 18114] lstat("/nix/store/zr8kv6m6565y3l7dc8rcc2cvwfmlv92v-compress-man-pages.sh", {st_mode=S_IFREG|0444, st_size=670, ...}) = 0
[pid 18114] link("/nix/store/zr8kv6m6565y3l7dc8rcc2cvwfmlv92v-compress-man-pages.sh", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/zr8kv6m6565y3l7dc8rcc2cvwfmlv92v-compress-man-pages.sh") = 0
[pid 18114] lstat("/nix/var/log/nix/drvs/zb/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/var/log/nix/drvs/zb//gyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.bz2", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666) = 12
[pid 18114] mmap(NULL, 3600384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f494a26a000
[pid 18114] mmap(NULL, 3600384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4949efb000
[pid 18114] mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4951092000
[pid 18114] pipe2([13, 14], O_CLOEXEC) = 0
[pid 18114] clone(strace: Process 18122 attached
child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f495114b310) = 18122
[pid 18122] set_robust_list(0x7f495114b320, 24 <unfinished ...>
[pid 18114] wait4(18122, <unfinished ...>
[pid 18122] <... set_robust_list resumed> ) = 0
[pid 18122] ioctl(2, TCGETS, 0x7ffd44089fc0) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 18122] prctl(PR_SET_PDEATHSIG, SIGKILL) = 0
[pid 18122] sched_setaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 0
[pid 18122] getuid() = 0
[pid 18122] setgroups(0, NULL) = 0
[pid 18122] mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f4950f92000
[pid 18122] clone(strace: Process 18123 attached
child_stack=0x7f4951091ff0, flags=CLONE_PARENT|CLONE_NEWNS|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWPID|CLONE_NEWNET|SIGCHLD) = 18123
[pid 18123] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
[pid 18122] write(14, "18123\n", 6 <unfinished ...>
[pid 18123] setsid( <unfinished ...>
[pid 18122] <... write resumed> ) = 6
[pid 18122] exit_group(0 <unfinished ...>
[pid 18123] <... setsid resumed> ) = 1
[pid 18122] <... exit_group resumed>) = ?
[pid 18123] dup2(14, 2) = 2
[pid 18123] dup2(2, 1) = 1
[pid 18123] openat(AT_FDCWD, "/dev/null", O_RDWR) = 15
[pid 18123] dup2(15, 0) = 0
[pid 18123] close(15) = 0
[pid 18122] +++ exited with 0 +++
[pid 18123] socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 15
[pid 18114] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 18122
[pid 18123] ioctl(15, SIOCSIFFLAGS, {ifr_name="lo", ifr_flags=IFF_UP|IFF_LOOPBACK|IFF_RUNNING} <unfinished ...>
[pid 18114] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=18122, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
[pid 18114] read(13, "1", 1) = 1
[pid 18114] read(13, "8", 1) = 1
[pid 18123] <... ioctl resumed> ) = 0
[pid 18114] read(13, <unfinished ...>
[pid 18123] close(15 <unfinished ...>
[pid 18114] <... read resumed> "1", 1) = 1
[pid 18123] <... close resumed> ) = 0
[pid 18114] read(13, <unfinished ...>
[pid 18123] sethostname("localhost\0", 10 <unfinished ...>
[pid 18114] <... read resumed> "2", 1) = 1
[pid 18123] <... sethostname resumed> ) = 0
[pid 18114] read(13, <unfinished ...>
[pid 18123] setdomainname("(none)\0", 7 <unfinished ...>
[pid 18114] <... read resumed> "3", 1) = 1
[pid 18123] <... setdomainname resumed> ) = 0
[pid 18114] read(13, <unfinished ...>
[pid 18123] mount(NULL, "/", NULL, MS_REC|MS_PRIVATE, NULL <unfinished ...>
[pid 18114] <... read resumed> "\n", 1) = 1
[pid 18123] <... mount resumed> ) = 0
[pid 18123] mount("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", NULL, MS_BIND, NULL) = 0
[pid 18114] openat(AT_FDCWD, "/proc/18123/uid_map", O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC, 0666 <unfinished ...>
[pid 18123] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev/shm", <unfinished ...>
[pid 18114] <... openat resumed> ) = 15
[pid 18123] <... lstat resumed> 0x7f4951091590) = -1 ENOENT (No such file or directory)
[pid 18114] write(15, "0 0 1\n1000 30001 1", 18 <unfinished ...>
[pid 18123] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev", <unfinished ...>
[pid 18114] <... write resumed> ) = -1 EPERM (Operation not permitted)
[pid 18123] <... lstat resumed> 0x7f4951091200) = -1 ENOENT (No such file or directory)
[pid 18123] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
[pid 18123] mkdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev", 0777 <unfinished ...>
[pid 18114] close(15) = 0
[pid 18123] <... mkdir resumed> ) = 0
[pid 18123] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] kill(-18123, SIGKILL) = 0
[pid 18114] clone(strace: Process 18124 attached
child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f495114b310) = 18124
[pid 18124] set_robust_list(0x7f495114b320, 24 <unfinished ...>
[pid 18114] wait4(18124, <unfinished ...>
[pid 18124] <... set_robust_list resumed> ) = 0
[pid 18124] ioctl(2, TCGETS, 0x7ffd4408aa50) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 18124] prctl(PR_SET_PDEATHSIG, SIGKILL) = 0
[pid 18124] sched_setaffinity(0, 128, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) = 0
[pid 18124] setuid(30001) = 0
[pid 18124] kill(-1, SIGKILL) = 0
[pid 18124] exit_group(0) = ?
[pid 18124] +++ exited with 0 +++
[pid 18114] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 18124
[pid 18114] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=18124, si_uid=30001, si_status=0, si_utime=0, si_stime=0} ---
[pid 18114] wait4(18123, <unfinished ...>
[pid 18123] +++ killed by SIGKILL +++
[pid 18114] <... wait4 resumed> [{WIFSIGNALED(s) && WTERMSIG(s) == SIGKILL}], 0, NULL) = 18123
[pid 18114] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_KILLED, si_pid=18123, si_uid=0, si_status=SIGKILL, si_utime=0, si_stime=0} ---
[pid 18114] lstat("/tmp/nix-build-x.drv-0", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/tmp/nix-build-x.drv-0", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 15
[pid 18114] fstat(15, {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
[pid 18114] getdents(15, /* 2 entries */, 32768) = 48
[pid 18114] getdents(15, /* 0 entries */, 32768) = 0
[pid 18114] close(15) = 0
[pid 18114] unlink("/tmp/nix-build-x.drv-0") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/tmp/nix-build-x.drv-0") = 0
[pid 18114] write(12, "BZh9\27rE8P\220\0\0\0\0", 14) = 14
[pid 18114] close(12) = 0
[pid 18114] munmap(0x7f494a26a000, 3600384) = 0
[pid 18114] munmap(0x7f4949efb000, 3600384) = 0
[pid 18114] munmap(0x7f4951092000, 266240) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 12
[pid 18114] fstat(12, {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
[pid 18114] getdents(12, /* 6 entries */, 32768) = 144
[pid 18114] getdents(12, /* 0 entries */, 32768) = 0
[pid 18114] close(12) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 12
[pid 18114] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] getdents(12, /* 3 entries */, 32768) = 80
[pid 18114] getdents(12, /* 0 entries */, 32768) = 0
[pid 18114] close(12) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", {st_mode=S_IFDIR|S_ISVTX|0775, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 12
[pid 18114] fstat(12, {st_mode=S_IFDIR|S_ISVTX|0775, st_size=4096, ...}) = 0
[pid 18114] getdents(12, /* 10 entries */, 32768) = 640
[pid 18114] getdents(12, /* 0 entries */, 32768) = 0
[pid 18114] close(12) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/a92kz10cwkpa91k5239inl3fd61zp5dh-move-lib64.sh", {st_mode=S_IFREG|0444, st_size=784, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/a92kz10cwkpa91k5239inl3fd61zp5dh-move-lib64.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/z82dl6ialp166drqihzkz67nkl6w3l16-move-sbin.sh", {st_mode=S_IFREG|0444, st_size=545, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/z82dl6ialp166drqihzkz67nkl6w3l16-move-sbin.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/17h0mw5sipbvg70hdsn8i5mai4619l8c-move-docs.sh", {st_mode=S_IFREG|0444, st_size=1355, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/17h0mw5sipbvg70hdsn8i5mai4619l8c-move-docs.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/5hzb6zwq8xls6ny9pzg8h8rmp0p903y1-strip.sh", {st_mode=S_IFREG|0444, st_size=955, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/5hzb6zwq8xls6ny9pzg8h8rmp0p903y1-strip.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/zr8kv6m6565y3l7dc8rcc2cvwfmlv92v-compress-man-pages.sh", {st_mode=S_IFREG|0444, st_size=670, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/zr8kv6m6565y3l7dc8rcc2cvwfmlv92v-compress-man-pages.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh", {st_mode=S_IFREG|0444, st_size=34, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/7ps94j28m8jgrb4za09gckl37my915v1-patch-shebangs.sh", {st_mode=S_IFREG|0444, st_size=2495, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/7ps94j28m8jgrb4za09gckl37my915v1-patch-shebangs.sh") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/iwa35vp5b9rg5jlpxplivl2dhy5spxza-set-source-date-epoch-to-latest.sh", {st_mode=S_IFREG|0444, st_size=1253, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store/iwa35vp5b9rg5jlpxplivl2dhy5spxza-set-source-date-epoch-to-latest.sh") = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix/store") = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/nix") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 12
[pid 18114] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] getdents(12, /* 5 entries */, 32768) = 144
[pid 18114] getdents(12, /* 0 entries */, 32768) = 0
[pid 18114] close(12) = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/hosts", {st_mode=S_IFREG|0644, st_size=20, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/hosts") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/group", {st_mode=S_IFREG|0644, st_size=41, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/group") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/passwd", {st_mode=S_IFREG|0644, st_size=130, ...}) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc/passwd") = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/etc") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 12
[pid 18114] fstat(12, {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 18114] getdents(12, /* 2 entries */, 32768) = 48
[pid 18114] getdents(12, /* 0 entries */, 32768) = 0
[pid 18114] close(12) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/tmp") = 0
[pid 18114] lstat("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] openat(AT_FDCWD, "/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 12
[pid 18114] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 18114] getdents(12, /* 2 entries */, 32768) = 48
[pid 18114] getdents(12, /* 0 entries */, 32768) = 0
[pid 18114] close(12) = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot/dev") = 0
[pid 18114] unlink("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot") = -1 EISDIR (Is a directory)
[pid 18114] rmdir("/nix/store/zbgyqwnmzgz3c07zlr5f91fbfvb3ppb6-x.drv.chroot") = 0
[pid 18114] close(14) = 0
[pid 18114] close(13) = 0
[pid 18114] close(11) = 0
[pid 18114] close(10) = 0
[pid 18114] write(4, "POTS\0\0\0\0\3\0\0\0\360D\0\0", 16) = 16
[pid 18114] write(4, "POTS\0\0\0\0\2\0\0\0\360D\0\0", 16) = 16
[pid 18114] write(4, "POTS\0\0\0\0\1\0\0\0\360D\0\0", 16) = 16
[pid 18114] write(4, "ptxc\0\0\0\0(\0\0\0\0\0\0\0writing to file:"..., 64) = 64
[pid 18114] read(4, "", 32768) = 0
[pid 18115] <... poll resumed> ) = 1 ([{fd=4, revents=POLLHUP}])
[pid 18114] close(9 <unfinished ...>
[pid 18115] getpid( <unfinished ...>
[pid 18114] <... close resumed> ) = 0
[pid 18115] <... getpid resumed> ) = 18114
[pid 18114] unlink("/nix/var/nix/temproots/18114" <unfinished ...>
[pid 18115] tgkill(18114, 18114, SIGUSR1) = 0
[pid 18114] <... unlink resumed> ) = 0
[pid 18114] --- SIGUSR1 {si_signo=SIGUSR1, si_code=SI_TKILL, si_pid=18114, si_uid=0} ---
[pid 18115] madvise(0x7f494adda000, 8368128, MADV_DONTNEED <unfinished ...>
[pid 18114] rt_sigreturn({mask=[HUP INT PIPE TERM WINCH]} <unfinished ...>
[pid 18115] <... madvise resumed> ) = 0
[pid 18114] <... rt_sigreturn resumed> ) = 0
[pid 18115] exit(0) = ?
[pid 18115] +++ exited with 0 +++
[pid 18114] stat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] fcntl(5, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
[pid 18114] fcntl(5, F_SETLK, {l_type=F_WRLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
[pid 18114] unlink("/nix/var/nix/db/db.sqlite-shm") = 0
[pid 18114] munmap(0x7f49510d3000, 32768) = 0
[pid 18114] close(7) = 0
[pid 18114] close(6) = 0
[pid 18114] unlink("/nix/var/nix/db/db.sqlite-wal") = 0
[pid 18114] fcntl(5, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=2}) = 0
[pid 18114] fcntl(5, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
[pid 18114] fstat(5, {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] stat("/nix/var/nix/db/db.sqlite", {st_mode=S_IFREG|0644, st_size=83448832, ...}) = 0
[pid 18114] close(5) = 0
[pid 18114] close(3) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite", {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] fstat(8, {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] stat("/root/.cache/nix/binary-cache-v5.sqlite", {st_mode=S_IFREG|0644, st_size=2072576, ...}) = 0
[pid 18114] close(8) = 0
[pid 18114] exit_group(0) = ?
[pid 18114] +++ exited with 0 +++
[pid 17648] <... accept resumed> 0x7ffd4408bd40, [110]) = ? ERESTARTSYS (To be restarted if SA_RESTART is set)
[pid 17648] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=18114, si_uid=0, si_status=0, si_utime=0, si_stime=2} ---
[pid 17648] wait4(-1, NULL, WNOHANG, NULL) = 18114
[pid 17648] wait4(-1, NULL, WNOHANG, NULL) = -1 ECHILD (No child processes)
[pid 17648] rt_sigreturn({mask=[HUP INT PIPE TERM WINCH]}) = -1 EINTR (Interrupted system call)
[pid 17648] accept(3,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment