aboutsummaryrefslogtreecommitdiff
path: root/locale/pt
diff options
context:
space:
mode:
Diffstat (limited to 'locale/pt')
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po129
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2018-08-01-verifying-npm-ci-reproducibility.po44
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po62
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2019-06-02-using-nixos-as-an-stateless-workstation.po9
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.po72
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2020-08-31-the-database-i-wish-i-had.po37
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.po34
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2020-10-05-swift2nix-run-swift-inside-nix-builds.po36
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2020-10-19-feature-flags-differences-between-backend-frontend-and-mobile.po18
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2016-04-05-rpn-macro-setup.po21
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-11-nix-pinning.po23
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-13-gnu-guix-systemd-daemon-for-nixos.po18
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-builder-user-creation-commands.po11
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po38
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-13-nix-string-padding.po3
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-exps.po43
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-show-derivation.po71
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.po1024
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2019-12-29-raku-tuple-type-annotation.po22
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2020-01-04-failure-on-guix-tex-live-importer.po32
-rw-r--r--locale/pt/LC_MESSAGES/_pastebins/2020-02-14-guix-shebang.po8
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-08-12-simple-filename-timestamp.po12
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-08-13-anchor-headers-and-code-lines-in-jekyll.po83
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.po32
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-08-16-search-in-git.po19
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-08-28-grep-online-repositories.po78
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-09-04-send-emails-using-the-command-line-for-fun-and-profit.po42
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.po39
-rw-r--r--locale/pt/LC_MESSAGES/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.po6
29 files changed, 2066 insertions, 0 deletions
diff --git a/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po b/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
index ad29a0a..dfc690b 100644
--- a/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
+++ b/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
@@ -99,3 +99,132 @@ msgstr ""
msgid "Happy Guix/Nix hacking!"
msgstr ""
+
+msgid ""
+"groupadd --system guixbuild\n"
+"for i in `seq -w 1 10`;\n"
+"do\n"
+" useradd -g guixbuild -G guixbuild \\\n"
+" -d /var/empty -s `which nologin` \\\n"
+" -c \"Guix build user $i\" --system \\\n"
+" guixbuilder$i;\n"
+"done\n"
+msgstr ""
+
+msgid ""
+"$ sudo nixos-rebuild switch\n"
+"(...)\n"
+"removing user ‘guixbuilder7’\n"
+"removing user ‘guixbuilder3’\n"
+"removing user ‘guixbuilder10’\n"
+"removing user ‘guixbuilder1’\n"
+"removing user ‘guixbuilder6’\n"
+"removing user ‘guixbuilder9’\n"
+"removing user ‘guixbuilder4’\n"
+"removing user ‘guixbuilder2’\n"
+"removing user ‘guixbuilder8’\n"
+"removing user ‘guixbuilder5’\n"
+"(...)\n"
+msgstr ""
+
+msgid ""
+"{ config, pkgs, ...}:\n"
+"\n"
+"{\n"
+"\n"
+" # ... NixOS usual config ellided ...\n"
+"\n"
+" users = {\n"
+" mutableUsers = false;\n"
+"\n"
+" extraUsers =\n"
+" let\n"
+" andrehUser = {\n"
+" andreh = {\n"
+" # my custom user config\n"
+" };\n"
+" };\n"
+" buildUser = (i:\n"
+" {\n"
+" \"guixbuilder${i}\" = { # guixbuilder$i\n"
+" group = \"guixbuild\"; # -g guixbuild\n"
+" extraGroups = [\"guixbuild\"]; # -G guixbuild\n"
+" home = \"/var/empty\"; # -d /var/empty\n"
+" shell = pkgs.nologin; # -s `which nologin`\n"
+" description = \"Guix build user ${i}\"; # -c \"Guix buid user $i\"\n"
+" isSystemUser = true; # --system\n"
+" };\n"
+" }\n"
+" );\n"
+" in\n"
+" # merge all users\n"
+" pkgs.lib.fold (str: acc: acc // buildUser str)\n"
+" andrehUser\n"
+" # for i in `seq -w 1 10`\n"
+" (map (pkgs.lib.fixedWidthNumber 2) (builtins.genList (n: n+1) 10));\n"
+"\n"
+" extraGroups.guixbuild = {\n"
+" name = \"guixbuild\";\n"
+" };\n"
+" };\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"# This is a \"service unit file\" for the systemd init system to launch\n"
+"# 'guix-daemon'. Drop it in /etc/systemd/system or similar to have\n"
+"# 'guix-daemon' automatically started.\n"
+"\n"
+"[Unit]\n"
+"Description=Build daemon for GNU Guix\n"
+"\n"
+"[Service]\n"
+"ExecStart=/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild\n"
+"Environment=GUIX_LOCPATH=/root/.guix-profile/lib/locale\n"
+"RemainAfterExit=yes\n"
+"StandardOutput=syslog\n"
+"StandardError=syslog\n"
+"\n"
+"# See <https://lists.gnu.org/archive/html/guix-devel/2016-04/msg00608.html>.\n"
+"# Some package builds (for example, go@1.8.1) may require even more than\n"
+"# 1024 tasks.\n"
+"TasksMax=8192\n"
+"\n"
+"[Install]\n"
+"WantedBy=multi-user.target\n"
+msgstr ""
+
+msgid ""
+"guix-daemon = {\n"
+" enable = true;\n"
+" description = \"Build daemon for GNU Guix\";\n"
+" serviceConfig = {\n"
+" ExecStart = \"/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild\";\n"
+" Environment=\"GUIX_LOCPATH=/root/.guix-profile/lib/locale\";\n"
+" RemainAfterExit=\"yes\";\n"
+" StandardOutput=\"syslog\";\n"
+" StandardError=\"syslog\";\n"
+" TaskMax= \"8192\";\n"
+" };\n"
+" wantedBy = [ \"multi-user.target\" ];\n"
+"};\n"
+msgstr ""
+
+msgid ""
+"$ guix package -i hello\n"
+"The following package will be installed:\n"
+" hello 2.10 /gnu/store/bihfrh609gkxb9dp7n96wlpigiv3krfy-hello-2.10\n"
+"\n"
+"substitute: updating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%\n"
+"The following derivations will be built:\n"
+" /gnu/store/nznmdn6inpwxnlkrasydmda4s2vsp9hg-profile.drv\n"
+" /gnu/store/vibqrvw4c8lacxjrkqyzqsdrmckv77kq-fonts-dir.drv\n"
+" /gnu/store/hi8alg7wi0wgfdi3rn8cpp37zhx8ykf3-info-dir.drv\n"
+" /gnu/store/cvkbp378cvfjikz7mjymhrimv7j12p0i-ca-certificate-bundle.drv\n"
+" /gnu/store/d62fvxymnp95rzahhmhf456bsf0xg1c6-manual-database.drv\n"
+"Creating manual page database...\n"
+"1 entries processed in 0.0 s\n"
+"2 packages in profile\n"
+"$ hello\n"
+"Hello, world!\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2018-08-01-verifying-npm-ci-reproducibility.po b/locale/pt/LC_MESSAGES/_articles/2018-08-01-verifying-npm-ci-reproducibility.po
index e1097b7..9503fff 100644
--- a/locale/pt/LC_MESSAGES/_articles/2018-08-01-verifying-npm-ci-reproducibility.po
+++ b/locale/pt/LC_MESSAGES/_articles/2018-08-01-verifying-npm-ci-reproducibility.po
@@ -167,3 +167,47 @@ msgid ""
"[^lerna-package-lock]: Finding a big known repo that actually committed the "
"`package-lock.json` file was harder than I expected."
msgstr ""
+
+msgid ""
+"merkle-tree () {\n"
+" dirname=\"${1-.}\"\n"
+" pushd \"$dirname\"\n"
+" find . -type f | \\\n"
+" sort | \\\n"
+" xargs -I{} sha256sum \"{}\" | \\\n"
+" sha256sum | \\\n"
+" awk '{print $1}'\n"
+" popd\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"mkdir /tmp/merkle-tree-test/\n"
+"cd /tmp/merkle-tree-test/\n"
+"mkdir -p a/b/ a/c/ d/\n"
+"echo \"one\" > a/b/one.txt\n"
+"echo \"two\" > a/c/two.txt\n"
+"echo \"three\" > d/three.txt\n"
+"merkle-tree . # output is be343bb01fe00aeb8fef14a3e16b1c3d1dccbf86d7e41b4753e6ccb7dc3a57c3\n"
+"merkle-tree . # output still is be343bb01fe00aeb8fef14a3e16b1c3d1dccbf86d7e41b4753e6ccb7dc3a57c3\n"
+"echo \"four\" > d/four.txt\n"
+"merkle-tree . # output is now b5464b958969ed81815641ace96b33f7fd52c20db71a7fccc45a36b3a2ae4d4c\n"
+"rm d/four.txt\n"
+"merkle-tree . # output back to be343bb01fe00aeb8fef14a3e16b1c3d1dccbf86d7e41b4753e6ccb7dc3a57c3\n"
+"echo \"hidden-five\" > a/b/one.txt\n"
+"merkle-tree . # output changed 471fae0d074947e4955e9ac53e95b56e4bc08d263d89d82003fb58a0ffba66f5\n"
+msgstr ""
+
+msgid ""
+"cd /tmp/\n"
+"git clone https://github.com/lerna/lerna.git\n"
+"cd lerna/\n"
+"git checkout 57ff865c0839df75dbe1974971d7310f235e1109\n"
+"npm ci\n"
+"merkle-tree node_modules/ # outputs 11e218c4ac32fac8a9607a8da644fe870a25c99821167d21b607af45699afafa\n"
+"rm -rf node_modules/\n"
+"npm ci\n"
+"merkle-tree node_modules/ # outputs 11e218c4ac32fac8a9607a8da644fe870a25c99821167d21b607af45699afafa\n"
+"npm ci # test if it also works with an existing node_modules/ folder\n"
+"merkle-tree node_modules/ # outputs 11e218c4ac32fac8a9607a8da644fe870a25c99821167d21b607af45699afafa\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po b/locale/pt/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
index 86f62ae..52b5a40 100644
--- a/locale/pt/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
+++ b/locale/pt/LC_MESSAGES/_articles/2018-12-21-using-youtube-dl-to-manage-youtube-subscriptions.po
@@ -316,3 +316,65 @@ msgid ""
"could be better, but also how much it has improved over the last years, I "
"say it's reasonable."
msgstr ""
+
+msgid ""
+"$ youtube-dl https://www.youtube.com/watch?v=rnMYZnY3uLA\n"
+"[youtube] rnMYZnY3uLA: Downloading webpage\n"
+"[youtube] rnMYZnY3uLA: Downloading video info webpage\n"
+"[download] Destination: A Origem da Vida _ Nerdologia-rnMYZnY3uLA.mp4\n"
+"[download] 100% of 32.11MiB in 00:12\n"
+msgstr ""
+
+msgid ""
+"$ youtube-dl \"https://www.youtube.com/channel/UClu474HMt895mVxZdlIHXEA\" \\\n"
+" --download-archive ~/Nextcloud/cache/youtube-dl-seen.conf \\\n"
+" --prefer-free-formats \\\n"
+" --playlist-end 20 \\\n"
+" --write-description \\\n"
+" --output \"~/Downloads/yt-dl/%(uploader)s/%(upload_date)s - %(title)s.%(ext)s\"\n"
+msgstr ""
+
+msgid ""
+"#!/bin/sh\n"
+"\n"
+"export DEFAULT_PLAYLIST_END=15\n"
+"\n"
+"download() {\n"
+" youtube-dl \"$1\" \\\n"
+" --download-archive ~/Nextcloud/cache/youtube-dl-seen.conf \\\n"
+" --prefer-free-formats \\\n"
+" --playlist-end $2 \\\n"
+" --write-description \\\n"
+" --output \"~/Downloads/yt-dl/%(uploader)s/%(upload_date)s - %(title)s.%(ext)s\"\n"
+"}\n"
+"export -f download\n"
+"\n"
+"\n"
+"download_user() {\n"
+" download \"https://www.youtube.com/user/$1\" ${2-$DEFAULT_PLAYLIST_END}\n"
+"}\n"
+"export -f download_user\n"
+"\n"
+"\n"
+"download_channel() {\n"
+" download \"https://www.youtube.com/channel/$1\" ${2-$DEFAULT_PLAYLIST_END}\n"
+"}\n"
+"export -f download_channel\n"
+"\n"
+"\n"
+"download_playlist() {\n"
+" download \"https://www.youtube.com/playlist?list=$1\" ${2-$DEFAULT_PLAYLIST_END}\n"
+"}\n"
+"export -f download_playlist\n"
+msgstr ""
+
+msgid ""
+"#!/bin/sh\n"
+"\n"
+"download_user ClojureTV 15\n"
+"download_channel \"UCmEClzCBDx-vrt0GuSKBd9g\" 100\n"
+"download_playlist \"PLqG7fA3EaMRPzL5jzd83tWcjCUH9ZUsbX\" 15\n"
+msgstr ""
+
+msgid "$ uniq youtube-dl-seen.conf > youtube-dl-seen.conf\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2019-06-02-using-nixos-as-an-stateless-workstation.po b/locale/pt/LC_MESSAGES/_articles/2019-06-02-using-nixos-as-an-stateless-workstation.po
index 6aaef22..e99d4e7 100644
--- a/locale/pt/LC_MESSAGES/_articles/2019-06-02-using-nixos-as-an-stateless-workstation.po
+++ b/locale/pt/LC_MESSAGES/_articles/2019-06-02-using-nixos-as-an-stateless-workstation.po
@@ -194,3 +194,12 @@ msgid ""
"realising that I can't pinpoint the moment when I decided to switch to "
"NixOS. It's like I had a distant past when this wasn't true."
msgstr ""
+
+msgid ""
+"# sample ~/.mrconfig file snippet\n"
+"[dev/guix/guix]\n"
+"checkout =\n"
+" git clone https://git.savannah.gnu.org/git/guix.git guix\n"
+" cd guix/\n"
+" git config sendemail.to guix-patches@gnu.org\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.po b/locale/pt/LC_MESSAGES/_articles/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.po
index 64bc417..2396848 100644
--- a/locale/pt/LC_MESSAGES/_articles/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.po
+++ b/locale/pt/LC_MESSAGES/_articles/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.po
@@ -80,3 +80,75 @@ msgid ""
" to make something that just \"works on my machine\" or add a maintainence "
"burden to the author. I didn't look at it again recently, though."
msgstr ""
+
+msgid ""
+"#!/usr/bin/env bash\n"
+"set -x\n"
+"set -Eeuo pipefail\n"
+"\n"
+"VERSION='1.0.1'\n"
+"SYSTEM='x86_64-linux'\n"
+"BINARY=\"guix-binary-${VERSION}.${SYSTEM}.tar.xz\"\n"
+"\n"
+"cd /tmp\n"
+"wget \"https://ftp.gnu.org/gnu/guix/${BINARY}\"\n"
+"tar -xf \"${BINARY}\"\n"
+"\n"
+"sudo mv var/guix /var/\n"
+"sudo mv gnu /\n"
+"sudo mkdir -p ~root/.config/guix\n"
+"sudo ln -fs /var/guix/profiles/per-user/root/current-guix ~root/.config/guix/current\n"
+"\n"
+"GUIX_PROFILE=\"$(echo ~root)/.config/guix/current\"\n"
+"source \"${GUIX_PROFILE}/etc/profile\"\n"
+"\n"
+"groupadd --system guixbuild\n"
+"for i in $(seq -w 1 10);\n"
+"do\n"
+" useradd -g guixbuild \\\n"
+" -G guixbuild \\\n"
+" -d /var/empty \\\n"
+" -s \"$(command -v nologin)\" \\\n"
+" -c \"Guix build user ${i}\" --system \\\n"
+" \"guixbuilder${i}\";\n"
+"done\n"
+"\n"
+"mkdir -p /usr/local/bin\n"
+"cd /usr/local/bin\n"
+"ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix .\n"
+"ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix-daemon .\n"
+"\n"
+"guix archive --authorize < ~root/.config/guix/current/share/guix/ci.guix.gnu.org.pub\n"
+msgstr ""
+
+msgid ""
+"#!/usr/bin/env bash\n"
+"set -x\n"
+"set -Eeuo pipefail\n"
+"\n"
+"sudo guix-daemon --build-users-group=guixbuild &\n"
+"guix pull\n"
+"guix package -u\n"
+"guix --version\n"
+msgstr ""
+
+msgid ""
+"image: debian/stable\n"
+"packages:\n"
+" - wget\n"
+"sources:\n"
+" - https://git.sr.ht/~euandreh/songbooks\n"
+"tasks:\n"
+" - install-guix: |\n"
+" cd ./songbooks/\n"
+" ./scripts/install-guix.sh\n"
+" ./scripts/start-guix.sh\n"
+" echo 'sudo guix-daemon --build-users-group=guixbuild &' >> ~/.buildenv\n"
+" echo 'export PATH=\"${HOME}/.config/guix/current/bin${PATH:+:}$PATH\"' >> ~/.buildenv\n"
+" - tests: |\n"
+" cd ./songbooks/\n"
+" guix environment -m build-aux/guix.scm -- make check\n"
+" - docs: |\n"
+" cd ./songbooks/\n"
+" guix environment -m build-aux/guix.scm -- make publish-dist\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2020-08-31-the-database-i-wish-i-had.po b/locale/pt/LC_MESSAGES/_articles/2020-08-31-the-database-i-wish-i-had.po
index 58de095..216733d 100644
--- a/locale/pt/LC_MESSAGES/_articles/2020-08-31-the-database-i-wish-i-had.po
+++ b/locale/pt/LC_MESSAGES/_articles/2020-08-31-the-database-i-wish-i-had.po
@@ -360,3 +360,40 @@ msgid ""
"inbox/%3C010101744a592b75-1dce9281-f0b8-4226-9d50-fd2c7901fa72-000000%40us-"
"west-2.amazonses.com%3E)."
msgstr ""
+
+msgid ""
+"This makes me consider it as a storage backend all by itself. I\n"
+"initially considered having an SQLite storage backend as one implementation\n"
+"of the POSIX filesystem storage API that I mentioned. My goal was to rely on\n"
+"it so I could validate the correctness of the actual implementation, given\n"
+"SQLite's robustness.\n"
+"\n"
+"However it may even better to just use SQLite, and get an ACID backend\n"
+"without recreating a big part of SQLite from scratch. In fact, both Datomic\n"
+"and PouchDB didn't create an storage backend for themselves, they just\n"
+"plugged on what already existed and already worked. I'm beginning to think\n"
+"that it would be wiser to just do the same, and drop entirely the from\n"
+"scratch implementation that I mentioned.\n"
+"\n"
+"That's not to say that adding an IndexedDB compatibility layer to SQLite\n"
+"would be enough to make it fit the other requirements I mention on this\n"
+"page. SQLite still is an implementation of a update-in-place, SQL,\n"
+"table-oriented database. It is probably true that cherry-picking the\n"
+"relevant parts of SQLite (like storage access, consistency, crash recovery,\n"
+"parser generator, *etc.*) and leaving out the unwanted parts (SQL, tables,\n"
+"threading, *etc.*) would be better than including the full SQLite stack, but\n"
+"that's simply an optimization. Both could even coexist, if desired.\n"
+"\n"
+"SQLite would have to be treated similarly to how Datomic treats SQL\n"
+"databases: instead of having a table for each entities, spread attributes\n"
+"over the tables, *etc.*, it treats SQL databases as a key-value storage so it\n"
+"doesn't have to re-implement interacting with the disk that other databases\n"
+"do well.\n"
+"\n"
+"The tables would contain blocks of binary data, so there isn't a difference\n"
+"on how the SQLite storage backend behaves and how the IndexedDB storage\n"
+"backend behaves, much like how Datomic works the same regardless of the\n"
+"storage backend, same for PouchDB.\n"
+"\n"
+"I welcome corrections on what I said above, too.\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.po b/locale/pt/LC_MESSAGES/_articles/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.po
index 8c0231c..e8f3d6e 100644
--- a/locale/pt/LC_MESSAGES/_articles/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.po
+++ b/locale/pt/LC_MESSAGES/_articles/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.po
@@ -55,3 +55,37 @@ msgstr ""
msgid "Report back if you wish. Again, patches welcome."
msgstr ""
+
+msgid ""
+"let\n"
+" niv-sources = import ./nix/sources.nix;\n"
+" mozilla-overlay = import niv-sources.nixpkgs-mozilla;\n"
+" pkgs = import niv-sources.nixpkgs { overlays = [ mozilla-overlay ]; };\n"
+" src = pkgs.nix-gitignore.gitignoreSource [ ] ./.;\n"
+" cargo2nix = pkgs.callPackage niv-sources.cargo2nix {\n"
+" lockfile = ./Cargo.lock;\n"
+" };\n"
+"in pkgs.stdenv.mkDerivation {\n"
+" inherit src;\n"
+" name = \"cargo-test\";\n"
+" buildInputs = [ pkgs.latest.rustChannels.nightly.rust ];\n"
+" phases = [ \"unpackPhase\" \"buildPhase\" ];\n"
+" buildPhase = ''\n"
+" # Setup dependencies path to satisfy Cargo\n"
+" mkdir .cargo/\n"
+" ln -s ${cargo2nix.env.cargo-config} .cargo/config\n"
+" ln -s ${cargo2nix.env.vendor} vendor\n"
+"\n"
+" # Run the tests\n"
+" cargo test\n"
+" touch $out\n"
+" '';\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"pushd \"$(mktemp -d)\"\n"
+"git clone https://git.euandreh.xyz/cargo2nix-demo\n"
+"cd cargo2nix-demo/\n"
+"nix-build\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2020-10-05-swift2nix-run-swift-inside-nix-builds.po b/locale/pt/LC_MESSAGES/_articles/2020-10-05-swift2nix-run-swift-inside-nix-builds.po
index e9dbef6..5719f51 100644
--- a/locale/pt/LC_MESSAGES/_articles/2020-10-05-swift2nix-run-swift-inside-nix-builds.po
+++ b/locale/pt/LC_MESSAGES/_articles/2020-10-05-swift2nix-run-swift-inside-nix-builds.po
@@ -246,3 +246,39 @@ msgid ""
"checked-in the repository at all. It could be always generated on the fly, "
"much like how Swift's `dependencies-state.json` is."
msgstr ""
+
+msgid ""
+"let\n"
+" niv-sources = import ./nix/sources.nix;\n"
+" pkgs = import niv-sources.nixpkgs { };\n"
+" src = pkgs.nix-gitignore.gitignoreSource [ ] ./.;\n"
+" swift2nix = pkgs.callPackage niv-sources.swift2nix {\n"
+" package-resolved = ./Package.resolved;\n"
+" };\n"
+"in pkgs.stdenv.mkDerivation {\n"
+" inherit src;\n"
+" name = \"swift-test\";\n"
+" buildInputs = with pkgs; [ swift ];\n"
+" phases = [ \"unpackPhase\" \"buildPhase\" ];\n"
+" buildPhase = ''\n"
+" # Setup dependencies path to satisfy SwiftPM\n"
+" mkdir .build\n"
+" ln -s ${swift2nix.env.dependencies-state-json} .build/dependencies-state.json\n"
+" ln -s ${swift2nix.env.checkouts} .build/checkouts\n"
+"\n"
+" # Run the tests\n"
+" swift test\n"
+" touch $out\n"
+" '';\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"ln -s ${node2nix-package.shell.nodeDependencies}/lib/node_modules ./node_modules\n"
+"npm test\n"
+msgstr ""
+
+msgid ""
+"nix-build -A swift2nix.release\n"
+"nix-build -A swift2nix.test\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_articles/2020-10-19-feature-flags-differences-between-backend-frontend-and-mobile.po b/locale/pt/LC_MESSAGES/_articles/2020-10-19-feature-flags-differences-between-backend-frontend-and-mobile.po
index ff9e23e..7f9cb36 100644
--- a/locale/pt/LC_MESSAGES/_articles/2020-10-19-feature-flags-differences-between-backend-frontend-and-mobile.po
+++ b/locale/pt/LC_MESSAGES/_articles/2020-10-19-feature-flags-differences-between-backend-frontend-and-mobile.po
@@ -414,3 +414,21 @@ msgid ""
"feature flags is a good problem to have, not the opposite. Automate the "
"process of creating a feature flag to lower its cost."
msgstr ""
+
+msgid ""
+"function processTransaction() {\n"
+" validate();\n"
+" persist();\n"
+" // TODO: add call to notifyListeners()\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"function processTransaction() {\n"
+" validate();\n"
+" persist();\n"
+" if (featureIsEnabled(\"activate-notify-listeners\")) {\n"
+" notifyListeners();\n"
+" }\n"
+"}\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2016-04-05-rpn-macro-setup.po b/locale/pt/LC_MESSAGES/_pastebins/2016-04-05-rpn-macro-setup.po
index a5eea70..5340de6 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2016-04-05-rpn-macro-setup.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2016-04-05-rpn-macro-setup.po
@@ -8,3 +8,24 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"(defmacro rpn (body)\n"
+" (rpn-expander body))\n"
+"\n"
+"(defun rpn-expander (body)\n"
+" (mapcar (lambda (x)\n"
+" (if (listp x)\n"
+" (rpn-expander x)\n"
+" x))\n"
+" (reverse body)))\n"
+"\n"
+"(rpn ((2 1 +) 2 *))\n"
+"; => 6\n"
+"\n"
+"#|\n"
+"Just a quick stub.\n"
+"\n"
+"One could easily improve #'RPN-EXPANDER in order to better suit one's needs.\n"
+"|#\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-11-nix-pinning.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-11-nix-pinning.po
index c4847e7..ce943eb 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-11-nix-pinning.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-11-nix-pinning.po
@@ -8,3 +8,26 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"let\n"
+" # Pin the nixpkgs version\n"
+" stdenv = pkgs.stdenv;\n"
+" pkgsOriginal = import <nixpkgs> {};\n"
+" pkgsSrc = pkgsOriginal.fetchzip {\n"
+" url = \"https://github.com/NixOS/nixpkgs/archive/18.03.zip\";\n"
+" sha256 = \"0hk4y2vkgm1qadpsm4b0q1vxq889jhxzjx3ragybrlwwg54mzp4f\";\n"
+" };\n"
+"\n"
+" pkgs = import (pkgsSrc) {};\n"
+"\n"
+" buildNodeJS = pkgs.callPackage <nixpkgs/pkgs/development/web/nodejs/nodejs.nix> {};\n"
+"\n"
+"in rec {\n"
+" nodeFromNVMRC = buildNodeJS {\n"
+" version = \"8.7.0\";\n"
+" sha256 = \"16mml3cwjnq7yf9yd67d2dybav3nvbnk89fkixs1wz7fd26d05ss\";\n"
+" patches = [];\n"
+" };\n"
+"}\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-gnu-guix-systemd-daemon-for-nixos.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-gnu-guix-systemd-daemon-for-nixos.po
index 0769039..bb0ab48 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-gnu-guix-systemd-daemon-for-nixos.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-gnu-guix-systemd-daemon-for-nixos.po
@@ -8,3 +8,21 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+" # Derived from Guix guix-daemon.service.in\n"
+" # https://git.savannah.gnu.org/cgit/guix.git/tree/etc/guix-daemon.service.in?id=00c86a888488b16ce30634d3a3a9d871ed6734a2\n"
+" systemd.services.guix-daemon = {\n"
+" enable = true;\n"
+" description = \"Build daemon for GNU Guix\";\n"
+" serviceConfig = {\n"
+" ExecStart = \"/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild\";\n"
+" Environment=\"GUIX_LOCPATH=/root/.guix-profile/lib/locale\";\n"
+" RemainAfterExit=\"yes\";\n"
+" StandardOutput=\"syslog\";\n"
+" StandardError=\"syslog\";\n"
+" TaskMax= 8192;\n"
+" };\n"
+" wantedBy = [ \"multi-user.target\" ];\n"
+" };\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-builder-user-creation-commands.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-builder-user-creation-commands.po
index 47e5d8c..d66c27c 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-builder-user-creation-commands.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-builder-user-creation-commands.po
@@ -8,3 +8,14 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"groupadd --system guixbuild\n"
+"for i in `seq -w 1 10`;\n"
+"do\n"
+" useradd -g guixbuild -G guixbuild \\\n"
+" -d /var/empty -s `which nologin` \\\n"
+" -c \"Guix build user $i\" --system \\\n"
+" guixbuilder$i;\n"
+"done\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po
index 351c491..681d0ce 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po
@@ -8,3 +8,41 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+" users = {\n"
+" mutableUsers = false;\n"
+"\n"
+" extraUsers =\n"
+" let\n"
+" andrehUser = {\n"
+" andreh = {\n"
+" # my custom user config\n"
+" };\n"
+" };\n"
+" # From the Guix manual:\n"
+" # https://www.gnu.org/software/guix/manual/en/html_node/Build-Environment-Setup.html#Build-Environment-Setup\n"
+" buildUser = (i:\n"
+" {\n"
+" \"guixbuilder${i}\" = { # guixbuilder$i\n"
+" group = \"guixbuild\"; # -g guixbuild\n"
+" extraGroups = [\"guixbuild\"]; # -G guixbuild\n"
+" home = \"/var/empty\"; # -d /var/empty\n"
+" shell = pkgs.nologin; # -s `which nologin`\n"
+" description = \"Guix build user ${i}\"; # -c \"Guix buid user $i\"\n"
+" isSystemUser = true; # --system\n"
+" };\n"
+" }\n"
+" );\n"
+" in\n"
+" # merge all users\n"
+" pkgs.lib.fold (str: acc: acc // buildUser str)\n"
+" andrehUser\n"
+" # for i in `seq -w 1 10`\n"
+" (map (pkgs.lib.fixedWidthNumber 2) (builtins.genList (n: n+1) 10));\n"
+"\n"
+" extraGroups.guixbuild = {\n"
+" name = \"guixbuild\";\n"
+" };\n"
+" };\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-nix-string-padding.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-nix-string-padding.po
index 19dd816..0ab3e5a 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-nix-string-padding.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-nix-string-padding.po
@@ -8,3 +8,6 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid "padString = (n: if n < 10 then \"0\" + toString n else toString n)\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-exps.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-exps.po
index 79c420a..6cdd685 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-exps.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-exps.po
@@ -8,3 +8,46 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"let\n"
+" pkgsOriginal = import <nixpkgs> {};\n"
+" pkgsSrc = pkgsOriginal.fetchzip {\n"
+" url = \"https://github.com/NixOS/nixpkgs/archive/18.03.zip\";\n"
+" sha256 = \"0hk4y2vkgm1qadpsm4b0q1vxq889jhxzjx3ragybrlwwg54mzp4f\";\n"
+" };\n"
+" pkgs = import (pkgsSrc) {};\n"
+" stdenv = pkgs.stdenv;\n"
+"\n"
+" # Taken from:\n"
+" # http://www.cs.yale.edu/homes/lucas.paul/posts/2017-04-10-hakyll-on-nix.html\n"
+" websiteBuilder = pkgs.stdenv.mkDerivation {\n"
+" name = \"website-builder\";\n"
+" src = ./hakyll;\n"
+" phases = \"unpackPhase buildPhase\";\n"
+" buildInputs = [\n"
+" (pkgs.haskellPackages.ghcWithPackages (p: with p; [ hakyll ]))\n"
+" ];\n"
+" buildPhase = ''\n"
+" mkdir -p $out/bin\n"
+" ghc -O2 -dynamic --make Main.hs -o $out/bin/generate-site\n"
+" '';\n"
+" };\n"
+"in rec {\n"
+" euandrehWebsite = stdenv.mkDerivation rec {\n"
+" name = \"euandreh-website\";\n"
+" src = ./site;\n"
+" phases = \"unpackPhase buildPhase\";\n"
+" # version = \"0.1\";\n"
+" buildInputs = [ websiteBuilder ];\n"
+" buildPhase = ''\n"
+" export LOCALE_ARCHIVE=\"${pkgs.glibcLocales}/lib/locale/locale-archive\";\n"
+" export LANG=en_US.UTF-8\n"
+" generate-site build\n"
+"\n"
+" mkdir $out\n"
+" cp -r _site/* $out\n"
+" '';\n"
+" };\n"
+"}\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-show-derivation.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-show-derivation.po
index 8929509..043abb9 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-show-derivation.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-25-nix-show-derivation.po
@@ -8,3 +8,74 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"$ nix show-derivation /nix/store/zzz9cl2ly0mb2njr7vwa5528fxmn29m8-combofont-0.2.drv\n"
+"{\n"
+" \"/nix/store/zzz9cl2ly0mb2njr7vwa5528fxmn29m8-combofont-0.2.drv\": {\n"
+" \"outputs\": {\n"
+" \"out\": {\n"
+" \"path\": \"/nix/store/dc897j29s5pl5mcw064n5b07bydacfm5-combofont-0.2\",\n"
+" \"hashAlgo\": \"r:sha1\",\n"
+" \"hash\": \"06be9cab7176fe6d99dd773315d9ec5c62f6a71b\"\n"
+" }\n"
+" },\n"
+" \"inputSrcs\": [\n"
+" \"/nix/store/b6ill8amfg0gki49zapm4asrrw9zzgz9-builder.sh\"\n"
+" ],\n"
+" \"inputDrvs\": {\n"
+" \"/nix/store/3s0crp8826gwvfap6kjjyh9a7wq92awk-stdenv.drv\": [\n"
+" \"out\"\n"
+" ],\n"
+" \"/nix/store/fafsh2hx1xxqgm8gwkj3bw3czz6dcvvw-mirrors-list.drv\": [\n"
+" \"out\"\n"
+" ],\n"
+" \"/nix/store/qqla9sd8p8qwgl2a1wpn75bwp2vw70mm-bash-4.4-p12.drv\": [\n"
+" \"out\"\n"
+" ],\n"
+" \"/nix/store/v8fxvb0wlsa5pmrfawa3dg501mglw43c-curl-7.59.0.drv\": [\n"
+" \"dev\"\n"
+" ]\n"
+" },\n"
+" \"platform\": \"x86_64-linux\",\n"
+" \"builder\": \"/nix/store/lw7xaqhakk0i1c631m3cvac3x4lc5gr5-bash-4.4-p12/bin/bash\",\n"
+" \"args\": [\n"
+" \"-e\",\n"
+" \"/nix/store/b6ill8amfg0gki49zapm4asrrw9zzgz9-builder.sh\"\n"
+" ],\n"
+" \"env\": {\n"
+" \"buildInputs\": \"\",\n"
+" \"builder\": \"/nix/store/lw7xaqhakk0i1c631m3cvac3x4lc5gr5-bash-4.4-p12/bin/bash\",\n"
+" \"configureFlags\": \"\",\n"
+" \"curlOpts\": \"\",\n"
+" \"depsBuildBuild\": \"\",\n"
+" \"depsBuildBuildPropagated\": \"\",\n"
+" \"depsBuildTarget\": \"\",\n"
+" \"depsBuildTargetPropagated\": \"\",\n"
+" \"depsHostBuild\": \"\",\n"
+" \"depsHostBuildPropagated\": \"\",\n"
+" \"depsTargetTarget\": \"\",\n"
+" \"depsTargetTargetPropagated\": \"\",\n"
+" \"downloadToTemp\": \"1\",\n"
+" \"executable\": \"\",\n"
+" \"impureEnvVars\": \"http_proxy https_proxy ftp_proxy all_proxy no_proxy NIX_CURL_FLAGS NIX_HASHED_MIRRORS NIX_CONNECT_TIMEOUT NIX_MIRRORS_apache NIX_MIRRORS_bioc NIX_MIRRORS_bitlbee NIX_MIRRORS_cpan NIX_MIRRORS_debian NIX_MIRRORS_fedora NIX_MIRRORS_gcc NIX_MIRRORS_gentoo NIX_MIRRORS_gnome NIX_MIRRORS_gnu NIX_MIRRORS_gnupg NIX_MIRRORS_hackage NIX_MIRRORS_hashedMirrors NIX_MIRRORS_imagemagick NIX_MIRRORS_kde NIX_MIRRORS_kernel NIX_MIRRORS_maven NIX_MIRRORS_metalab NIX_MIRRORS_mozilla NIX_MIRRORS_mysql NIX_MIRRORS_oldsuse NIX_MIRRORS_openbsd NIX_MIRRORS_opensuse NIX_MIRRORS_postgresql NIX_MIRRORS_pypi NIX_MIRRORS_roy NIX_MIRRORS_sagemath NIX_MIRRORS_samba NIX_MIRRORS_savannah NIX_MIRRORS_sourceforge NIX_MIRRORS_sourceforgejp NIX_MIRRORS_steamrt NIX_MIRRORS_ubuntu NIX_MIRRORS_xfce NIX_MIRRORS_xorg\",\n"
+" \"mirrorsFile\": \"/nix/store/36pk3fz566c2zj6bj8qy7gxl1z14xc4f-mirrors-list\",\n"
+" \"name\": \"combofont-0.2\",\n"
+" \"nativeBuildInputs\": \"/nix/store/hgv54iw72sgpqmzgv30s6gsfc4rd4wzp-curl-7.59.0-dev\",\n"
+" \"out\": \"/nix/store/dc897j29s5pl5mcw064n5b07bydacfm5-combofont-0.2\",\n"
+" \"outputHash\": \"3fkzcqjwxkciacvpvncnvzknf6mrrgh6\",\n"
+" \"outputHashAlgo\": \"sha1\",\n"
+" \"outputHashMode\": \"recursive\",\n"
+" \"postFetch\": \"mkdir \\\"$out\\\";tar -xf $downloadedFile \\\\\\n '--strip-components=0' \\\\\\n -C \\\"$out\\\" --anchored --exclude=tlpkg --keep-old-files\\n\",\n"
+" \"preferHashedMirrors\": \"1\",\n"
+" \"preferLocalBuild\": \"1\",\n"
+" \"propagatedBuildInputs\": \"\",\n"
+" \"propagatedNativeBuildInputs\": \"\",\n"
+" \"showURLs\": \"\",\n"
+" \"stdenv\": \"/nix/store/i3kgk0nibrbpgmzdwdfi2ym50i8m3lww-stdenv\",\n"
+" \"system\": \"x86_64-linux\",\n"
+" \"urls\": \"http://146.185.144.154/texlive-2017/combofont.tar.xz http://gateway.ipfs.io/ipfs/QmRLK45EC828vGXv5YDaBsJBj2LjMjjA2ReLVrXsasRzy7/texlive-2017/combofont.tar.xz\"\n"
+" }\n"
+" }\n"
+"}\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.po b/locale/pt/LC_MESSAGES/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.po
index fb749f8..02703f3 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.po
@@ -37,3 +37,1027 @@ msgid ""
"The `setup.sh` script contains a call to `nix-shell` which in turns build "
"the same `terraform-godaddy` derivation:"
msgstr ""
+
+msgid ""
+"terraform-godaddy = pkgs.buildGoModule rec {\n"
+" name = \"terraform-godaddy-${version}\";\n"
+" version = \"1.6.4\";\n"
+" src = pkgs.fetchFromGitHub {\n"
+" owner = \"n3integration\";\n"
+" repo = \"terraform-godaddy\";\n"
+" rev = \"v${version}\";\n"
+" sha256 = \"00blqsan74s53dk9ab4hxi1kzxi46k57dr65dmbiradfa3yz3852\";\n"
+" };\n"
+" modSha256 = \"0p81wqw2n8vraxk20xwg717582ijwq2k7v5j3n13y4cd5bxd8hhz\";\n"
+" postInstall =\n"
+" \"mv $out/bin/terraform-godaddy $out/bin/terraform-provider-godaddy\";\n"
+"};\n"
+msgstr ""
+
+msgid ""
+"$ nix-build -A terraform-godaddy\n"
+"these derivations will be built:\n"
+" /nix/store/3hs274i9qdsg3hsgp05j7i5cqxsvpcqx-terraform-godaddy-1.6.4-go-modules.drv\n"
+" /nix/store/y5961vv6y9c0ps2sbd8xfnpqvk0q7qhq-terraform-godaddy-1.6.4.drv\n"
+"building '/nix/store/3hs274i9qdsg3hsgp05j7i5cqxsvpcqx-terraform-godaddy-1.6.4-go-modules.drv'...\n"
+"unpacking sources\n"
+"unpacking source archive /nix/store/m62ydk4wy6818sysfys0qz20cx5nzj7h-source\n"
+"source root is source\n"
+"patching sources\n"
+"configuring\n"
+"building\n"
+"go: finding github.com/mitchellh/copystructure v1.0.0\n"
+"go: finding github.com/blang/semver v3.5.1+incompatible\n"
+"go: finding github.com/posener/complete v1.2.1\n"
+"go: finding github.com/apparentlymart/go-cidr v1.0.0\n"
+"go: finding github.com/agext/levenshtein v1.2.1\n"
+"go: finding github.com/mitchellh/reflectwalk v1.0.0\n"
+"go: finding github.com/mitchellh/mapstructure v1.1.2\n"
+"go: finding github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250\n"
+"go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d\n"
+"go: finding github.com/bgentry/speakeasy v0.1.0\n"
+"go: finding github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af\n"
+"go: finding github.com/hashicorp/errwrap v1.0.0\n"
+"go: finding github.com/hashicorp/hcl2 v0.0.0-20181220012050-6631d7cd0a68\n"
+"go: finding google.golang.org/grpc v1.17.0\n"
+"go: finding golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9\n"
+"go: finding github.com/hashicorp/go-version v1.0.0\n"
+"go: finding google.golang.org/appengine v1.4.0\n"
+"go: finding golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4\n"
+"go: finding honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3\n"
+"go: finding github.com/hashicorp/terraform v0.11.11\n"
+"go: finding google.golang.org/genproto v0.0.0-20181221175505-bd9b4fb69e2f\n"
+"go: finding github.com/mitchellh/go-wordwrap v1.0.0\n"
+"go: finding github.com/hashicorp/go-cleanhttp v0.5.0\n"
+"go: finding github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348\n"
+"go: finding golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890\n"
+"go: finding github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7\n"
+"go: finding github.com/kr/pty v1.1.3\n"
+"go: finding github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d\n"
+"go: finding github.com/aws/aws-sdk-go v1.16.11\n"
+"go: finding cloud.google.com/go v0.26.0\n"
+"go: finding google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8\n"
+"go: finding github.com/sergi/go-diff v1.0.0\n"
+"go: finding golang.org/x/sys v0.0.0-20181228144115-9a3f9b0469bb\n"
+"go: finding github.com/go-ini/ini v1.40.0\n"
+"go: finding github.com/golang/protobuf v1.2.0\n"
+"go: finding github.com/satori/go.uuid v1.2.0\n"
+"go: finding github.com/mitchellh/cli v1.0.0\n"
+"go: finding google.golang.org/appengine v1.1.0\n"
+"go: finding honnef.co/go/tools v0.0.0-20180728063816-88497007e858\n"
+"go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f\n"
+"go: finding github.com/mitchellh/iochan v1.0.0\n"
+"go: finding github.com/mitchellh/go-homedir v1.0.0\n"
+"go: finding github.com/spf13/pflag v1.0.2\n"
+"go: finding github.com/kr/pretty v0.1.0\n"
+"go: finding github.com/go-test/deep v1.0.1\n"
+"go: finding github.com/hashicorp/go-multierror v1.0.0\n"
+"go: finding github.com/spf13/pflag v1.0.3\n"
+"go: finding github.com/onsi/ginkgo v1.7.0\n"
+"go: finding github.com/onsi/gomega v1.4.3\n"
+"go: finding github.com/zclconf/go-cty v0.0.0-20181218225846-4fe1e489ee06\n"
+"go: finding gopkg.in/yaml.v2 v2.2.2\n"
+"go: finding github.com/mitchellh/gox v0.4.0\n"
+"go: finding github.com/zclconf/go-cty v0.0.0-20181129180422-88fbe721e0f8\n"
+"go: finding golang.org/x/crypto v0.0.0-20180816225734-aabede6cba87\n"
+"go: finding golang.org/x/net v0.0.0-20181220203305-927f97764cc3\n"
+"go: finding golang.org/x/net v0.0.0-20180826012351-8a410e7b638d\n"
+"go: finding github.com/google/go-cmp v0.2.0\n"
+"go: finding golang.org/x/sys v0.0.0-20180830151530-49385e6e1522\n"
+"go: finding github.com/onsi/ginkgo v1.6.0\n"
+"go: finding gopkg.in/fsnotify.v1 v1.4.7\n"
+"go: finding gopkg.in/yaml.v2 v2.2.1\n"
+"go: finding github.com/hashicorp/go-plugin v0.0.0-20181212150838-f444068e8f5a\n"
+"go: finding github.com/armon/go-radix v1.0.0\n"
+"go: finding golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be\n"
+"go: finding github.com/golang/mock v1.1.1\n"
+"go: finding github.com/ulikunitz/xz v0.5.5\n"
+"go: finding golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52\n"
+"go: finding github.com/davecgh/go-spew v1.1.1\n"
+"go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd\n"
+"go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405\n"
+"go: finding github.com/hpcloud/tail v1.0.0\n"
+"go: finding golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1\n"
+"go: finding github.com/mattn/go-colorable v0.0.9\n"
+"go: finding google.golang.org/grpc v1.16.0\n"
+"go: finding github.com/vmihailenco/msgpack v3.3.3+incompatible\n"
+"go: finding github.com/posener/complete v1.1.1\n"
+"go: finding github.com/mitchellh/go-testing-interface v1.0.0\n"
+"go: finding github.com/golang/protobuf v1.1.0\n"
+"go: finding github.com/mattn/go-isatty v0.0.3\n"
+"go: finding github.com/kr/text v0.1.0\n"
+"go: finding golang.org/x/net v0.0.0-20181106065722-10aee1819953\n"
+"go: finding github.com/hashicorp/go-hclog v0.0.0-20181001195459-61d530d6c27f\n"
+"go: finding github.com/oklog/run v1.0.0\n"
+"go: finding github.com/mitchellh/hashstructure v1.0.0\n"
+"go: finding golang.org/x/tools v0.0.0-20181221235234-d00ac6d27372\n"
+"go: finding github.com/hashicorp/go-getter v0.0.0-20181213035916-be39683deade\n"
+"go: finding github.com/kisielk/gotool v1.0.0\n"
+"go: finding howett.net/plist v0.0.0-20181124034731-591f970eefbb\n"
+"go: finding github.com/vmihailenco/msgpack v4.0.1+incompatible\n"
+"go: finding golang.org/x/sync v0.0.0-20181108010431-42b317875d0f\n"
+"go: finding golang.org/x/net v0.0.0-20180724234803-3673e40ba225\n"
+"go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7\n"
+"go: finding github.com/fatih/color v1.7.0\n"
+"go: finding cloud.google.com/go v0.34.0\n"
+"go: finding github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb\n"
+"go: finding github.com/hashicorp/hcl v1.0.0\n"
+"go: finding github.com/hashicorp/go-uuid v1.0.0\n"
+"go: finding github.com/hashicorp/go-multierror v0.0.0-20180717150148-3d5d8f294aa0\n"
+"go: finding github.com/mattn/go-isatty v0.0.4\n"
+"go: finding github.com/hashicorp/errwrap v0.0.0-20180715044906-d6c0cd880357\n"
+"go: finding github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310\n"
+"go: finding golang.org/x/net v0.0.0-20180811021610-c39426892332\n"
+"go: finding github.com/fsnotify/fsnotify v1.4.7\n"
+"go: finding github.com/bsm/go-vlq v0.0.0-20150828105119-ec6e8d4f5f4e\n"
+"go: finding github.com/golang/mock v1.2.0\n"
+"go: finding golang.org/x/net v0.0.0-20181129055619-fae4c4e3ad76\n"
+"go: finding github.com/apparentlymart/go-dump v0.0.0-20180507223929-23540a00eaa3\n"
+"go: finding github.com/aws/aws-sdk-go v1.15.78\n"
+"go: finding github.com/golang/lint v0.0.0-20180702182130-06c8688daad7\n"
+"go: finding golang.org/x/text v0.3.0\n"
+"go: finding github.com/pmezard/go-difflib v1.0.0\n"
+"go: finding golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc\n"
+"go: finding github.com/kr/pty v1.1.1\n"
+"go: finding github.com/client9/misspell v0.3.4\n"
+"go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b\n"
+"go: finding golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3\n"
+"go: finding gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127\n"
+"go: finding github.com/jessevdk/go-flags v1.4.0\n"
+"go: finding github.com/stretchr/testify v1.2.2\n"
+"go: finding github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd\n"
+"go: finding golang.org/x/net v0.0.0-20181114220301-adae6a3d119a\n"
+"go: finding github.com/apparentlymart/go-textseg v1.0.0\n"
+"go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e\n"
+"go: finding github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77\n"
+"go: finding google.golang.org/grpc v1.14.0\n"
+"go: finding golang.org/x/lint v0.0.0-20180702182130-06c8688daad7\n"
+"go: finding github.com/hashicorp/go-safetemp v1.0.0\n"
+"go: finding github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8\n"
+"installing\n"
+"hash mismatch in fixed-output derivation '/nix/store/jgbfkhlsz6bmq724p5cqqcgfyc7l6sdv-terraform-godaddy-1.6.4-go-modules':\n"
+" wanted: sha256:0p81wqw2n8vraxk20xwg717582ijwq2k7v5j3n13y4cd5bxd8hhz\n"
+" got: sha256:10n2dy7q9kk1ly58sw965n6qa8l0nffh8vyd1vslx0gdlyj25xxs\n"
+"cannot build derivation '/nix/store/y5961vv6y9c0ps2sbd8xfnpqvk0q7qhq-terraform-godaddy-1.6.4.drv': 1 dependencies couldn't be built\n"
+"error: build of '/nix/store/y5961vv6y9c0ps2sbd8xfnpqvk0q7qhq-terraform-godaddy-1.6.4.drv' failed\n"
+msgstr ""
+
+msgid ""
+"$ cd vps/\n"
+"$ ./scripts/ci/setup.sh\n"
+"warning: Nix search path entry '/nix/var/nix/profiles/per-user/root/channels' does not exist, ignoring\n"
+"these derivations will be built:\n"
+" /nix/store/as9r3n55czsdiq82iacs0hq12alxb2m0-remove-references-to.drv\n"
+" /nix/store/fdh1ahjdh3fgsz4qz386klsa9bsqil48-source.drv\n"
+" /nix/store/x7r5kh20ajlnj6vw6fg649w0iypcg1ga-terraform-godaddy-1.6.4-go-modules.drv\n"
+" /nix/store/w4ghinrmpq524k3617ikfc8i42aa0dbb-terraform-godaddy-1.6.4.drv\n"
+"these paths will be fetched (868.72 MiB download, 4262.91 MiB unpacked):\n"
+" /nix/store/01aggsi1ndjhnr93gcy8c4s1xbxab8dn-unzip-6.0\n"
+" /nix/store/02nzlzdw0kiici9368jp5s84cpbqxkva-python3.7-certifi-2018.11.29\n"
+" /nix/store/0bdf1xn7p6xzk008yr6cahq3wjlvah5g-terraform-provider-flexibleengine-1.5.0-bin\n"
+" /nix/store/0jl2dhydfh3jbfpkgkrixisqkhj12d4y-libffi-3.2.1-dev\n"
+" /nix/store/0jwyd55g8nfhm25a0bh1j1by6afdriic-perl5.28.2-File-Listing-6.04\n"
+" /nix/store/0rc1jyfbxwffmsphyv2pfnxd6smysc1l-terraform-provider-ansible-0.0.4-bin\n"
+" /nix/store/0w6l8kh3d30kg3nxc8xyi84gmrfxjnns-git-2.21.0\n"
+" /nix/store/0z8i6sq8mg138qnifr1z37y780xkk8hf-terraform-provider-cloudstack-0.2.0-bin\n"
+" /nix/store/15fv1623h1vcn5z0nq42v5rgjirbp5r0-terraform-provider-rancher-1.2.1-bin\n"
+" /nix/store/18rr3rg32imsnfyx6zb6s8lc8qpkdr74-nghttp2-1.38.0-bin\n"
+" /nix/store/1dydqkwswavzkyvr1qr62zmx3nqpmpp4-gnutls-3.6.7\n"
+" /nix/store/1fl7yd9chgswnabbsvva7xvg5ak1q44p-terraform-provider-vault-1.8.0-bin\n"
+" /nix/store/1hml3hx7qlbkv139khazb24jh69nngcd-terraform-provider-bigip-0.12.2-bin\n"
+" /nix/store/1kz91g5mfj271lj5kxz2m1axcs2yqafy-thin-provisioning-tools-0.7.6\n"
+" /nix/store/1wh5wgw6a3w91mk2avvn9ssw32nlw9kd-terraform-provider-openstack-1.18.0-bin\n"
+" /nix/store/206dvjl6595dk40dli12ziv393ww54wl-bzip2-1.0.6.0.1\n"
+" /nix/store/20wmykp8fj2izxdj8lic8ggcfpdid5ka-tzdata-2019a\n"
+" /nix/store/2ar3zk5fjr34ys2dqnsfbb678x6fdlj4-openssh-7.9p1\n"
+" /nix/store/2dfjlvp38xzkyylwpavnh61azi0d168b-binutils-2.31.1\n"
+" /nix/store/2j9jm3jaxfn2g6wxak61wkhmrg6c4nn5-unbound-1.9.1-lib\n"
+" /nix/store/2k46270d0h3gqj1c0wgx8prnj51jqryd-db-5.3.28\n"
+" /nix/store/2lh08897y86kxvyjdd1vlnkg8fz88nkd-terraform-provider-rundeck-0.1.0-bin\n"
+" /nix/store/2xhsrw4ws6kc4x3983wdwwlnim27c6iz-shadow-4.6\n"
+" /nix/store/2yy3pv77rwbxk7b2mpysmiqdzhmgmphg-terraform-provider-http-1.1.1-bin\n"
+" /nix/store/31l04a1yxxdbdpzdp8mpfk96rhj3bg2c-python3.7-netaddr-0.7.19\n"
+" /nix/store/35mdgd1wc67g60azsrghzgn4fjhr5d2r-zfs-user-0.7.13-lib\n"
+" /nix/store/3mgn9jnjzj1rgxclbixk5xa0kkx9xpw3-openssl-1.0.2r-dev\n"
+" /nix/store/3qjz5kfri8sa0dj1213rap75alpqsm2l-terraform-provider-mailgun-0.1.0-bin\n"
+" /nix/store/3s4fr71ykyw54kyyqavd0ba42klg0bhf-libXcursor-1.2.0\n"
+" /nix/store/3xq3w5fgz99rhp3rxfkbp0ahg37mgmly-pango-1.43.0\n"
+" /nix/store/3xzkc4wyadr3vrva2q320axjr6cyb43n-python-2.7.16\n"
+" /nix/store/43i41p1n1sxssmqpf9jp5x4gcy6r2fl6-git-2.21.0\n"
+" /nix/store/479dvd7q6c18l3jl2myhfxmfsjbqjjch-python3.7-dopy-2016-01-04\n"
+" /nix/store/4i1mw6av3d6pr9bqggb4hnv6cykbrhhi-kexec-tools-2.0.19\n"
+" /nix/store/4jw2677fvb11aj1bal9a2iksqz0mk80m-expat-2.2.6\n"
+" /nix/store/4qq5hh1r6sqb0kpxc305rb468s45j4aw-libICE-1.0.9\n"
+" /nix/store/4z62pandn85xhcc5vazmi29cs2yps47b-iproute2-5.0.0\n"
+" /nix/store/50gfgyi2rxi4n25if8cqvlxlh5czl0wd-yajl-2.1.0\n"
+" /nix/store/50rywa1m6asdz1y78a6dpa0xf98vm01v-perl5.28.2-LWP-MediaTypes-6.04\n"
+" /nix/store/50wggbbr0wdg21hrvl4icwlppvk4464b-terraform-provider-opc-1.3.6-bin\n"
+" /nix/store/5b0s7hhp52vq4psmicf8m8y2jr5jsiaz-terraform-provider-ucloud-1.6.0-bin\n"
+" /nix/store/5k67y2lglsnswrya21z51d4h87a081k5-terraform-provider-kubernetes-1.6.2-bin\n"
+" /nix/store/5l3967kll8m6s66zprzwb2p6vf2mh5yd-libtasn1-4.13\n"
+" /nix/store/5lcz7p2xz1zp8iyd9yjmrg1kxw5yygnx-terraform-provider-panos-1.5.1-bin\n"
+" /nix/store/5nkxpwdgpxs97yqh2fxz9y0rm80rc280-terraform-provider-heroku-1.9.0-bin\n"
+" /nix/store/5pjazw71xk4kysxrzacgjl4iai691k25-curl-7.64.1\n"
+" /nix/store/5qnlfx9qncn0fcw6mbfj6j58pz0cv0p3-binutils-wrapper-2.31.1\n"
+" /nix/store/5x1551gw825apcsnwx8gzfnmiapbz8yl-perl5.28.2-IO-HTML-1.001\n"
+" /nix/store/5ydkc9jcaaxlz58dr7gvyhi3gcmafsfy-python3.7-pyparsing-2.3.1\n"
+" /nix/store/5ygnx64lyv5a8pnpmlj7bs8s2dz2hkxd-terraform-provider-spotinst-1.13.2-bin\n"
+" /nix/store/5z3s6zbi98gh8cfliaplnmv15j568c46-terraform-provider-null-2.1.2-bin\n"
+" /nix/store/61shjilahl0d237fg9b3z3chza2lgms4-patchelf-0.9\n"
+" /nix/store/63gjp25l4cmdkl63zy0rcgmsvd2p2p34-terraform-0.11.14\n"
+" /nix/store/63k736kr346ncpzv5yiqiyyyiqpa2h8m-terraform-provider-bitbucket-1.0.0-bin\n"
+" /nix/store/6554dpyahvcs49dmv434aky6bfkmqb30-gnumake-4.2.1\n"
+" /nix/store/69msrhi85iay3cb7c3nksr0s8l0xpsc7-util-linux-2.33.2\n"
+" /nix/store/69vq0a9sqynmz335apm8zgyjdmq34s5j-libX11-1.6.7\n"
+" /nix/store/6b2jabk1scwhhk9bz7wjzycvmkiw419d-libapparmor-2.13.1\n"
+" /nix/store/6brahzfjri338n3fggplfrsmf63mrwnx-terraform-provider-nutanix-1.0.1-bin\n"
+" /nix/store/6bvd29jny80ka8df9prr5hrl5yz7d98k-systemd-239.20190219\n"
+" /nix/store/6hv1yfwyydyg2lzqcllwjb68xl4mrppw-terraform-provider-tencentcloud-1.5.0-bin\n"
+" /nix/store/6hwdmzpspbnb7ix5z6m9h60jyy42kj90-dbus-1.12.12-lib\n"
+" /nix/store/6mz512j183wj7qas2qm6zkrks5k8rh00-gettext-0.19.8.1\n"
+" /nix/store/6whclwjzwg46s0dkxwk1xz8cdcxnkd3y-db-4.8.30\n"
+" /nix/store/715lcljfyp8grxlmaf51pn0n3ml3dwgg-bash-interactive-4.4-p23\n"
+" /nix/store/7256h1y98mmzsckwk2x7i3v3cxmvgrmq-python3.7-pyOpenSSL-19.0.0-dev\n"
+" /nix/store/749qksf79hvn0aprcznd9bwfv550qwh3-go-1.12.1\n"
+" /nix/store/7axz4xwz0vfrdgjyk59xg998bdqbvg5x-terraform-provider-random-2.1.2-bin\n"
+" /nix/store/7b7nbb0w2iwskwhzjhfwrif631h4smia-libpciaccess-0.14\n"
+" /nix/store/7crry947d1xvp1f15c6q089l0gcy5hpc-stdenv-linux\n"
+" /nix/store/7fd40sykaxj6dvya7mvif3f16wrqijr9-terraform-provider-terraform-1.0.2-bin\n"
+" /nix/store/7gwvcm8dc24vnphbx85q1afaxhfhac28-perl5.28.2-HTTP-Cookies-6.04\n"
+" /nix/store/7k3hvg4sfpr6y2bg8b7x9mkb0d2p3scr-terraform-provider-clc-0.1.0-bin\n"
+" /nix/store/7mmn8ri08z48vfj69c2h66f3g349ilq1-mailcap-2.1.48\n"
+" /nix/store/7mqpbfs391s9hbnfzkpgw3inj8mkldr8-terraform-provider-azurerm-1.27.1-bin\n"
+" /nix/store/85hh7apv9n3gganpnnq36zvlwm126mdh-openssl-1.0.2r-bin\n"
+" /nix/store/89wg3f6hk41gxm4n6cikj6r7gr2k7h8j-terraform-provider-nixos-0.0.1-bin\n"
+" /nix/store/8aylwgi9nb6hsgz6620fzsllbc7h2rx1-c-ares-1.15.0\n"
+" /nix/store/8bxvyvd3ky0w5gk3k0lq2fmvj30fbzj8-zfs-user-0.7.13\n"
+" /nix/store/8dl5c7n4555lr6qipki2424652gf8az8-ebtables-2.0.10-4\n"
+" /nix/store/8gn2b5vvlazg608cj1y5l4igp9rckmnq-dejavu-fonts-minimal-2.37\n"
+" /nix/store/8krs5vbid0ic6vvlvjvndvjb815q8hbd-terraform-provider-ns1-1.3.1-bin\n"
+" /nix/store/8ndwixznskf4zbf6h96ww4j8ap4j8067-fribidi-1.0.5\n"
+" /nix/store/8vqr6vbvyzlpsk6q0mnj93sf5j1wr5qa-perl5.28.2-Test-RequiresInternet-0.05\n"
+" /nix/store/8xy69pkisipvdmrpm1nmbi6qa2c6lhn0-bash-interactive-4.4-p23-info\n"
+" /nix/store/8yy3wngrdcpmjyw2ryas1y4wwhbd1356-patch-2.7.6\n"
+" /nix/store/8z5vplmgshflm7yixhp8q7hy11xxxd8a-terraform-provider-elasticsearch-0.6.0-bin\n"
+" /nix/store/91a8wnca647kfw67sk0iykdbyjpr8430-perl5.28.2-libwww-perl-6.38\n"
+" /nix/store/920nr51iw7qaplqjlqrlnql9g5ljq3vp-gdbm-1.18.1\n"
+" /nix/store/93rldbdly90q16lzk7hzilhk4qkdpqfq-keyutils-1.6-lib\n"
+" /nix/store/94nrq9paz335s155x9za8n7kb0q3y211-libgcrypt-1.8.4\n"
+" /nix/store/95rd64vii9j6h31fcr9lba8m8940zfpj-terraform-provider-github-2.0.0-bin\n"
+" /nix/store/97d3r4a7v1nal53x0gv17hrbbcp0rb21-util-linux-2.33.2-bin\n"
+" /nix/store/9dk1gh07pwkvg62rns4k670h54bhfhgh-zlib-1.2.11-dev\n"
+" /nix/store/9fvjgcjn1d0c9476qlr05psvwljwzq59-python3.7-cryptography-2.6.1\n"
+" /nix/store/9gjpg5lsdhgrhi805948c648nhn39l8z-terraform-provider-template-2.1.2-bin\n"
+" /nix/store/9hysgvp7qrfcil4b5qhwdq2vm9hism13-libxcb-1.13.1\n"
+" /nix/store/9pa3p1rqhnvlrngaqsx09766cl1j6zf3-python3.7-httpretty-0.9.6\n"
+" /nix/store/9xb22l3577nznvd6dqqis6ixgmwq9ygh-python3.7-pycparser-2.19\n"
+" /nix/store/9yb9whkdgf3zyy85xac248kwq1wm6qd6-harfbuzz-2.3.1\n"
+" /nix/store/a185xh0jcx7il7hw2gfh0pmvrah3x67y-systemd-239.20190219-lib\n"
+" /nix/store/a2cg0faxbwnicf41vwmw467jw7i9ix46-pinentry-1.1.0\n"
+" /nix/store/a2rr0irv2ssvvphvafgrxy4di0pkkagn-audit-2.8.5\n"
+" /nix/store/ag3fp30cz58ijm2yyy5adp1f3kw814b5-libXcomposite-0.4.5\n"
+" /nix/store/amlnqi4vvmpb9gjmyh1vr5hr2py12ss2-terraform-provider-docker-1.1.1-bin\n"
+" /nix/store/ap4sr1n0wlgmybxbw3pvq8klh8snc3n8-sqlite-3.28.0\n"
+" /nix/store/apcaggi0q3vrb4ha1b07cjxiim2li5ly-gcc-7.4.0\n"
+" /nix/store/apjv9g35sklrab9lzz9r9rq7lnczv2wy-terraform-provider-triton-0.5.1-bin\n"
+" /nix/store/aqgl1dqd6lr7jr9knqsyyq09bm0ibw7s-python3.7-cffi-1.12.3\n"
+" /nix/store/aqp0mrdbhvkm8rl1z0p2rkqnz6pbclhq-libXfixes-5.0.3\n"
+" /nix/store/b2rwzjp56yzd4jg2csx568h2dgj1l3l2-perl5.28.2-Try-Tiny-0.30\n"
+" /nix/store/b2wy5p5bykcnkwz5q1w8qq4qfzr4arc7-python3.7-MarkupSafe-1.1.1\n"
+" /nix/store/b6pdz8g070kbf0rdavjz6rip7sx06r8h-libkrb5-1.17-dev\n"
+" /nix/store/b77nn2r1c8cqpr9prh1ldwr3m6xdrkpa-openldap-2.4.47\n"
+" /nix/store/b7w6bpx5z0ncy35kqxvmpg4lwrnc8jf2-libxml2-2.9.9\n"
+" /nix/store/bd1hz6m8gh9m91hikjhq7aiq2khdkx2r-fontconfig-2.12.6\n"
+" /nix/store/bf26sh99bngrnpzrj7gyz0689b060vak-terraform-provider-skytap-0.9.0-bin\n"
+" /nix/store/bh412cii40qpzc20pzd48dq45jv9xm5a-perl5.28.2-HTTP-Date-6.02\n"
+" /nix/store/bvsihhp4jv61hz6mc17mn1sar03k0i8d-terraform-provider-telefonicaopencloud-1.0.0-bin\n"
+" /nix/store/bxps2h6axpqrjxcmib344a3immy3gvhd-readline-6.3p08\n"
+" /nix/store/byxya0m4656ylf5imvs2v9p2c1av1kjl-terraform-provider-matchbox-0.2.3-bin\n"
+" /nix/store/c7jkmfjhl3jkgnkrhh021vrqry7zplc1-linux-headers-4.19.16\n"
+" /nix/store/caa29d4y2zip0ly9mcc7f4w94blw8k60-lz4-1.9.1\n"
+" /nix/store/cd09qv56inq4gwa89656r4n0lq0vgidw-libXi-1.7.9\n"
+" /nix/store/ch6pz5kfg0bd3sfyf1813cpskg7lidns-python3.7-urllib3-1.24.2\n"
+" /nix/store/ck0lifb2jgkmg6c7frz7fxqwz5fbdnxk-terraform-provider-ultradns-0.1.0-bin\n"
+" /nix/store/cncad2f4lfxfxnwd9lfhjjd89x3anxqr-terraform-provider-yandex-0.5.2-bin\n"
+" /nix/store/csajl6aq80s9v2xbkmlzgfxlilmbzff6-terraform-provider-influxdb-1.1.0-bin\n"
+" /nix/store/d0wcd9mid6067i6va19lwiv29hln6n2j-python3.7-requests-2.21.0\n"
+" /nix/store/d7rh74cch3ybp9r239j5c2c1rb0kx3pa-terraform-provider-chef-0.1.0-bin\n"
+" /nix/store/daizqdqrm7g4favv814hnijmqhay8hs4-dbus-1.12.12\n"
+" /nix/store/di6rrbw1kbdrwxiymq91dgdvp2rvk1xv-dnsmasq-2.80\n"
+" /nix/store/drdzgwhnqjvq4g1aqsyz56c04k6dxnbi-bash-interactive-4.4-p23-doc\n"
+" /nix/store/ds1prvgw3i3ic8c7axyrw4lwm3d0gqab-gcc-wrapper-7.4.0\n"
+" /nix/store/dvsw0fhfzqf4xg0q2idhs02rhwn4k8cv-libXrender-0.9.10\n"
+" /nix/store/dy437h3f5i500gv6znll974c87grzh3l-libXft-2.3.3\n"
+" /nix/store/dy5wi2sqnhbnlpvjr8a0z96id1mq243j-python3.7-six-1.12.0\n"
+" /nix/store/dz9dqcnz8v9cy54x5hax599zjwckp0kd-terraform-provider-gitlab-1.3.0-bin\n"
+" /nix/store/f11valqiyik1ggdlnhg3ibwgrj1imidb-numactl-2.0.12\n"
+" /nix/store/f39sk2aim9xz7dzn7qvqh442xm58v77w-nfs-utils-2.3.3\n"
+" /nix/store/f3rbnn0jhm549mcp7k9ysjcq26j8fvyy-terraform-provider-segment-0.2.0-bin\n"
+" /nix/store/f7zcmzqcavbj7bp1dlfk86f9bkqvk9p3-bridge-utils-1.5\n"
+" /nix/store/f7zh0d0n2dj4dcig903zd5jgb2cpaxf6-terraform-provider-ignition-1.0.1-bin\n"
+" /nix/store/fhgiisqjpzwl8z4fchgc07avg1azmp0r-cyrus-sasl-2.1.27\n"
+" /nix/store/fky41n197z9n737kbih4j7ncnh7cngnz-perl5.28.2-Net-HTTP-6.18\n"
+" /nix/store/fq4765nh9p0si8mh9cnywsq48zr1qc27-terraform-provider-runscope-0.5.0-bin\n"
+" /nix/store/fwvdxglj9asp4f90ihry29n2fm8a6i09-terraform-provider-aws-2.9.0-bin\n"
+" /nix/store/g4qqgmrm254axgndybnpwg7s780bxy1a-numad-0.5\n"
+" /nix/store/g63hwfkd4yjncqh81ndn9vbmghdv41ng-terraform-provider-digitalocean-1.3.0\n"
+" /nix/store/gg469jh0m4dk4b0x6s44ziad69czbv22-python3.7-pycrypto-3.7.3\n"
+" /nix/store/gkpa27fykskx0dd52dca515gd91qhhgf-terraform-provider-local-1.2.2-bin\n"
+" /nix/store/glrnpb3rkribnrjh5gzs24nmvl3m00cg-parted-3.2\n"
+" /nix/store/gn5cd1z252aip0rvds71g9mgfhh6i8p7-fontconfig-2.12.6-lib\n"
+" /nix/store/gsl1dw8ycrdvlzczsl59mkz0qpbwcmz1-iptables-1.8.2\n"
+" /nix/store/gydzhj2y5j1ggbainbilvpxi5glw5hmf-terraform-provider-alicloud-1.41.0-bin\n"
+" /nix/store/h02lb0p8krj1smsrid2n44ak058bbd82-expand-response-params\n"
+" /nix/store/h40ib0qsa07b6ld1pv4x76xx2g7xgik6-terraform-provider-newrelic-1.5.0-bin\n"
+" /nix/store/h8898ysg2s23k6palhxy9a5sbgrvvrcy-nfs-utils-2.3.3-lib\n"
+" /nix/store/hbs2vrw1y8y1qz1hi71jaz0j3pl95qfs-terraform-provider-helm-0.9.1-bin\n"
+" /nix/store/hg863b95fxv9zlk008qjyf87qgyx58h1-libseccomp-2.4.1-lib\n"
+" /nix/store/hl8lzq90qjhq0n710lm5n17lc9i80vsh-terraform-provider-oraclepaas-1.5.2-bin\n"
+" /nix/store/hnvmacd16kzmwcsavzkssrqj2kiryy2p-perl5.28.2-WWW-RobotRules-6.02\n"
+" /nix/store/hpmni5y805q7a07q9sn3nwjk4i2m2jl5-libkrb5-1.17\n"
+" /nix/store/hps5ziw9zq6mcjh9b7naaxawnqymws4m-jasper-2.0.16\n"
+" /nix/store/hy2xn2jxm4wp7j86p08m9xdpxncskdgv-terraform-provider-pagerduty-1.2.1-bin\n"
+" /nix/store/i10riha5s5dgafznk3gwn36fyr3cpxb4-libXinerama-1.1.4\n"
+" /nix/store/i3kh8yq4kgkfn234pnwxnvxbrcgcckc8-curl-7.64.1-dev\n"
+" /nix/store/i652w9gqbmc6k48lz3b02ncv7hpgc7nv-perl5.28.2-HTTP-Message-6.18\n"
+" /nix/store/i8859i082xqnrhzg7h6gz2ylc5wbw5pa-libnl-3.4.0\n"
+" /nix/store/id798ngchr83gc0mmqd3zlviljshjhvb-terraform-provider-nomad-1.3.0-bin\n"
+" /nix/store/im1940h7b6pjlnh38q6lasdn8iybsv4v-python3.7-jmespath-0.9.4\n"
+" /nix/store/in7wgxanbdycb9wpq1j29928gllc0ap6-terraform-provider-profitbricks-1.4.4-bin\n"
+" /nix/store/irqcza91k5smn6f4dyvqzw0zjn50d58f-libssh2-1.8.2\n"
+" /nix/store/isdbs6d2jk75kj0qk4s3prwlwcgkgalf-tf-plugin-env\n"
+" /nix/store/ixycmxkr0wrz3gfxrnrdgcsk4gcyirpv-terraform-provider-azurestack-0.6.0-bin\n"
+" /nix/store/j1px1l6vk39i3chghlwy9222jcjdfdq0-libcap-ng-0.7.9\n"
+" /nix/store/jf6lfawjvwr6ggnd4lhc5w4dp9v3kgh4-libXdmcp-1.1.3\n"
+" /nix/store/jjld4xam968mz645xh4g7i5zrnhsfyp9-terraform-provider-cobbler-1.0.1-bin\n"
+" /nix/store/jn0bddfc3fzhnf5ns4s2khhzclswvzb2-libpcap-1.9.0\n"
+" /nix/store/jsg4bi31drwy614hdkkwf32m4wz3im6g-libassuan-2.5.3\n"
+" /nix/store/jszvy5lyyjbfi7mjr7s9bnbq9cyq858v-terraform-provider-external-1.1.2-bin\n"
+" /nix/store/jvfc6r03a95aignzbfg987kspa04s0md-perl5.28.2-HTTP-Daemon-6.01\n"
+" /nix/store/jwwkky1pn1fw3yiaxmc5k3brb0rqlwvq-graphite2-1.3.6\n"
+" /nix/store/k1xlz5zy7rm2a428byz850c1igc2j1z8-readline-7.0p5\n"
+" /nix/store/k3qhzd0x8a1z6h5kyifnv3axbfs7fy66-terraform-provider-statuscake-0.2.0-bin\n"
+" /nix/store/k4v5havnf7pmcv40xadh8mb7b0nbcgxz-libglvnd-1.0.0\n"
+" /nix/store/k59h7bs9307y7rb0z70vasvj8hd5pcn5-perl5.28.2-HTML-Tagset-3.20\n"
+" /nix/store/k5vljkz5p59nrh50vx5k2790ksqcxjpc-terraform-provider-dme-0.1.0-bin\n"
+" /nix/store/k7g175rls2pk34m23wqhplv8mbnsc0lc-pixman-0.38.4\n"
+" /nix/store/kccb2k5hdjhdyxbxsri9lwwc4z1pvx6z-cups-2.2.11-lib\n"
+" /nix/store/kds827ryxx16rwhrsdn9wnr2pxf5qaxm-terraform-provider-google-2.6.0-bin\n"
+" /nix/store/kh18cbdb9f79gl58axwr8qq6c7bd0bl0-terraform-provider-acme-1.1.2-bin\n"
+" /nix/store/kh2h5rnmm4gvjm8z7w2y511h15i7nhk9-gnum4-1.4.18\n"
+" /nix/store/kmscm0qm9j480wpd1yh42b1g0zc6qbmv-nghttp2-1.38.0-lib\n"
+" /nix/store/kqmg1xxd3vi37bqh7gdvi61bkp7wb9hi-terraform-provider-circonus-0.2.0-bin\n"
+" /nix/store/kvjcl6plvmkm6i2lzd7wrkbiis3b4vhg-terraform-provider-mysql-1.5.1-bin\n"
+" /nix/store/kvy2sz5lvi89lnh4rmw1df4jsnhqf1ay-libnftnl-1.1.2\n"
+" /nix/store/l6ns1zcd18j9708y3agxgi0kihs4zc7i-terraform-provider-softlayer-0.0.1-bin\n"
+" /nix/store/l8zqmzg19i62iz4argyjjr071rid3q9b-terraform-provider-cloudflare-1.13.0-bin\n"
+" /nix/store/l9821zngvlh8bd6mlyzvi1mc754dyhjz-terraform-provider-libvirt-0.5.1-bin\n"
+" /nix/store/lgrhsbfmpf1cjbpig8llxfrfb6xhz7xv-terraform-provider-scaleway-1.9.2-bin\n"
+" /nix/store/lnzh3cjjcbafh6wsivw10wl60g7xplxj-libXrandr-1.5.2\n"
+" /nix/store/lr9yhdbn8a3la69j56cz0vi1qva973dv-kbd-2.0.4\n"
+" /nix/store/lswf09qbkkrqd0rgzaqyrkr44lf78y9x-libXext-1.3.4\n"
+" /nix/store/lvqp39d4hx776nkw3a0qfnvvjmnj49hc-procps-3.3.15\n"
+" /nix/store/m2n4drah6566qlccaabjhnnl4slql3cd-python3.7-pysocks-1.6.8\n"
+" /nix/store/m65jki67b02la5k5r9vgddcp13l32lw5-python3.7-httplib2-0.12.3\n"
+" /nix/store/m6hisb1d7q1c4z0s3icax40gynz4f8fl-gmp-6.1.2\n"
+" /nix/store/mmjbmvw64yl2756y1zvsxk0ic0nhzq2a-libnfnetlink-1.0.1\n"
+" /nix/store/mn0nzy294n07x1b92m9n0rwrv7z1441m-libunistring-0.9.10\n"
+" /nix/store/mp1hzpgp3sa6xac8dc7rldh5rab8lk2w-perl5.28.2-Test-Needs-0.002006\n"
+" /nix/store/mpnl3p6mzm71vci81r0h346jywm6863s-perl5.28.2-Encode-Locale-1.05\n"
+" /nix/store/mrclkdxryhjd6i36hlad6fwahjd14fmg-libpng-apng-1.6.37\n"
+" /nix/store/msa690459q4n9fiq125gsfambbd62qb4-libdaemon-0.14\n"
+" /nix/store/msfkr5yqdxjx5cm24pvn3q1552rsjn8h-libev-4.25\n"
+" /nix/store/mvmjdim7dn589inb8dsjxap08h4ip4h5-terraform-provider-huaweicloud-1.4.0-bin\n"
+" /nix/store/n1dcmv0ii513dhlnllc790vfn8i9j9lj-python3.7-Jinja2-2.10.1\n"
+" /nix/store/n1mrfbzlh3cjm9mfyrp48pybl3sg4717-terraform-provider-vsphere-1.10.0-bin\n"
+" /nix/store/n1y9i0bv0sg8n8759zd6smr2zjyn8jf3-python3.7-paramiko-2.4.2\n"
+" /nix/store/n2mzl8vljdksdqybihdy9mm5v7hm19q5-python3.7-idna-2.8\n"
+" /nix/store/n3rakrhhvi3bb0ffnjs51drmy157p51q-terraform-provider-vcd-2.1.0-bin\n"
+" /nix/store/n6z00dm6a5fdv935v8bv59909ra51xli-npth-1.6\n"
+" /nix/store/n7wdfylfi5wnrjdg4im9v2q9gnl99mmb-terraform-provider-archive-1.2.2-bin\n"
+" /nix/store/nc8x0pwchcc9xiv1nsj9idvpnfvkhh8p-terraform-provider-datadog-1.9.0-bin\n"
+" /nix/store/ndbpc44lv43k7jnb0ip1qwk8f0slx685-bash-interactive-4.4-p23-dev\n"
+" /nix/store/ndjjyr4rqibzkgs8w55bx2idhnckh39p-libidn2-2.1.1a\n"
+" /nix/store/nfn8wgiqf418y444fch4bpf2ay6ca55i-curl-7.64.1-man\n"
+" /nix/store/ni4nc256xs4f5hmhlhybxl8k40fwi5m3-libedit-20190324-3.1\n"
+" /nix/store/np4ikymr5fq5iknjfrwrgqmcsid4dmw9-terraform-provider-consul-2.3.0-bin\n"
+" /nix/store/nq2x9w3rjd5l2yvlv328i19ljar8bdab-libidn-1.35\n"
+" /nix/store/nvyhmkghwxh5f1wiid27vzxa0ddx929p-python3.7-packaging-19.0\n"
+" /nix/store/nwhvl00i2wa4ms26lszk36vwir90jd3x-libvirt-4.10.0\n"
+" /nix/store/p00q64lbln1z9kfgpd2r6qhk0kc7i7w7-terraform-provider-oneandone-1.3.0-bin\n"
+" /nix/store/p19dhs366b9zbbhs61xfw7d77sk9mkjr-terraform-provider-cloudscale-1.1.0-bin\n"
+" /nix/store/p8s6295x84d594sxvzml8rsxqjdghmc5-cairo-1.16.0\n"
+" /nix/store/p9rjwvja55djz5g2qxyc9wzcpmska0ql-terraform-provider-dyn-1.1.0-bin\n"
+" /nix/store/pb6r7dllpfw5cbhpmv2v2kms9a57r4v5-terraform-provider-tls-2.0.1-bin\n"
+" /nix/store/pfd5p3pyfrkwxh42j491kkqgl8n9aa67-perl5.28.2-TermReadKey-2.38\n"
+" /nix/store/pk6r8sd18gmxns8r73qi2yrmzf4f4cp0-terraform-provider-arukas-1.1.0-bin\n"
+" /nix/store/pknq6p5h43zm4r0dgjnfywql04hdv3js-atk-2.32.0\n"
+" /nix/store/pvsfn6d0byl3hfwnyfg21yivyj8iff8s-terraform-provider-opentelekomcloud-1.8.0-bin\n"
+" /nix/store/pvzbhdzqm4i20v3flr5mf7yfs7n2lrvg-python3.7-dnspython-1.16.0\n"
+" /nix/store/pwkjsnbgb4mw0x5r5zh8s7c9wqryhmbl-dmidecode-3.2\n"
+" /nix/store/pwnppsfjfxibhwhf598l7mx31i8154j9-bison-3.3.2\n"
+" /nix/store/q0ndxs1vqdy5r749h5hhhbixgyf5yasx-terraform-provider-opsgenie-0.1.0-bin\n"
+" /nix/store/qbwcp86aslamyhhmf2xx0l5d17dyg2jh-libmnl-1.0.4\n"
+" /nix/store/qd4j58ykdkg9yvy8kvgh0i00gacy0ldm-perl-5.28.2\n"
+" /nix/store/qgr66z24rfbb8cc965rr2sklh38p083n-git-crypt-0.6.0\n"
+" /nix/store/qhad1pgmn3z406pgk345281xb5zjqrkm-libelf-0.8.13\n"
+" /nix/store/qpj9rsal85rc94pizrkwb3c5nkivlfcl-p11-kit-0.23.14\n"
+" /nix/store/qq59cnpcbnp4p054ipbs54fv946r4qr8-python3.7-boto-2.49.0\n"
+" /nix/store/r3x6y48q13qwl9x1wwz37002b7fhyidv-python3.7-asn1crypto-0.24.0\n"
+" /nix/store/r54ql4g0hcxzp15sfjiagd1dmxh4s8n6-python3.7-bcrypt-3.1.6\n"
+" /nix/store/r6mrgd9k1jzzqrhphrg1qgxvgvbka7p8-pcre2-10.33\n"
+" /nix/store/r7lhx3aqyils26h7wbxbgf376c0n4ab5-libssh2-1.8.2-dev\n"
+" /nix/store/rcn9d2q4mpapxf4qd54hkqz32ljhv0rw-util-linux-2.33.2\n"
+" /nix/store/rf104cwz7kaa51s49n4c2aar0jrrj8px-nghttp2-1.38.0-dev\n"
+" /nix/store/ricz15lpkjrasc5cpzp6l60iwlc87wv3-avahi-0.7\n"
+" /nix/store/rj8xd9ajm3wqjz1vfkignlp011fss53q-bzip2-1.0.6.0.1-bin\n"
+" /nix/store/rk78bh2s5yjpmgdhzqlf1hnj6ij0h20n-terraform-provider-tfe-0.8.2-bin\n"
+" /nix/store/rl2z4bb7wkfp0g12ccqffh287qal1109-kmod-26\n"
+" /nix/store/rs21a235ix9v8y4hgazkzi6g1x5dqf7v-terraform-provider-netlify-0.1.0-bin\n"
+" /nix/store/ryinn9xa3g8bn55nj1h54ypnlp9naq6i-stdenv-linux\n"
+" /nix/store/rzfzb501miszas14xq6cr3c04m8kkdrb-terraform-0.11.14-bin\n"
+" /nix/store/s3m5z3wxm94c0bfyjxmqf6i0gf1bpx90-libaio-0.3.110\n"
+" /nix/store/s5f3vpmig33nk4zyk228q55wdydd3pc2-python3-3.7.3\n"
+" /nix/store/s7p4iij8p4hi6bmc2bf3flyf6wa6yzrj-terraform-provider-dns-2.1.1-bin\n"
+" /nix/store/s7rqxrfb631i53dfl90gac35095jyypq-util-linux-2.33.2-bin\n"
+" /nix/store/scdscan356g79qb7cf776gy7src22zbl-terraform-provider-grafana-1.3.0-bin\n"
+" /nix/store/sfrh0r54ykfzv62h17gi8hm6778j7k0l-libyaml-0.2.1\n"
+" /nix/store/shf6d1928fzxcaz6zh0bhcqv3xhvxhjd-terraform-provider-linode-1.6.0-bin\n"
+" /nix/store/skkpbcqavjd8q0zmd94js6nz7pgbvpfl-mirrors-list\n"
+" /nix/store/sm4yylq92rip64wdk3iniy91w48a90ia-openssl-1.0.2r\n"
+" /nix/store/sn2cydjzikl3rws2nfa7pdvayb45brrd-terraform-provider-logicmonitor-1.2.0-bin\n"
+" /nix/store/ssr1y1736h7c6p8vs76iyxwg5h889x7d-terraform-provider-dnsimple-0.1.0-bin\n"
+" /nix/store/sw6n4yz49cz5vm4ggpk2l5j1vngac8j2-terraform-provider-secret-1.0.0-bin\n"
+" /nix/store/sw6vlm5g6r6sivlncz7vh8ps7v7r22aa-terraform-provider-brightbox-1.1.2-bin\n"
+" /nix/store/v31bag67wm17wkdg7zr9yi62c5028y59-libXau-1.0.9\n"
+" /nix/store/v5q3cnkjfy8rfacsjqn1nza93mbczgd5-gdk-pixbuf-2.38.1\n"
+" /nix/store/v69ld4vcgkr4i4giv1nzl4kax9zx1fpa-python3.7-pyasn1-0.4.5\n"
+" /nix/store/vbp6wnr2gyj50nabxgclkbqblmnwcnbg-terraform-provider-azuread-0.3.1-bin\n"
+" /nix/store/vckbx0p1isjvmgjh7ppni3h87imazbzb-libcap-2.27-lib\n"
+" /nix/store/vin4cp4m5af1mxkb2jqqi8xkf98ca2sv-python3.7-ansible-2.7.9\n"
+" /nix/store/vkdh5ibsmzj6p53krnqqz1pv620f42r0-terraform-provider-logentries-1.0.0-bin\n"
+" /nix/store/vqvmd2r9pf9f74jqipbhrn7wksiiy1jf-pcsclite-1.8.25-bin\n"
+" /nix/store/vrrs5p13mykyniglgfdsn8xii9b7s850-terraform-provider-powerdns-0.1.0-bin\n"
+" /nix/store/vzjwz11r1yy02xv07vx2577pqizzx83n-nettle-3.4.1\n"
+" /nix/store/vzs0x1kaliybgk7yr9lrf6ad4x5v1k9y-libjpeg-turbo-2.0.2\n"
+" /nix/store/wbbwikfkc7fbida822a5z9b4xmsnwm3d-python3.7-chardet-3.0.4\n"
+" /nix/store/wccns8l8bav11z3xlhasmnkz383q1k9p-libnetfilter_conntrack-1.0.7\n"
+" /nix/store/wf5nv1gzrx378icqmjgwl2isg7s8ly80-lvm2-2.03.01\n"
+" /nix/store/wh8pg14c3ykmmnd342llbzjigahc54dw-terraform-provider-fastly-0.6.0-bin\n"
+" /nix/store/wi2mn48l130r7wafvj757rvzfkla59if-pm-utils-1.4.1\n"
+" /nix/store/wi4jm555w0rc1daiy2sz9iwrpk6cb2d8-terraform-provider-ibm-0.11.1-bin\n"
+" /nix/store/wkby8pdmg4vpvbl0d85gynh103k2h1ky-nghttp2-1.38.0\n"
+" /nix/store/wv8y2h4w7lxi9x6k8pzh3dxy7i4csfbm-terraform-provider-digitalocean-1.3.0-bin\n"
+" /nix/store/wvccp35z40fj1v8xbz6czrm4bbiaqd45-perl5.28.2-HTTP-Negotiate-6.01\n"
+" /nix/store/wxdxzvaj3mcmf3i9yqwinpcb26iz3pas-perl5.28.2-Test-Fatal-0.014\n"
+" /nix/store/wy2alf2g85wym6i9n279d7a9nianx3is-curl-7.64.1-bin\n"
+" /nix/store/wym0bhrfdx5ndfpx6y39c6j3pf2n6wak-libksba-1.3.5\n"
+" /nix/store/x1idgjd7vs75nj9s3krimbfjvh27n06d-terraform-provider-librato-0.1.0-bin\n"
+" /nix/store/x3rijvjjrch1fjs60lrw9xb7pidp817f-gtk+-2.24.32\n"
+" /nix/store/x6zlzsjsd7m9mjkmxlp15vcay58g6a04-python3.7-pycryptodome-3.7.3\n"
+" /nix/store/x987jpq3yswa2aj51d63vwszfdm3r8ld-terraform-provider-atlas-0.1.1-bin\n"
+" /nix/store/xav1lh5jlgrz7amaz7b5ghrz0c273lji-python3.7-pyOpenSSL-19.0.0\n"
+" /nix/store/xbcc8v50g7h7wqh892q7k22wb1ky8cg7-libevent-2.1.8\n"
+" /nix/store/xbwr4gb4zgjmcrbx82zlcp1jfgcz75ya-python3.7-cryptography-2.6.1-dev\n"
+" /nix/store/xdhh337yhl93x33vzd9davinrbr9x9iz-libmicrohttpd-0.9.63\n"
+" /nix/store/xfgg45by0j5hxi1kdwh8x2pkfd67wwzd-nss-cacert-3.42.1\n"
+" /nix/store/xkv7la24vsyn9n23wc1izcmmp7aifzb3-terraform-provider-packet-2.1.0-bin\n"
+" /nix/store/xmy3chnan9iiag9apm7dd825cmlkiiij-libusb-1.0.22\n"
+" /nix/store/xn8xmzxjx7i8wwfvbiwfgmv9mn4n45dk-terraform-provider-icinga2-0.2.0-bin\n"
+" /nix/store/xs2k8driha83f9k017bkgch8lcl4z7w0-python3.7-ply-3.11\n"
+" /nix/store/xv9pfis6ixrsv7z1jrmgagi25qljvg0d-python3.7-pynacl-1.3.0\n"
+" /nix/store/xxwqa4rwfi97az8a6dl6vhqiyjvmnm9v-libsecret-0.18.8\n"
+" /nix/store/xyx7dm2b6ylcdp38pfwcip9ssx0fdzga-libtool-2.4.6-lib\n"
+" /nix/store/xzzf5h2f02bwjcph28vly4wklp13wb0g-perl5.28.2-HTML-Parser-3.72\n"
+" /nix/store/y1v3g4m9bmmmvmw4z84m5fpmdy42lbr4-terraform-provider-selectel-2.1.0-bin\n"
+" /nix/store/y20bvdwb0s95wa4gzhkkxd1xcc4c8whx-terraform-provider-postgresql-0.3.0-bin\n"
+" /nix/store/y3x0fvlz4a30iajw3vd1rkg45vl3k15c-pcsclite-1.8.25\n"
+" /nix/store/y48is3y65apgyjwlwiyzjay1dw19l19a-dns-root-data-2019-01-11\n"
+" /nix/store/y5gfmqjp68h4fqq8z4p219pimm7ws49j-python3.7-cffi-1.12.3-dev\n"
+" /nix/store/ybj0i3axzbkb4n4c4a5gz5lr3z70v7h3-bash-interactive-4.4-p23-man\n"
+" /nix/store/ybsmcpfglj9fm5kjxyykbnwfjmhxrwfv-terraform-provider-google-beta-2.6.0-bin\n"
+" /nix/store/yf4i32dx953p2dv2agfdyxdwg6ba0l61-python3.7-setuptools-41.0.1\n"
+" /nix/store/yfmvcf5cslq4f9kv0vlmxksdgvick22d-libgpg-error-1.36\n"
+" /nix/store/yh1w64xprl0rxmj8nvxpmikp6x3qvgdb-libffi-3.2.1\n"
+" /nix/store/yi01h84z709wf02id8hsb170z53wvk7r-glibc-2.27-dev\n"
+" /nix/store/yik0kf8fgxjj1rj3s4bsrx1y6smz8rhx-cdrtools-3.02a06\n"
+" /nix/store/yjdcrd1lkzp8c7cawcpy40c4p3ngaw12-terraform-provider-rightscale-1.3.0-bin\n"
+" /nix/store/ymn53mhfkkhs26qw708yv7bd7jmbp636-terraform-provider-nsxt-1.1.0-bin\n"
+" /nix/store/yn7smb316b6d99wjw2v9fgxzbrqnq9jm-terraform-provider-gandi-1.0.0-bin\n"
+" /nix/store/yr6qv6j9qrc03gl7bknw6p1fx1pzk0l9-terraform-provider-hcloud-1.9.0-bin\n"
+" /nix/store/yrmrvha03pvdyi9ww2bi6xjpk5930sf8-glib-2.60.1\n"
+" /nix/store/yvqaj61p81kd4bq3dyw64idqj61rwpka-terraform-provider-hedvig-1.0.3-bin\n"
+" /nix/store/z0sqda5bg0l4p0851nw05h7hii0jj1kr-python3.7-PyYAML-5.1\n"
+" /nix/store/z2darh83lb4rmsfnnyjc0hll51fyvj49-libSM-1.2.3\n"
+" /nix/store/z4vgv1w5cmd6p90grfgr1k6m87fydr3g-terraform-provider-ovh-0.3.0-bin\n"
+" /nix/store/z68464p6aafah8b8xcybkwyhmqdf0jgx-gnupg-2.2.15\n"
+" /nix/store/z7jh25by0vv378gacjd01idi52dj688h-libtiff-4.0.10\n"
+" /nix/store/z7n5a3kwjylsgnc1d271j4dn41m6shpz-libtirpc-1.1.4\n"
+" /nix/store/z9fv0x6vwlx3xkcac3lg6v8g0figkx39-ncurses-6.1-20190112\n"
+" /nix/store/za8dm1xsfslzdk4j434w869bngrygici-perl5.28.2-URI-1.76\n"
+" /nix/store/zaq3w03j96qqhzpcfs9yacwa98sdsmiv-terraform-provider-oci-3.24.1-bin\n"
+" /nix/store/zckvgwnyah69mmwn0g5vr4y85rmzwld9-libsodium-1.0.17\n"
+" /nix/store/zdfchj49phsp0sahcvdfp8ipc0chakg3-terraform-provider-rabbitmq-1.0.0-bin\n"
+" /nix/store/zh1q7yvyaxlcmj3n6g0rrdaq0v73pp90-linux-pam-1.3.1\n"
+" /nix/store/znjkmjz0pgckxxzq0m9d17isnsd9s03q-cracklib-2.9.7\n"
+" /nix/store/zxdnpb673bf27hcqzvssv5629m4x5bjv-freetype-2.10.0\n"
+"copying path '/nix/store/drdzgwhnqjvq4g1aqsyz56c04k6dxnbi-bash-interactive-4.4-p23-doc' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/a2rr0irv2ssvvphvafgrxy4di0pkkagn-audit-2.8.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8xy69pkisipvdmrpm1nmbi6qa2c6lhn0-bash-interactive-4.4-p23-info' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ybj0i3axzbkb4n4c4a5gz5lr3z70v7h3-bash-interactive-4.4-p23-man' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2dfjlvp38xzkyylwpavnh61azi0d168b-binutils-2.31.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/f7zcmzqcavbj7bp1dlfk86f9bkqvk9p3-bridge-utils-1.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/206dvjl6595dk40dli12ziv393ww54wl-bzip2-1.0.6.0.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8aylwgi9nb6hsgz6620fzsllbc7h2rx1-c-ares-1.15.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rj8xd9ajm3wqjz1vfkignlp011fss53q-bzip2-1.0.6.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/znjkmjz0pgckxxzq0m9d17isnsd9s03q-cracklib-2.9.7' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/nfn8wgiqf418y444fch4bpf2ay6ca55i-curl-7.64.1-man' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6whclwjzwg46s0dkxwk1xz8cdcxnkd3y-db-4.8.30' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2k46270d0h3gqj1c0wgx8prnj51jqryd-db-5.3.28' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8gn2b5vvlazg608cj1y5l4igp9rckmnq-dejavu-fonts-minimal-2.37' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pwkjsnbgb4mw0x5r5zh8s7c9wqryhmbl-dmidecode-3.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/y48is3y65apgyjwlwiyzjay1dw19l19a-dns-root-data-2019-01-11' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8dl5c7n4555lr6qipki2424652gf8az8-ebtables-2.0.10-4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/h02lb0p8krj1smsrid2n44ak058bbd82-expand-response-params' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/4jw2677fvb11aj1bal9a2iksqz0mk80m-expat-2.2.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/bd1hz6m8gh9m91hikjhq7aiq2khdkx2r-fontconfig-2.12.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8ndwixznskf4zbf6h96ww4j8ap4j8067-fribidi-1.0.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/920nr51iw7qaplqjlqrlnql9g5ljq3vp-gdbm-1.18.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/m6hisb1d7q1c4z0s3icax40gynz4f8fl-gmp-6.1.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kh2h5rnmm4gvjm8z7w2y511h15i7nhk9-gnum4-1.4.18' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6554dpyahvcs49dmv434aky6bfkmqb30-gnumake-4.2.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pwnppsfjfxibhwhf598l7mx31i8154j9-bison-3.3.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jwwkky1pn1fw3yiaxmc5k3brb0rqlwvq-graphite2-1.3.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6mz512j183wj7qas2qm6zkrks5k8rh00-gettext-0.19.8.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/4i1mw6av3d6pr9bqggb4hnv6cykbrhhi-kexec-tools-2.0.19' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/93rldbdly90q16lzk7hzilhk4qkdpqfq-keyutils-1.6-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rl2z4bb7wkfp0g12ccqffh287qal1109-kmod-26' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/4qq5hh1r6sqb0kpxc305rb468s45j4aw-libICE-1.0.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/v31bag67wm17wkdg7zr9yi62c5028y59-libXau-1.0.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jf6lfawjvwr6ggnd4lhc5w4dp9v3kgh4-libXdmcp-1.1.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/s3m5z3wxm94c0bfyjxmqf6i0gf1bpx90-libaio-0.3.110' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6b2jabk1scwhhk9bz7wjzycvmkiw419d-libapparmor-2.13.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vckbx0p1isjvmgjh7ppni3h87imazbzb-libcap-2.27-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/j1px1l6vk39i3chghlwy9222jcjdfdq0-libcap-ng-0.7.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yik0kf8fgxjj1rj3s4bsrx1y6smz8rhx-cdrtools-3.02a06' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/msa690459q4n9fiq125gsfambbd62qb4-libdaemon-0.14' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/qhad1pgmn3z406pgk345281xb5zjqrkm-libelf-0.8.13' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/msfkr5yqdxjx5cm24pvn3q1552rsjn8h-libev-4.25' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yh1w64xprl0rxmj8nvxpmikp6x3qvgdb-libffi-3.2.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yfmvcf5cslq4f9kv0vlmxksdgvick22d-libgpg-error-1.36' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/0jl2dhydfh3jbfpkgkrixisqkhj12d4y-libffi-3.2.1-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jsg4bi31drwy614hdkkwf32m4wz3im6g-libassuan-2.5.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/94nrq9paz335s155x9za8n7kb0q3y211-libgcrypt-1.8.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/nq2x9w3rjd5l2yvlv328i19ljar8bdab-libidn-1.35' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vzs0x1kaliybgk7yr9lrf6ad4x5v1k9y-libjpeg-turbo-2.0.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hpmni5y805q7a07q9sn3nwjk4i2m2jl5-libkrb5-1.17' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hps5ziw9zq6mcjh9b7naaxawnqymws4m-jasper-2.0.16' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/b6pdz8g070kbf0rdavjz6rip7sx06r8h-libkrb5-1.17-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wym0bhrfdx5ndfpx6y39c6j3pf2n6wak-libksba-1.3.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/qbwcp86aslamyhhmf2xx0l5d17dyg2jh-libmnl-1.0.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/mmjbmvw64yl2756y1zvsxk0ic0nhzq2a-libnfnetlink-1.0.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kvy2sz5lvi89lnh4rmw1df4jsnhqf1ay-libnftnl-1.1.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wccns8l8bav11z3xlhasmnkz383q1k9p-libnetfilter_conntrack-1.0.7' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/i8859i082xqnrhzg7h6gz2ylc5wbw5pa-libnl-3.4.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jn0bddfc3fzhnf5ns4s2khhzclswvzb2-libpcap-1.9.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7b7nbb0w2iwskwhzjhfwrif631h4smia-libpciaccess-0.14' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/gsl1dw8ycrdvlzczsl59mkz0qpbwcmz1-iptables-1.8.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/mrclkdxryhjd6i36hlad6fwahjd14fmg-libpng-apng-1.6.37' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/4z62pandn85xhcc5vazmi29cs2yps47b-iproute2-5.0.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/zxdnpb673bf27hcqzvssv5629m4x5bjv-freetype-2.10.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hg863b95fxv9zlk008qjyf87qgyx58h1-libseccomp-2.4.1-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/gn5cd1z252aip0rvds71g9mgfhh6i8p7-fontconfig-2.12.6-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/zckvgwnyah69mmwn0g5vr4y85rmzwld9-libsodium-1.0.17' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5l3967kll8m6s66zprzwb2p6vf2mh5yd-libtasn1-4.13' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z7jh25by0vv378gacjd01idi52dj688h-libtiff-4.0.10' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z7n5a3kwjylsgnc1d271j4dn41m6shpz-libtirpc-1.1.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xyx7dm2b6ylcdp38pfwcip9ssx0fdzga-libtool-2.4.6-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/mn0nzy294n07x1b92m9n0rwrv7z1441m-libunistring-0.9.10' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9hysgvp7qrfcil4b5qhwdq2vm9hism13-libxcb-1.13.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ndjjyr4rqibzkgs8w55bx2idhnckh39p-libidn2-2.1.1a' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/69vq0a9sqynmz335apm8zgyjdmq34s5j-libX11-1.6.7' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/b7w6bpx5z0ncy35kqxvmpg4lwrnc8jf2-libxml2-2.9.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ag3fp30cz58ijm2yyy5adp1f3kw814b5-libXcomposite-0.4.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/lswf09qbkkrqd0rgzaqyrkr44lf78y9x-libXext-1.3.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/aqp0mrdbhvkm8rl1z0p2rkqnz6pbclhq-libXfixes-5.0.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/cd09qv56inq4gwa89656r4n0lq0vgidw-libXi-1.7.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/i10riha5s5dgafznk3gwn36fyr3cpxb4-libXinerama-1.1.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/dvsw0fhfzqf4xg0q2idhs02rhwn4k8cv-libXrender-0.9.10' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/k4v5havnf7pmcv40xadh8mb7b0nbcgxz-libglvnd-1.0.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/3s4fr71ykyw54kyyqavd0ba42klg0bhf-libXcursor-1.2.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/dy437h3f5i500gv6znll974c87grzh3l-libXft-2.3.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/lnzh3cjjcbafh6wsivw10wl60g7xplxj-libXrandr-1.5.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/sfrh0r54ykfzv62h17gi8hm6778j7k0l-libyaml-0.2.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/c7jkmfjhl3jkgnkrhh021vrqry7zplc1-linux-headers-4.19.16' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/zh1q7yvyaxlcmj3n6g0rrdaq0v73pp90-linux-pam-1.3.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yi01h84z709wf02id8hsb170z53wvk7r-glibc-2.27-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/lr9yhdbn8a3la69j56cz0vi1qva973dv-kbd-2.0.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5qnlfx9qncn0fcw6mbfj6j58pz0cv0p3-binutils-wrapper-2.31.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/apcaggi0q3vrb4ha1b07cjxiim2li5ly-gcc-7.4.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/caa29d4y2zip0ly9mcc7f4w94blw8k60-lz4-1.9.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ds1prvgw3i3ic8c7axyrw4lwm3d0gqab-gcc-wrapper-7.4.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7mmn8ri08z48vfj69c2h66f3g349ilq1-mailcap-2.1.48' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/skkpbcqavjd8q0zmd94js6nz7pgbvpfl-mirrors-list' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z9fv0x6vwlx3xkcac3lg6v8g0figkx39-ncurses-6.1-20190112' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vzjwz11r1yy02xv07vx2577pqizzx83n-nettle-3.4.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ni4nc256xs4f5hmhlhybxl8k40fwi5m3-libedit-20190324-3.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/h8898ysg2s23k6palhxy9a5sbgrvvrcy-nfs-utils-2.3.3-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wkby8pdmg4vpvbl0d85gynh103k2h1ky-nghttp2-1.38.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kmscm0qm9j480wpd1yh42b1g0zc6qbmv-nghttp2-1.38.0-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n6z00dm6a5fdv935v8bv59909ra51xli-npth-1.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xfgg45by0j5hxi1kdwh8x2pkfd67wwzd-nss-cacert-3.42.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/f11valqiyik1ggdlnhg3ibwgrj1imidb-numactl-2.0.12' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/g4qqgmrm254axgndybnpwg7s780bxy1a-numad-0.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/sm4yylq92rip64wdk3iniy91w48a90ia-openssl-1.0.2r' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/qpj9rsal85rc94pizrkwb3c5nkivlfcl-p11-kit-0.23.14' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/fhgiisqjpzwl8z4fchgc07avg1azmp0r-cyrus-sasl-2.1.27' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xbcc8v50g7h7wqh892q7k22wb1ky8cg7-libevent-2.1.8' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/irqcza91k5smn6f4dyvqzw0zjn50d58f-libssh2-1.8.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/18rr3rg32imsnfyx6zb6s8lc8qpkdr74-nghttp2-1.38.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5pjazw71xk4kysxrzacgjl4iai691k25-curl-7.64.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/r7lhx3aqyils26h7wbxbgf376c0n4ab5-libssh2-1.8.2-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wy2alf2g85wym6i9n279d7a9nianx3is-curl-7.64.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rf104cwz7kaa51s49n4c2aar0jrrj8px-nghttp2-1.38.0-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/b77nn2r1c8cqpr9prh1ldwr3m6xdrkpa-openldap-2.4.47' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2ar3zk5fjr34ys2dqnsfbb678x6fdlj4-openssh-7.9p1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8yy3wngrdcpmjyw2ryas1y4wwhbd1356-patch-2.7.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/61shjilahl0d237fg9b3z3chza2lgms4-patchelf-0.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/r6mrgd9k1jzzqrhphrg1qgxvgvbka7p8-pcre2-10.33' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/qd4j58ykdkg9yvy8kvgh0i00gacy0ldm-perl-5.28.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/mpnl3p6mzm71vci81r0h346jywm6863s-perl5.28.2-Encode-Locale-1.05' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/85hh7apv9n3gganpnnq36zvlwm126mdh-openssl-1.0.2r-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/k59h7bs9307y7rb0z70vasvj8hd5pcn5-perl5.28.2-HTML-Tagset-3.20' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/3mgn9jnjzj1rgxclbixk5xa0kkx9xpw3-openssl-1.0.2r-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xzzf5h2f02bwjcph28vly4wklp13wb0g-perl5.28.2-HTML-Parser-3.72' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/bh412cii40qpzc20pzd48dq45jv9xm5a-perl5.28.2-HTTP-Date-6.02' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5x1551gw825apcsnwx8gzfnmiapbz8yl-perl5.28.2-IO-HTML-1.001' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/0jwyd55g8nfhm25a0bh1j1by6afdriic-perl5.28.2-File-Listing-6.04' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/50rywa1m6asdz1y78a6dpa0xf98vm01v-perl5.28.2-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pfd5p3pyfrkwxh42j491kkqgl8n9aa67-perl5.28.2-TermReadKey-2.38' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/mp1hzpgp3sa6xac8dc7rldh5rab8lk2w-perl5.28.2-Test-Needs-0.002006' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8vqr6vbvyzlpsk6q0mnj93sf5j1wr5qa-perl5.28.2-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/b2rwzjp56yzd4jg2csx568h2dgj1l3l2-perl5.28.2-Try-Tiny-0.30' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/za8dm1xsfslzdk4j434w869bngrygici-perl5.28.2-URI-1.76' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wxdxzvaj3mcmf3i9yqwinpcb26iz3pas-perl5.28.2-Test-Fatal-0.014' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/i652w9gqbmc6k48lz3b02ncv7hpgc7nv-perl5.28.2-HTTP-Message-6.18' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/fky41n197z9n737kbih4j7ncnh7cngnz-perl5.28.2-Net-HTTP-6.18' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7gwvcm8dc24vnphbx85q1afaxhfhac28-perl5.28.2-HTTP-Cookies-6.04' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jvfc6r03a95aignzbfg987kspa04s0md-perl5.28.2-HTTP-Daemon-6.01' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wvccp35z40fj1v8xbz6czrm4bbiaqd45-perl5.28.2-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hnvmacd16kzmwcsavzkssrqj2kiryy2p-perl5.28.2-WWW-RobotRules-6.02' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/k7g175rls2pk34m23wqhplv8mbnsc0lc-pixman-0.38.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/91a8wnca647kfw67sk0iykdbyjpr8430-perl5.28.2-libwww-perl-6.38' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xav1lh5jlgrz7amaz7b5ghrz0c273lji-python3.7-pyOpenSSL-19.0.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/43i41p1n1sxssmqpf9jp5x4gcy6r2fl6-git-2.21.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/bxps2h6axpqrjxcmib344a3immy3gvhd-readline-6.3p08' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/k1xlz5zy7rm2a428byz850c1igc2j1z8-readline-7.0p5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2xhsrw4ws6kc4x3983wdwwlnim27c6iz-shadow-4.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/715lcljfyp8grxlmaf51pn0n3ml3dwgg-bash-interactive-4.4-p23' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ap4sr1n0wlgmybxbw3pvq8klh8snc3n8-sqlite-3.28.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ndbpc44lv43k7jnb0ip1qwk8f0slx685-bash-interactive-4.4-p23-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/3xzkc4wyadr3vrva2q320axjr6cyb43n-python-2.7.16' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/s5f3vpmig33nk4zyk228q55wdydd3pc2-python3-3.7.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/0w6l8kh3d30kg3nxc8xyi84gmrfxjnns-git-2.21.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/aqgl1dqd6lr7jr9knqsyyq09bm0ibw7s-python3.7-cffi-1.12.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9fvjgcjn1d0c9476qlr05psvwljwzq59-python3.7-cryptography-2.6.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yf4i32dx953p2dv2agfdyxdwg6ba0l61-python3.7-setuptools-41.0.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7crry947d1xvp1f15c6q089l0gcy5hpc-stdenv-linux' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/b2wy5p5bykcnkwz5q1w8qq4qfzr4arc7-python3.7-MarkupSafe-1.1.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z0sqda5bg0l4p0851nw05h7hii0jj1kr-python3.7-PyYAML-5.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n1dcmv0ii513dhlnllc790vfn8i9j9lj-python3.7-Jinja2-2.10.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/r3x6y48q13qwl9x1wwz37002b7fhyidv-python3.7-asn1crypto-0.24.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/02nzlzdw0kiici9368jp5s84cpbqxkva-python3.7-certifi-2018.11.29' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wbbwikfkc7fbida822a5z9b4xmsnwm3d-python3.7-chardet-3.0.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pvzbhdzqm4i20v3flr5mf7yfs7n2lrvg-python3.7-dnspython-1.16.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/m65jki67b02la5k5r9vgddcp13l32lw5-python3.7-httplib2-0.12.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n2mzl8vljdksdqybihdy9mm5v7hm19q5-python3.7-idna-2.8' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/31l04a1yxxdbdpzdp8mpfk96rhj3bg2c-python3.7-netaddr-0.7.19' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xs2k8driha83f9k017bkgch8lcl4z7w0-python3.7-ply-3.11' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/v69ld4vcgkr4i4giv1nzl4kax9zx1fpa-python3.7-pyasn1-0.4.5' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/im1940h7b6pjlnh38q6lasdn8iybsv4v-python3.7-jmespath-0.9.4' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9xb22l3577nznvd6dqqis6ixgmwq9ygh-python3.7-pycparser-2.19' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/x6zlzsjsd7m9mjkmxlp15vcay58g6a04-python3.7-pycryptodome-3.7.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/y5gfmqjp68h4fqq8z4p219pimm7ws49j-python3.7-cffi-1.12.3-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/gg469jh0m4dk4b0x6s44ziad69czbv22-python3.7-pycrypto-3.7.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5ydkc9jcaaxlz58dr7gvyhi3gcmafsfy-python3.7-pyparsing-2.3.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/m2n4drah6566qlccaabjhnnl4slql3cd-python3.7-pysocks-1.6.8' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/dy5wi2sqnhbnlpvjr8a0z96id1mq243j-python3.7-six-1.12.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ryinn9xa3g8bn55nj1h54ypnlp9naq6i-stdenv-linux' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/r54ql4g0hcxzp15sfjiagd1dmxh4s8n6-python3.7-bcrypt-3.1.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9pa3p1rqhnvlrngaqsx09766cl1j6zf3-python3.7-httpretty-0.9.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/nvyhmkghwxh5f1wiid27vzxa0ddx929p-python3.7-packaging-19.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xv9pfis6ixrsv7z1jrmgagi25qljvg0d-python3.7-pynacl-1.3.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xbwr4gb4zgjmcrbx82zlcp1jfgcz75ya-python3.7-cryptography-2.6.1-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/1kz91g5mfj271lj5kxz2m1axcs2yqafy-thin-provisioning-tools-0.7.6' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n1y9i0bv0sg8n8759zd6smr2zjyn8jf3-python3.7-paramiko-2.4.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7256h1y98mmzsckwk2x7i3v3cxmvgrmq-python3.7-pyOpenSSL-19.0.0-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/20wmykp8fj2izxdj8lic8ggcfpdid5ka-tzdata-2019a' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ch6pz5kfg0bd3sfyf1813cpskg7lidns-python3.7-urllib3-1.24.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/749qksf79hvn0aprcznd9bwfv550qwh3-go-1.12.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/d0wcd9mid6067i6va19lwiv29hln6n2j-python3.7-requests-2.21.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rzfzb501miszas14xq6cr3c04m8kkdrb-terraform-0.11.14-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/qq59cnpcbnp4p054ipbs54fv946r4qr8-python3.7-boto-2.49.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/479dvd7q6c18l3jl2myhfxmfsjbqjjch-python3.7-dopy-2016-01-04' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kh18cbdb9f79gl58axwr8qq6c7bd0bl0-terraform-provider-acme-1.1.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vin4cp4m5af1mxkb2jqqi8xkf98ca2sv-python3.7-ansible-2.7.9' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/gydzhj2y5j1ggbainbilvpxi5glw5hmf-terraform-provider-alicloud-1.41.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/0rc1jyfbxwffmsphyv2pfnxd6smysc1l-terraform-provider-ansible-0.0.4-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n7wdfylfi5wnrjdg4im9v2q9gnl99mmb-terraform-provider-archive-1.2.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pk6r8sd18gmxns8r73qi2yrmzf4f4cp0-terraform-provider-arukas-1.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/x987jpq3yswa2aj51d63vwszfdm3r8ld-terraform-provider-atlas-0.1.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/fwvdxglj9asp4f90ihry29n2fm8a6i09-terraform-provider-aws-2.9.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vbp6wnr2gyj50nabxgclkbqblmnwcnbg-terraform-provider-azuread-0.3.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7mqpbfs391s9hbnfzkpgw3inj8mkldr8-terraform-provider-azurerm-1.27.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ixycmxkr0wrz3gfxrnrdgcsk4gcyirpv-terraform-provider-azurestack-0.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/1hml3hx7qlbkv139khazb24jh69nngcd-terraform-provider-bigip-0.12.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/63k736kr346ncpzv5yiqiyyyiqpa2h8m-terraform-provider-bitbucket-1.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/sw6vlm5g6r6sivlncz7vh8ps7v7r22aa-terraform-provider-brightbox-1.1.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/d7rh74cch3ybp9r239j5c2c1rb0kx3pa-terraform-provider-chef-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kqmg1xxd3vi37bqh7gdvi61bkp7wb9hi-terraform-provider-circonus-0.2.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7k3hvg4sfpr6y2bg8b7x9mkb0d2p3scr-terraform-provider-clc-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/l8zqmzg19i62iz4argyjjr071rid3q9b-terraform-provider-cloudflare-1.13.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/p19dhs366b9zbbhs61xfw7d77sk9mkjr-terraform-provider-cloudscale-1.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/0z8i6sq8mg138qnifr1z37y780xkk8hf-terraform-provider-cloudstack-0.2.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jjld4xam968mz645xh4g7i5zrnhsfyp9-terraform-provider-cobbler-1.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/np4ikymr5fq5iknjfrwrgqmcsid4dmw9-terraform-provider-consul-2.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/nc8x0pwchcc9xiv1nsj9idvpnfvkhh8p-terraform-provider-datadog-1.9.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wv8y2h4w7lxi9x6k8pzh3dxy7i4csfbm-terraform-provider-digitalocean-1.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/k5vljkz5p59nrh50vx5k2790ksqcxjpc-terraform-provider-dme-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/g63hwfkd4yjncqh81ndn9vbmghdv41ng-terraform-provider-digitalocean-1.3.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/s7p4iij8p4hi6bmc2bf3flyf6wa6yzrj-terraform-provider-dns-2.1.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ssr1y1736h7c6p8vs76iyxwg5h889x7d-terraform-provider-dnsimple-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/amlnqi4vvmpb9gjmyh1vr5hr2py12ss2-terraform-provider-docker-1.1.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/p9rjwvja55djz5g2qxyc9wzcpmska0ql-terraform-provider-dyn-1.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8z5vplmgshflm7yixhp8q7hy11xxxd8a-terraform-provider-elasticsearch-0.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/jszvy5lyyjbfi7mjr7s9bnbq9cyq858v-terraform-provider-external-1.1.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wh8pg14c3ykmmnd342llbzjigahc54dw-terraform-provider-fastly-0.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/0bdf1xn7p6xzk008yr6cahq3wjlvah5g-terraform-provider-flexibleengine-1.5.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yn7smb316b6d99wjw2v9fgxzbrqnq9jm-terraform-provider-gandi-1.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/95rd64vii9j6h31fcr9lba8m8940zfpj-terraform-provider-github-2.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/dz9dqcnz8v9cy54x5hax599zjwckp0kd-terraform-provider-gitlab-1.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kds827ryxx16rwhrsdn9wnr2pxf5qaxm-terraform-provider-google-2.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ybsmcpfglj9fm5kjxyykbnwfjmhxrwfv-terraform-provider-google-beta-2.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/scdscan356g79qb7cf776gy7src22zbl-terraform-provider-grafana-1.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yr6qv6j9qrc03gl7bknw6p1fx1pzk0l9-terraform-provider-hcloud-1.9.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yvqaj61p81kd4bq3dyw64idqj61rwpka-terraform-provider-hedvig-1.0.3-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hbs2vrw1y8y1qz1hi71jaz0j3pl95qfs-terraform-provider-helm-0.9.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5nkxpwdgpxs97yqh2fxz9y0rm80rc280-terraform-provider-heroku-1.9.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2yy3pv77rwbxk7b2mpysmiqdzhmgmphg-terraform-provider-http-1.1.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/mvmjdim7dn589inb8dsjxap08h4ip4h5-terraform-provider-huaweicloud-1.4.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wi4jm555w0rc1daiy2sz9iwrpk6cb2d8-terraform-provider-ibm-0.11.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xn8xmzxjx7i8wwfvbiwfgmv9mn4n45dk-terraform-provider-icinga2-0.2.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/f7zh0d0n2dj4dcig903zd5jgb2cpaxf6-terraform-provider-ignition-1.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/csajl6aq80s9v2xbkmlzgfxlilmbzff6-terraform-provider-influxdb-1.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5k67y2lglsnswrya21z51d4h87a081k5-terraform-provider-kubernetes-1.6.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/x1idgjd7vs75nj9s3krimbfjvh27n06d-terraform-provider-librato-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/shf6d1928fzxcaz6zh0bhcqv3xhvxhjd-terraform-provider-linode-1.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/gkpa27fykskx0dd52dca515gd91qhhgf-terraform-provider-local-1.2.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vkdh5ibsmzj6p53krnqqz1pv620f42r0-terraform-provider-logentries-1.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/sn2cydjzikl3rws2nfa7pdvayb45brrd-terraform-provider-logicmonitor-1.2.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/3qjz5kfri8sa0dj1213rap75alpqsm2l-terraform-provider-mailgun-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/byxya0m4656ylf5imvs2v9p2c1av1kjl-terraform-provider-matchbox-0.2.3-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kvjcl6plvmkm6i2lzd7wrkbiis3b4vhg-terraform-provider-mysql-1.5.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rs21a235ix9v8y4hgazkzi6g1x5dqf7v-terraform-provider-netlify-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/h40ib0qsa07b6ld1pv4x76xx2g7xgik6-terraform-provider-newrelic-1.5.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/89wg3f6hk41gxm4n6cikj6r7gr2k7h8j-terraform-provider-nixos-0.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/id798ngchr83gc0mmqd3zlviljshjhvb-terraform-provider-nomad-1.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8krs5vbid0ic6vvlvjvndvjb815q8hbd-terraform-provider-ns1-1.3.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ymn53mhfkkhs26qw708yv7bd7jmbp636-terraform-provider-nsxt-1.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5z3s6zbi98gh8cfliaplnmv15j568c46-terraform-provider-null-2.1.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6brahzfjri338n3fggplfrsmf63mrwnx-terraform-provider-nutanix-1.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/zaq3w03j96qqhzpcfs9yacwa98sdsmiv-terraform-provider-oci-3.24.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/p00q64lbln1z9kfgpd2r6qhk0kc7i7w7-terraform-provider-oneandone-1.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/50wggbbr0wdg21hrvl4icwlppvk4464b-terraform-provider-opc-1.3.6-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/1wh5wgw6a3w91mk2avvn9ssw32nlw9kd-terraform-provider-openstack-1.18.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pvsfn6d0byl3hfwnyfg21yivyj8iff8s-terraform-provider-opentelekomcloud-1.8.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/q0ndxs1vqdy5r749h5hhhbixgyf5yasx-terraform-provider-opsgenie-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hl8lzq90qjhq0n710lm5n17lc9i80vsh-terraform-provider-oraclepaas-1.5.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z4vgv1w5cmd6p90grfgr1k6m87fydr3g-terraform-provider-ovh-0.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xkv7la24vsyn9n23wc1izcmmp7aifzb3-terraform-provider-packet-2.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/hy2xn2jxm4wp7j86p08m9xdpxncskdgv-terraform-provider-pagerduty-1.2.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5lcz7p2xz1zp8iyd9yjmrg1kxw5yygnx-terraform-provider-panos-1.5.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/y20bvdwb0s95wa4gzhkkxd1xcc4c8whx-terraform-provider-postgresql-0.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vrrs5p13mykyniglgfdsn8xii9b7s850-terraform-provider-powerdns-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/in7wgxanbdycb9wpq1j29928gllc0ap6-terraform-provider-profitbricks-1.4.4-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/zdfchj49phsp0sahcvdfp8ipc0chakg3-terraform-provider-rabbitmq-1.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/15fv1623h1vcn5z0nq42v5rgjirbp5r0-terraform-provider-rancher-1.2.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7axz4xwz0vfrdgjyk59xg998bdqbvg5x-terraform-provider-random-2.1.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yjdcrd1lkzp8c7cawcpy40c4p3ngaw12-terraform-provider-rightscale-1.3.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2lh08897y86kxvyjdd1vlnkg8fz88nkd-terraform-provider-rundeck-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/fq4765nh9p0si8mh9cnywsq48zr1qc27-terraform-provider-runscope-0.5.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/lgrhsbfmpf1cjbpig8llxfrfb6xhz7xv-terraform-provider-scaleway-1.9.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/sw6n4yz49cz5vm4ggpk2l5j1vngac8j2-terraform-provider-secret-1.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/f3rbnn0jhm549mcp7k9ysjcq26j8fvyy-terraform-provider-segment-0.2.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/y1v3g4m9bmmmvmw4z84m5fpmdy42lbr4-terraform-provider-selectel-2.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/bf26sh99bngrnpzrj7gyz0689b060vak-terraform-provider-skytap-0.9.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/l6ns1zcd18j9708y3agxgi0kihs4zc7i-terraform-provider-softlayer-0.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5ygnx64lyv5a8pnpmlj7bs8s2dz2hkxd-terraform-provider-spotinst-1.13.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/k3qhzd0x8a1z6h5kyifnv3axbfs7fy66-terraform-provider-statuscake-0.2.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/bvsihhp4jv61hz6mc17mn1sar03k0i8d-terraform-provider-telefonicaopencloud-1.0.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9gjpg5lsdhgrhi805948c648nhn39l8z-terraform-provider-template-2.1.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6hv1yfwyydyg2lzqcllwjb68xl4mrppw-terraform-provider-tencentcloud-1.5.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/7fd40sykaxj6dvya7mvif3f16wrqijr9-terraform-provider-terraform-1.0.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rk78bh2s5yjpmgdhzqlf1hnj6ij0h20n-terraform-provider-tfe-0.8.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pb6r7dllpfw5cbhpmv2v2kms9a57r4v5-terraform-provider-tls-2.0.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/apjv9g35sklrab9lzz9r9rq7lnczv2wy-terraform-provider-triton-0.5.1-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/5b0s7hhp52vq4psmicf8m8y2jr5jsiaz-terraform-provider-ucloud-1.6.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ck0lifb2jgkmg6c7frz7fxqwz5fbdnxk-terraform-provider-ultradns-0.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/1fl7yd9chgswnabbsvva7xvg5ak1q44p-terraform-provider-vault-1.8.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n3rakrhhvi3bb0ffnjs51drmy157p51q-terraform-provider-vcd-2.1.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/n1mrfbzlh3cjm9mfyrp48pybl3sg4717-terraform-provider-vsphere-1.10.0-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/cncad2f4lfxfxnwd9lfhjjd89x3anxqr-terraform-provider-yandex-0.5.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/2j9jm3jaxfn2g6wxak61wkhmrg6c4nn5-unbound-1.9.1-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/01aggsi1ndjhnr93gcy8c4s1xbxab8dn-unzip-6.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/1dydqkwswavzkyvr1qr62zmx3nqpmpp4-gnutls-3.6.7' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/69msrhi85iay3cb7c3nksr0s8l0xpsc7-util-linux-2.33.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xdhh337yhl93x33vzd9davinrbr9x9iz-libmicrohttpd-0.9.63' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/rcn9d2q4mpapxf4qd54hkqz32ljhv0rw-util-linux-2.33.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/50gfgyi2rxi4n25if8cqvlxlh5czl0wd-yajl-2.1.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/yrmrvha03pvdyi9ww2bi6xjpk5930sf8-glib-2.60.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z2darh83lb4rmsfnnyjc0hll51fyvj49-libSM-1.2.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/pknq6p5h43zm4r0dgjnfywql04hdv3js-atk-2.32.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/p8s6295x84d594sxvzml8rsxqjdghmc5-cairo-1.16.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/v5q3cnkjfy8rfacsjqn1nza93mbczgd5-gdk-pixbuf-2.38.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9yb9whkdgf3zyy85xac248kwq1wm6qd6-harfbuzz-2.3.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xxwqa4rwfi97az8a6dl6vhqiyjvmnm9v-libsecret-0.18.8' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/3xq3w5fgz99rhp3rxfkbp0ahg37mgmly-pango-1.43.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/a185xh0jcx7il7hw2gfh0pmvrah3x67y-systemd-239.20190219-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/s7rqxrfb631i53dfl90gac35095jyypq-util-linux-2.33.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6hwdmzpspbnb7ix5z6m9h60jyy42kj90-dbus-1.12.12-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/xmy3chnan9iiag9apm7dd825cmlkiiij-libusb-1.0.22' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/ricz15lpkjrasc5cpzp6l60iwlc87wv3-avahi-0.7' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/di6rrbw1kbdrwxiymq91dgdvp2rvk1xv-dnsmasq-2.80' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/kccb2k5hdjhdyxbxsri9lwwc4z1pvx6z-cups-2.2.11-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/vqvmd2r9pf9f74jqipbhrn7wksiiy1jf-pcsclite-1.8.25-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/x3rijvjjrch1fjs60lrw9xb7pidp817f-gtk+-2.24.32' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/y3x0fvlz4a30iajw3vd1rkg45vl3k15c-pcsclite-1.8.25' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/a2cg0faxbwnicf41vwmw467jw7i9ix46-pinentry-1.1.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/lvqp39d4hx776nkw3a0qfnvvjmnj49hc-procps-3.3.15' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/z68464p6aafah8b8xcybkwyhmqdf0jgx-gnupg-2.2.15' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/6bvd29jny80ka8df9prr5hrl5yz7d98k-systemd-239.20190219' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/qgr66z24rfbb8cc965rr2sklh38p083n-git-crypt-0.6.0' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/daizqdqrm7g4favv814hnijmqhay8hs4-dbus-1.12.12' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wf5nv1gzrx378icqmjgwl2isg7s8ly80-lvm2-2.03.01' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/97d3r4a7v1nal53x0gv17hrbbcp0rb21-util-linux-2.33.2-bin' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/glrnpb3rkribnrjh5gzs24nmvl3m00cg-parted-3.2' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/f39sk2aim9xz7dzn7qvqh442xm58v77w-nfs-utils-2.3.3' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/wi2mn48l130r7wafvj757rvzfkla59if-pm-utils-1.4.1' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/35mdgd1wc67g60azsrghzgn4fjhr5d2r-zfs-user-0.7.13-lib' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/9dk1gh07pwkvg62rns4k670h54bhfhgh-zlib-1.2.11-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/8bxvyvd3ky0w5gk3k0lq2fmvj30fbzj8-zfs-user-0.7.13' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/i3kh8yq4kgkfn234pnwxnvxbrcgcckc8-curl-7.64.1-dev' from 'https://cache.nixos.org'...\n"
+"copying path '/nix/store/nwhvl00i2wa4ms26lszk36vwir90jd3x-libvirt-4.10.0' from 'https://cache.nixos.org'...\n"
+"building '/nix/store/as9r3n55czsdiq82iacs0hq12alxb2m0-remove-references-to.drv'...\n"
+"copying path '/nix/store/l9821zngvlh8bd6mlyzvi1mc754dyhjz-terraform-provider-libvirt-0.5.1-bin' from 'https://cache.nixos.org'...\n"
+"building '/nix/store/fdh1ahjdh3fgsz4qz386klsa9bsqil48-source.drv'...\n"
+"\n"
+"trying https://github.com/n3integration/terraform-godaddy/archive/v1.6.4.tar.gz\n"
+" % Total % Received % Xferd Average Speed Time Time Time Current\n"
+" Dload Upload Total Spent Left Speed\n"
+"100 139 0 139 0 0 863 0 --:--:-- --:--:-- --:--:-- 858\n"
+"100 19326 0 19326 0 0 59282 0 --:--:-- --:--:-- --:--:-- 59282\n"
+"unpacking source archive /build/v1.6.4.tar.gz\n"
+"copying path '/nix/store/isdbs6d2jk75kj0qk4s3prwlwcgkgalf-tf-plugin-env' from 'https://cache.nixos.org'...\n"
+"building '/nix/store/x7r5kh20ajlnj6vw6fg649w0iypcg1ga-terraform-godaddy-1.6.4-go-modules.drv'...\n"
+"unpacking sources\n"
+"unpacking source archive /nix/store/m62ydk4wy6818sysfys0qz20cx5nzj7h-source\n"
+"source root is source\n"
+"patching sources\n"
+"configuring\n"
+"building\n"
+"go: finding github.com/mitchellh/gox v0.4.0\n"
+"go: finding github.com/hashicorp/go-hclog v0.0.0-20181001195459-61d530d6c27f\n"
+"go: finding github.com/hashicorp/go-getter v0.0.0-20181213035916-be39683deade\n"
+"go: finding github.com/mitchellh/go-testing-interface v1.0.0\n"
+"go: finding github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af\n"
+"go: finding github.com/agext/levenshtein v1.2.1\n"
+"go: finding github.com/apparentlymart/go-cidr v1.0.0\n"
+"go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d\n"
+"go: finding github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250\n"
+"go: finding github.com/posener/complete v1.2.1\n"
+"go: finding github.com/mitchellh/copystructure v1.0.0\n"
+"go: finding github.com/hashicorp/errwrap v1.0.0\n"
+"go: finding github.com/hashicorp/hcl2 v0.0.0-20181220012050-6631d7cd0a68\n"
+"go: finding github.com/hashicorp/go-version v1.0.0\n"
+"go: finding github.com/mitchellh/reflectwalk v1.0.0\n"
+"go: finding golang.org/x/net v0.0.0-20181220203305-927f97764cc3\n"
+"go: finding golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4\n"
+"go: finding golang.org/x/tools v0.0.0-20181221235234-d00ac6d27372\n"
+"go: finding github.com/golang/protobuf v1.2.0\n"
+"go: finding github.com/hashicorp/go-multierror v1.0.0\n"
+"go: finding github.com/mitchellh/go-homedir v1.0.0\n"
+"go: finding github.com/apparentlymart/go-textseg v1.0.0\n"
+"go: finding github.com/hashicorp/go-uuid v1.0.0\n"
+"go: finding github.com/satori/go.uuid v1.2.0\n"
+"go: finding github.com/mitchellh/cli v1.0.0\n"
+"go: finding github.com/mitchellh/mapstructure v1.1.2\n"
+"go: finding golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1\n"
+"go: finding golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9\n"
+"go: finding google.golang.org/appengine v1.4.0\n"
+"go: finding golang.org/x/net v0.0.0-20181114220301-adae6a3d119a\n"
+"go: finding golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc\n"
+"go: finding honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3\n"
+"go: finding github.com/hashicorp/terraform v0.11.11\n"
+"go: finding github.com/aws/aws-sdk-go v1.15.78\n"
+"go: finding github.com/onsi/ginkgo v1.7.0\n"
+"go: finding github.com/kr/pty v1.1.3\n"
+"go: finding github.com/mattn/go-isatty v0.0.3\n"
+"go: finding github.com/onsi/gomega v1.4.3\n"
+"go: finding github.com/bgentry/speakeasy v0.1.0\n"
+"go: finding gopkg.in/yaml.v2 v2.2.2\n"
+"go: finding gopkg.in/yaml.v2 v2.2.1\n"
+"go: finding github.com/fatih/color v1.7.0\n"
+"go: finding github.com/zclconf/go-cty v0.0.0-20181129180422-88fbe721e0f8\n"
+"go: finding github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7\n"
+"go: finding golang.org/x/text v0.3.0\n"
+"go: finding github.com/sergi/go-diff v1.0.0\n"
+"go: finding github.com/armon/go-radix v1.0.0\n"
+"go: finding github.com/fsnotify/fsnotify v1.4.7\n"
+"go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e\n"
+"go: finding golang.org/x/net v0.0.0-20181129055619-fae4c4e3ad76\n"
+"go: finding github.com/kr/pretty v0.1.0\n"
+"go: finding github.com/hashicorp/go-cleanhttp v0.5.0\n"
+"go: finding github.com/mattn/go-isatty v0.0.4\n"
+"go: finding gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127\n"
+"go: finding github.com/go-test/deep v1.0.1\n"
+"go: finding cloud.google.com/go v0.34.0\n"
+"go: finding github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348\n"
+"go: finding howett.net/plist v0.0.0-20181124034731-591f970eefbb\n"
+"go: finding github.com/hashicorp/errwrap v0.0.0-20180715044906-d6c0cd880357\n"
+"go: finding golang.org/x/crypto v0.0.0-20180816225734-aabede6cba87\n"
+"go: finding golang.org/x/net v0.0.0-20180724234803-3673e40ba225\n"
+"go: finding github.com/mattn/go-colorable v0.0.9\n"
+"go: finding github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d\n"
+"go: finding github.com/go-ini/ini v1.40.0\n"
+"go: finding github.com/mitchellh/iochan v1.0.0\n"
+"go: finding golang.org/x/sys v0.0.0-20181228144115-9a3f9b0469bb\n"
+"go: finding github.com/jessevdk/go-flags v1.4.0\n"
+"go: finding github.com/posener/complete v1.1.1\n"
+"go: finding github.com/spf13/pflag v1.0.3\n"
+"go: finding github.com/stretchr/testify v1.2.2\n"
+"go: finding golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890\n"
+"go: finding github.com/davecgh/go-spew v1.1.1\n"
+"go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd\n"
+"go: finding golang.org/x/sync v0.0.0-20181108010431-42b317875d0f\n"
+"go: finding github.com/bsm/go-vlq v0.0.0-20150828105119-ec6e8d4f5f4e\n"
+"go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7\n"
+"go: finding github.com/mitchellh/go-wordwrap v1.0.0\n"
+"go: finding github.com/ulikunitz/xz v0.5.5\n"
+"go: finding github.com/hashicorp/hcl v1.0.0\n"
+"go: finding github.com/hashicorp/go-multierror v0.0.0-20180717150148-3d5d8f294aa0\n"
+"go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405\n"
+"go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f\n"
+"go: finding github.com/google/go-cmp v0.2.0\n"
+"go: finding github.com/golang/mock v1.2.0\n"
+"go: finding gopkg.in/fsnotify.v1 v1.4.7\n"
+"go: finding github.com/onsi/ginkgo v1.6.0\n"
+"go: finding github.com/golang/protobuf v1.1.0\n"
+"go: finding github.com/aws/aws-sdk-go v1.16.11\n"
+"go: finding github.com/hpcloud/tail v1.0.0\n"
+"go: finding google.golang.org/grpc v1.17.0\n"
+"go: finding github.com/blang/semver v3.5.1+incompatible\n"
+"go: finding github.com/vmihailenco/msgpack v3.3.3+incompatible\n"
+"go: finding github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310\n"
+"go: finding golang.org/x/net v0.0.0-20180811021610-c39426892332\n"
+"go: finding github.com/zclconf/go-cty v0.0.0-20181218225846-4fe1e489ee06\n"
+"go: finding github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8\n"
+"go: finding github.com/hashicorp/go-plugin v0.0.0-20181212150838-f444068e8f5a\n"
+"go: finding github.com/pmezard/go-difflib v1.0.0\n"
+"go: finding github.com/spf13/pflag v1.0.2\n"
+"go: finding github.com/hashicorp/go-safetemp v1.0.0\n"
+"go: finding github.com/vmihailenco/msgpack v4.0.1+incompatible\n"
+"go: finding google.golang.org/genproto v0.0.0-20181221175505-bd9b4fb69e2f\n"
+"go: finding golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52\n"
+"go: finding github.com/kr/text v0.1.0\n"
+"go: finding golang.org/x/net v0.0.0-20180826012351-8a410e7b638d\n"
+"go: finding golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3\n"
+"go: finding github.com/apparentlymart/go-dump v0.0.0-20180507223929-23540a00eaa3\n"
+"go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b\n"
+"go: finding github.com/golang/mock v1.1.1\n"
+"go: finding cloud.google.com/go v0.26.0\n"
+"go: finding github.com/oklog/run v1.0.0\n"
+"go: finding golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be\n"
+"go: finding google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8\n"
+"go: finding github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd\n"
+"go: finding google.golang.org/grpc v1.14.0\n"
+"go: finding github.com/client9/misspell v0.3.4\n"
+"go: finding github.com/kr/pty v1.1.1\n"
+"go: finding google.golang.org/appengine v1.1.0\n"
+"go: finding honnef.co/go/tools v0.0.0-20180728063816-88497007e858\n"
+"go: finding golang.org/x/sys v0.0.0-20180830151530-49385e6e1522\n"
+"go: finding github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb\n"
+"go: finding github.com/kisielk/gotool v1.0.0\n"
+"go: finding github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77\n"
+"go: finding github.com/mitchellh/hashstructure v1.0.0\n"
+"go: finding golang.org/x/net v0.0.0-20181106065722-10aee1819953\n"
+"go: finding google.golang.org/grpc v1.16.0\n"
+"go: finding golang.org/x/lint v0.0.0-20180702182130-06c8688daad7\n"
+"go: finding github.com/golang/lint v0.0.0-20180702182130-06c8688daad7\n"
+"installing\n"
+"hash mismatch in fixed-output derivation '/nix/store/q8y0mzjl78hfhazjgq2sc84i7dp9wnh0-terraform-godaddy-1.6.4-go-modules':\n"
+" wanted: sha256:10n2dy7q9kk1ly58sw965n6qa8l0nffh8vyd1vslx0gdlyj25xxs\n"
+" got: sha256:0p81wqw2n8vraxk20xwg717582ijwq2k7v5j3n13y4cd5bxd8hhz\n"
+"cannot build derivation '/nix/store/w4ghinrmpq524k3617ikfc8i42aa0dbb-terraform-godaddy-1.6.4.drv': 1 dependencies couldn't be built\n"
+"copying path '/nix/store/63gjp25l4cmdkl63zy0rcgmsvd2p2p34-terraform-0.11.14' from 'https://cache.nixos.org'...\n"
+"error: build of '/nix/store/9drkn1qxkkcrz5g3413lpmbc2xysa582-terraform-0.11.14.drv', '/nix/store/w4ghinrmpq524k3617ikfc8i42aa0dbb-terraform-godaddy-1.6.4.drv' failed\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2019-12-29-raku-tuple-type-annotation.po b/locale/pt/LC_MESSAGES/_pastebins/2019-12-29-raku-tuple-type-annotation.po
index f37a65c..ef9b9e7 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2019-12-29-raku-tuple-type-annotation.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2019-12-29-raku-tuple-type-annotation.po
@@ -11,3 +11,25 @@ msgstr ""
msgid "Error log is:"
msgstr ""
+
+msgid ""
+"# Single Str return value: this works\n"
+"sub f1(Str $in --> Str) {\n"
+" $in;\n"
+"}\n"
+"\n"
+"# Tuple of Str as return value: this works\n"
+"sub f2(Str $in) {\n"
+" ($in, $in);\n"
+"}\n"
+"\n"
+"# Tuple of Str as return value with type annotation: this doesn't works\n"
+"sub f2(Str $in --> (Str, Str)) {\n"
+" ($in, $in);\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"===SORRY!=== Error while compiling /path/to/my/file\n"
+"Malformed return value\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2020-01-04-failure-on-guix-tex-live-importer.po b/locale/pt/LC_MESSAGES/_pastebins/2020-01-04-failure-on-guix-tex-live-importer.po
index d583038..d81897d 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2020-01-04-failure-on-guix-tex-live-importer.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2020-01-04-failure-on-guix-tex-live-importer.po
@@ -8,3 +8,35 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"$ guix import texlive fontspec\n"
+"redirection vers « https://ctan.org/xml/1.2/pkg/fontspec »...\n"
+"Backtrace:\n"
+" 11 (primitive-load \"/home/andreh/.config/guix/current/bin/…\")\n"
+"In guix/ui.scm:\n"
+" 1806:12 10 (run-guix-command _ . _)\n"
+"In guix/scripts/import.scm:\n"
+" 116:11 9 (guix-import . _)\n"
+"In guix/scripts/import/texlive.scm:\n"
+" 91:19 8 (guix-import-texlive . _)\n"
+"In guix/memoization.scm:\n"
+" 98:0 7 (_ #<hash-table 7fe80e6c1480 0/31> (\"fontspec\" \"latex\") _)\n"
+"In unknown file:\n"
+" 6 (_ #<procedure 7fe80e6e4de0 at guix/memoization.scm:17…> …)\n"
+"In guix/store.scm:\n"
+" 625:10 5 (call-with-store #<procedure 7fe80e714a60 at guix/impor…>)\n"
+"In guix/import/texlive.scm:\n"
+" 148:23 4 (_ #<store-connection 256.99 7fe811f3c960>)\n"
+"In guix/utils.scm:\n"
+" 664:8 3 (call-with-temporary-directory #<procedure 7fe80cac1b40…>)\n"
+"In guix/svn-download.scm:\n"
+" 160:14 2 (_ \"/tmp/guix-directory.WtLohP\")\n"
+"In guix/build/svn.scm:\n"
+" 39:2 1 (svn-fetch _ _ _ #:svn-command _ #:recursive? _ # _ # _)\n"
+"In guix/build/utils.scm:\n"
+" 652:6 0 (invoke _ . _)\n"
+"\n"
+"guix/build/utils.scm:652:6: In procedure invoke:\n"
+"Throw to key `srfi-34' with args `(#<condition &invoke-error [program: \"svn\" arguments: (\"export\" \"--non-interactive\" \"--trust-server-cert\" \"-r\" \"49435\" \"svn://www.tug.org/texlive/tags/texlive-2018.2/Master/texmf-dist/source/latex/fontspec\" \"/tmp/guix-directory.WtLohP\") exit-status: 1 term-signal: #f stop-signal: #f] 7fe80d229c80>)'.\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2020-02-14-guix-shebang.po b/locale/pt/LC_MESSAGES/_pastebins/2020-02-14-guix-shebang.po
index 4e971df..c5a1ded 100644
--- a/locale/pt/LC_MESSAGES/_pastebins/2020-02-14-guix-shebang.po
+++ b/locale/pt/LC_MESSAGES/_pastebins/2020-02-14-guix-shebang.po
@@ -8,3 +8,11 @@ msgid ""
"layout: pastebin\n"
"lang: en"
msgstr ""
+
+msgid ""
+"#!/usr/bin/env -S guix environment --ad-hoc bash -- bash\n"
+"set -Eeuo pipefail\n"
+"cd \"$(dirname \"${BASH_SOURCE[0]}\")\"\n"
+"\n"
+"pwd\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-08-12-simple-filename-timestamp.po b/locale/pt/LC_MESSAGES/_tils/2020-08-12-simple-filename-timestamp.po
index d28e48d..ed148ac 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-08-12-simple-filename-timestamp.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-08-12-simple-filename-timestamp.po
@@ -66,3 +66,15 @@ msgstr "ref: simple-filename-timestamp"
msgid "updated_at:"
msgstr "updated_at: 2020-09-04"
+
+msgid ""
+"./my-program.sh > my-program.$(date -I).log\n"
+"cp post-template.md _posts/$(date -I)-post-slug.md\n"
+msgstr ""
+
+msgid ""
+"# inside my-program.sh\n"
+"echo \"Program started at $(date -Is)\"\n"
+"# output is:\n"
+"# Program started at 2020-08-12T09:04:58-03:00\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-08-13-anchor-headers-and-code-lines-in-jekyll.po b/locale/pt/LC_MESSAGES/_tils/2020-08-13-anchor-headers-and-code-lines-in-jekyll.po
index e5902b5..a11e17c 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-08-13-anchor-headers-and-code-lines-in-jekyll.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-08-13-anchor-headers-and-code-lines-in-jekyll.po
@@ -102,3 +102,86 @@ msgstr ""
msgid "Happy writing :)"
msgstr ""
+
+msgid ""
+"Jekyll::Hooks.register :documents, :post_render do |doc|\n"
+" if doc.output_ext == \".html\"\n"
+" doc.output =\n"
+" doc.output.gsub(\n"
+" /<h([1-6])(.*?)id=\"([\\w-]+)\"(.*?)>(.*?)<\\/h[1-6]>/,\n"
+" '<a href=\"#\\3\"><h\\1\\2id=\"\\3\"\\4>\\5</h\\1></a>'\n"
+" )\n"
+" end\n"
+"end\n"
+msgstr ""
+
+msgid ""
+"...some unmodified text...\n"
+"<h2 id=\"my-header\">\n"
+" My header\n"
+"</h2>\n"
+"...more unmodified text...\n"
+msgstr ""
+
+msgid ""
+"...some unmodified text...\n"
+"<a href=\"#my-header\">\n"
+" <h2 id=\"my-header\">\n"
+" My header\n"
+" </h2>\n"
+"</a>\n"
+"...more unmodified text...\n"
+msgstr ""
+
+msgid ""
+"PREFIX = '<pre class=\"lineno\">'\n"
+"POSTFIX = '</pre>'\n"
+"Jekyll::Hooks.register :documents, :post_render do |doc|\n"
+" if doc.output_ext == \".html\"\n"
+" code_block_counter = 1\n"
+" doc.output = doc.output.gsub(/<pre class=\"lineno\">[\\n0-9]+<\\/pre>/) do |match|\n"
+" line_numbers = match\n"
+" .gsub(/<pre class=\"lineno\">([\\n0-9]+)<\\/pre>/, '\\1')\n"
+" .split(\"\\n\")\n"
+"\n"
+" anchored_line_numbers_array = line_numbers.map do |n|\n"
+" id = \"B#{code_block_counter}-L#{n}\"\n"
+" \"<a id=\\\"#{id}\\\" href=\\\"##{id}\\\">#{n}</a>\"\n"
+" end\n"
+" code_block_counter += 1\n"
+"\n"
+" PREFIX + anchored_line_numbers_array.join(\"\\n\") + POSTFIX\n"
+" end\n"
+" end\n"
+"end\n"
+msgstr ""
+
+msgid ""
+"kramdown:\n"
+" syntax_highlighter_opts:\n"
+" span:\n"
+" line_numbers: false\n"
+" block:\n"
+" line_numbers: true\n"
+msgstr ""
+
+msgid ""
+"...some unmodified text...\n"
+"<pre class=\"lineno\">1\n"
+"2\n"
+"3\n"
+"4\n"
+"5\n"
+"</pre>\n"
+"...more unmodified text...\n"
+msgstr ""
+
+msgid ""
+"...some unmodified text...\n"
+"<pre class=\"lineno\"><a id=\"B1-L1\" href=\"#B1-L1\">1</a>\n"
+"<a id=\"B1-L2\" href=\"#B1-L2\">2</a>\n"
+"<a id=\"B1-L3\" href=\"#B1-L3\">3</a>\n"
+"<a id=\"B1-L4\" href=\"#B1-L4\">4</a>\n"
+"<a id=\"B1-L5\" href=\"#B1-L5\">5</a></pre>\n"
+"...more unmodified text...\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.po b/locale/pt/LC_MESSAGES/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.po
index 5afa66e..da7b3ee 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.po
@@ -64,3 +64,35 @@ msgid ""
"[GIT: Checkout to a specific folder](https://stackoverflow.com/a/16493707) "
"(StackOverflow)"
msgstr ""
+
+msgid ""
+"git log\n"
+"# search for a the commit I'm looking for\n"
+"git show <my-commit>\n"
+"# see the diff for the commit\n"
+msgstr ""
+
+msgid ""
+"git clone <original-repo> /tmp/tmp-repo-clone\n"
+"cd /tmp-repo-clone\n"
+"git checkout <my-commit>\n"
+msgstr ""
+
+msgid ""
+"--work-tree=<path>\n"
+" Set the path to the working tree. It can be an absolute path or a path relative to the current working\n"
+" directory. This can also be controlled by setting the GIT_WORK_TREE environment variable and the\n"
+" core.worktree configuration variable (see core.worktree in git-config(1) for a more detailed\n"
+" discussion).\n"
+msgstr ""
+
+msgid ""
+"mkdir copy\n"
+"git --work-tree=copy/ checkout .\n"
+msgstr ""
+
+msgid "git --work-tree=<dir> checkout <my-commit> -- .\n"
+msgstr ""
+
+msgid "git --work-tree=<dir> checkout <my-commit> -- src/\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-08-16-search-in-git.po b/locale/pt/LC_MESSAGES/_tils/2020-08-16-search-in-git.po
index ded01f2..5668d46 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-08-16-search-in-git.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-08-16-search-in-git.po
@@ -50,3 +50,22 @@ msgid ""
"[0]: {% link _tils/2020-08-14-browse-a-git-repository-at-a-specific-"
"commit.md %}"
msgstr ""
+
+msgid ""
+"git show\n"
+"# shows the latest commit\n"
+"git show <commit>\n"
+"# shows an specific <commit>\n"
+"git show v1.2\n"
+"# shows commit tagged with v1.2\n"
+msgstr ""
+
+msgid "git log --grep='refactor'\n"
+msgstr ""
+
+msgid ""
+"git grep 'TODO'\n"
+"# search the repository for the \"TODO\" string\n"
+"git grep 'TODO' $(git rev-list --all)\n"
+"# search the whole history for \"TODO\" string\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-08-28-grep-online-repositories.po b/locale/pt/LC_MESSAGES/_tils/2020-08-28-grep-online-repositories.po
index 04c099f..483fc9a 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-08-28-grep-online-repositories.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-08-28-grep-online-repositories.po
@@ -86,3 +86,81 @@ msgstr ""
msgid "When no argument is provided, it prints the usage text:"
msgstr ""
+
+msgid ""
+"#!/usr/bin/env bash\n"
+"set -eu\n"
+"\n"
+"end=\"\\033[0m\"\n"
+"red=\"\\033[0;31m\"\n"
+"red() { echo -e \"${red}${1}${end}\"; }\n"
+"\n"
+"usage() {\n"
+" red \"Missing argument $1.\\n\"\n"
+" cat <<EOF\n"
+"Usage:\n"
+" $0 <REGEX_PATTERN> <REPOSITORY_URL>\n"
+"\n"
+" Arguments:\n"
+" REGEX_PATTERN Regular expression that \"git grep\" can search\n"
+" REPOSITORY_URL URL address that \"git clone\" can download the repository from\n"
+"\n"
+"Examples:\n"
+" Searching \"make get-git\" in cgit repository:\n"
+" git search 'make get-git' https://git.zx2c4.com/cgit/\n"
+" git search 'make get-git' https://git.zx2c4.com/cgit/ -- \\$(git rev-list --all)\n"
+"EOF\n"
+" exit 2\n"
+"}\n"
+"\n"
+"\n"
+"REGEX_PATTERN=\"${1:-}\"\n"
+"REPOSITORY_URL=\"${2:-}\"\n"
+"[[ -z \"${REGEX_PATTERN}\" ]] && usage 'REGEX_PATTERN'\n"
+"[[ -z \"${REPOSITORY_URL}\" ]] && usage 'REPOSITORY_URL'\n"
+"\n"
+"mkdir -p /tmp/git-search\n"
+"DIRNAME=\"$(echo \"${REPOSITORY_URL%/}\" | rev | cut -d/ -f1 | rev)\"\n"
+"if [[ ! -d \"/tmp/git-search/${DIRNAME}\" ]]; then\n"
+" git clone \"${REPOSITORY_URL}\" \"/tmp/git-search/${DIRNAME}\"\n"
+"fi\n"
+"pushd \"/tmp/git-search/${DIRNAME}\"\n"
+"\n"
+"shift 3 || shift 2 # when \"--\" is missing\n"
+"git grep \"${REGEX_PATTERN}\" \"${@}\"\n"
+msgstr ""
+
+msgid ""
+"$ git search 'make get-git' https://git.zx2c4.com/cgit/\n"
+"Clonage dans '/tmp/git-search/cgit'...\n"
+"remote: Enumerating objects: 542, done.\n"
+"remote: Counting objects: 100% (542/542), done.\n"
+"remote: Compressing objects: 100% (101/101), done.\n"
+"warning: object 51dd1eff1edc663674df9ab85d2786a40f7ae3a5: gitmodulesParse: could not parse gitmodules blob\n"
+"remote: Total 7063 (delta 496), reused 446 (delta 441), pack-reused 6521\n"
+"Réception d'objets: 100% (7063/7063), 8.69 Mio | 5.39 Mio/s, fait.\n"
+"Résolution des deltas: 100% (5047/5047), fait.\n"
+"/tmp/git-search/cgit ~/dev/libre/songbooks/docs\n"
+"README: $ make get-git\n"
+"\n"
+"$ git search 'make get-git' https://git.zx2c4.com/cgit/\n"
+"/tmp/git-search/cgit ~/dev/libre/songbooks/docs\n"
+"README: $ make get-git\n"
+msgstr ""
+
+msgid ""
+"$ git search\n"
+"Missing argument REGEX_PATTERN.\n"
+"\n"
+"Usage:\n"
+" /home/andreh/dev/libre/dotfiles/scripts/ad-hoc/git-search <REGEX_PATTERN> <REPOSITORY_URL>\n"
+"\n"
+" Arguments:\n"
+" REGEX_PATTERN Regular expression that \"git grep\" can search\n"
+" REPOSITORY_URL URL address that \"git clone\" can download the repository from\n"
+"\n"
+"Examples:\n"
+" Searching \"make get-git\" in cgit repository:\n"
+" git search 'make get-git' https://git.zx2c4.com/cgit/\n"
+" git search 'make get-git' https://git.zx2c4.com/cgit/ -- $(git rev-list --all)\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-09-04-send-emails-using-the-command-line-for-fun-and-profit.po b/locale/pt/LC_MESSAGES/_tils/2020-09-04-send-emails-using-the-command-line-for-fun-and-profit.po
index 7164578..1409e61 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-09-04-send-emails-using-the-command-line-for-fun-and-profit.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-09-04-send-emails-using-the-command-line-for-fun-and-profit.po
@@ -54,3 +54,45 @@ msgstr ""
msgid "Send yourself some emails to see it working!"
msgstr ""
+
+msgid ""
+"# file /etc/ssmtp/ssmtp.conf\n"
+"FromLineOverride=YES\n"
+"MailHub=smtp.gmail.com:587\n"
+"UseSTARTTLS=YES\n"
+"UseTLS=YES\n"
+"rewriteDomain=gmail.com\n"
+"root=username@gmail.com\n"
+"AuthUser=username\n"
+"AuthPass=password\n"
+msgstr ""
+
+msgid "echo body | mail -aFrom:email@example.com email@example.com -s subject\n"
+msgstr ""
+
+msgid ""
+"# report a backup cronjob, attaching logs\n"
+"set -e\n"
+"\n"
+"finish() {\n"
+" status=$?\n"
+" if [[ $status = 0 ]]; then\n"
+" STATUS=\"SUCCESS (status $status)\"\n"
+" else\n"
+" STATUS=\"FAILURE (status $status)\"\n"
+" fi\n"
+"\n"
+" mail user@example.com \\\n"
+" -s \"Backup job report on $(hostname): ${STATUS}\" \\\n"
+" --content-type 'text/plain; charset=utf-8' \\\n"
+" -A\"$LOG_FILE\" <<< 'The log report is in the attachment.'\n"
+"}\n"
+"trap finish EXIT\n"
+"\n"
+"do-long-backup-cmd-here\n"
+msgstr ""
+
+msgid ""
+"# share the output of a cmd with someone\n"
+"some-program | mail someone@example.com -s \"The weird logs that I was talking about\"\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.po b/locale/pt/LC_MESSAGES/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.po
index 9ffff93..2156000 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.po
@@ -105,3 +105,42 @@ msgstr ""
msgid "Check `git help request-pull` for more info."
msgstr ""
+
+msgid ""
+"$ git request-pull HEAD public-origin\n"
+"The following changes since commit 302c9f2f035c0360acd4e13142428c100a10d43f:\n"
+"\n"
+" db post: Add link to email exchange (2020-09-03 21:23:55 -0300)\n"
+"\n"
+"are available in the Git repository at:\n"
+"\n"
+" https://git.euandreh.xyz/website/\n"
+"\n"
+"for you to fetch changes up to 524c646cdac4153e54f2163e280176adbc4873fa:\n"
+"\n"
+" db post: better pinpoint sqlite unsuitability (2020-09-03 22:08:56 -0300)\n"
+"\n"
+"----------------------------------------------------------------\n"
+"EuAndreh (1):\n"
+" db post: better pinpoint sqlite unsuitability\n"
+"\n"
+" _posts/2020-08-31-the-database-i-wish-i-had.md | 12 ++++++------\n"
+" 1 file changed, 6 insertions(+), 6 deletions(-)\n"
+msgstr ""
+
+msgid "$ git remote add public-origin https://example.com/user/repo\n"
+msgstr ""
+
+msgid ""
+"# send a PR with your last commit to the author's email\n"
+"git request-pull HEAD public-origin | mail author@example.com -s \"PR: Add thing to repo\"\n"
+"\n"
+"# send a PR with your last 5 commits to the project's mailing\n"
+"# list, including the patch\n"
+"git request-pull HEAD~5 public-origin -p | \\\n"
+" mail list@example.com -s \"PR: Add another thing to repo\"\n"
+"\n"
+"# send every commit that is new in \"other-branch\"\n"
+"git request-pull master public-origin other-branch | \\\n"
+" mail list@example.com -s 'PR: All commits from my \"other-brach\"'\n"
+msgstr ""
diff --git a/locale/pt/LC_MESSAGES/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.po b/locale/pt/LC_MESSAGES/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.po
index 5aed337..93a61e6 100644
--- a/locale/pt/LC_MESSAGES/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.po
+++ b/locale/pt/LC_MESSAGES/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.po
@@ -37,3 +37,9 @@ msgid ""
"commit.md %} [git-til-2]: {% link _tils/2020-08-16-search-in-git.md %} [git-"
"til-3]: {% link _tils/2020-08-28-grep-online-repositories.md %}"
msgstr ""
+
+msgid "git log -- *pattern*\n"
+msgstr ""
+
+msgid "git log -p -- **/*pattern*\n"
+msgstr ""