Skip to content

chore(deps): update module golang.org/x/crypto to v0.52.0 [security] (main)#998

Merged
jbw976 merged 2 commits into
mainfrom
renovate/main-go-golang.org-x-crypto-vulnerability
May 22, 2026
Merged

chore(deps): update module golang.org/x/crypto to v0.52.0 [security] (main)#998
jbw976 merged 2 commits into
mainfrom
renovate/main-go-golang.org-x-crypto-vulnerability

Conversation

@crossplane-renovate
Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
golang.org/x/crypto v0.50.0v0.52.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Invoking key constraints not enforced in golang.org/x/crypto/ssh/agent

CVE-2026-39833 / GO-2026-5005

More information

Details

The in-memory keyring returned by NewKeyring() silently accepted keys with the ConfirmBeforeUse constraint but never enforced it. The key would sign without any confirmation prompt, with no indication to the caller that the constraint was not in effect. NewKeyring() now returns an error when unsupported constraints are requested.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking agent constraints dropped when forwarding keys in golang.org/x/crypto/ssh/agent

CVE-2026-39832 / GO-2026-5006

More information

Details

When adding a key to a remote agent constraint extensions such as restrict-destination-v00@​openssh.com were not serialized in the request. Destination restrictions were silently stripped when forwarding keys, allowing unrestricted use of the key on the remote host. The client now serializes all constraint extensions. Additionally, the in-memory keyring returned by NewKeyring() now rejects keys with unsupported constraint extensions instead of silently ignoring them.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking byte arithmetic causes underflow and panic in golang.org/x/crypto/ssh

CVE-2026-46597 / GO-2026-5013

More information

Details

An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking bypass of certificate restrictions in golang.org/x/crypto/ssh

CVE-2026-39828 / GO-2026-5014

More information

Details

When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded. Returning non-nil Permissions with PartialSuccessError now results in a connection error.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking server panic during CheckHostKey/Authenticate in golang.org/x/crypto/ssh

CVE-2026-39835 / GO-2026-5015

More information

Details

SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate. CertChecker now returns an error instead of panicking when these callbacks are nil.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking memory leak when rejecting channels can lead to DoS in golang.org/x/crypto/ssh

CVE-2026-39827 / GO-2026-5016

More information

Details

An authenticated SSH client that repeatedly opened channels which were rejected by the server caused unbounded memory growth, eventually crashing the server process and affecting all connected users. Rejected channels are now properly removed from the connection's internal state and released for garbage collection.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking client can cause server deadlock on unexpected responses in golang.org/x/crypto/ssh

CVE-2026-39830 / GO-2026-5017

More information

Details

A malicious SSH peer could send unsolicited global request responses to fill an internal buffer, blocking the connection's read loop. The blocked goroutine could not be released by calling Close(), resulting in a resource leak per connection. Unsolicited global responses are now discarded.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking pathological RSA/DSA parameters may cause DoS in golang.org/x/crypto/ssh

CVE-2026-39829 / GO-2026-5018

More information

Details

The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification. This could be triggered by unauthenticated clients during public key authentication. RSA moduli are now limited to 8192 bits, and DSA parameters are validated per FIPS 186-2.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking bypass of FIDO/U2F security keys physical interaction in golang.org/x/crypto/ssh

CVE-2026-39831 / GO-2026-5019

More information

Details

The Verify() method for FIDO/U2F security key types (sk-ecdsa-sha2-nistp256@​openssh.com, sk-ssh-ed25519@​openssh.com) did not check the User Presence flag. Signatures generated without physical touch were accepted, allowing unattended use of a hardware security key. To restore the previous behavior, return a "no-touch-required" extension in Permissions.Extensions from PublicKeyCallback.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking infinite loop on large channel writes in golang.org/x/crypto/ssh

CVE-2026-39834 / GO-2026-5020

More information

Details

When writing data larger than 4GB in a single Write call on an SSH channel, an integer overflow in the internal payload size calculation caused the write loop to spin indefinitely, sending empty packets without making progress. The size comparison now uses int64 to prevent truncation.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking auth bypass via unenforced @​revoked status in golang.org/x/crypto/ssh/knownhosts

CVE-2026-42508 / GO-2026-5021

More information

Details

Previously, a revoked 'SignatureKey' belonging to a CA was not correctly checked for revocation. Now, both the 'key' and 'key.SignatureKey' are checked for @​revoked.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking VerifiedPublicKeyCallback permissions skip enforcement in golang.org/x/crypto/ssh

CVE-2026-46595 / GO-2026-5023

More information

Details

Previously, CVE-2024-45337 fixed an authorization bypass for misused ssh server configurations; if any other type of callback is passed other than public key, then the source-address validation would be skipped.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Invoking pathological inputs can lead to client panic in golang.org/x/crypto/ssh/agent

CVE-2026-46598 / GO-2026-5033

More information

Details

For certain crafted inputs, a 'ed25519.PrivateKey' was created by casting malformed wire bytes, leading to a panic when used.

Severity

Unknown

References

This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • ""
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@crossplane-renovate crossplane-renovate Bot requested a review from a team as a code owner May 22, 2026 09:06
@crossplane-renovate crossplane-renovate Bot requested a review from jbw976 May 22, 2026 09:06
@crossplane-renovate
Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.mod
Command failed: nix run .#tidy
warning: Git tree '/tmp/renovate/repos/github/crossplane/crossplane-runtime' is dirty
copying path '/nix/store/vl17kg85iryyjyf114vkqzskn7s9d5x5-source' from 'https://cache.nixos.org'...
copying path '/nix/store/f9zw9nsp96n5zlfr2cwl8msrd1mfbzm1-source' from 'https://cache.nixos.org'...
these 11 derivations will be built:
  /nix/store/00lsg5l8zrxn7p14gdf35gncjydqrizx-mod_v0.30.0.drv
  /nix/store/0g4vjxcxvha1fmixmcbf8rjykvmwqbxb-cobra_v1.10.1.drv
  /nix/store/4cmv1749h92w06h37bx108yz27c3xj18-gomod2nix-symlink.drv
  /nix/store/5m2zcmihhs3kxgdcyphppgcmmh803216-pflag_v1.0.9.drv
  /nix/store/m2x0b16cg5xcmbmxj6d0ycxwil2rfcq0-toml_v1.5.0.drv
  /nix/store/w3a1pg8h8sh00l4736zd68pl87zann4x-logrus_v1.9.3.drv
  /nix/store/ymxf3cijg6c75xgh7jdqnsd23klzvq5c-vcs_v0.1.0-deprecated.drv
  /nix/store/r5yps6c55p9dsmrvc6v5w5lv58i8xz2a-vendor-env.drv
  /nix/store/38bxlsh1f4q6gvvbin8gzk253fqcxh1b-go-cache-env.drv
  /nix/store/s8dl1zgbffg94y31h5vsrzy8d1b0h676-gomod2nix-dev.drv
  /nix/store/jnb045kyxsc1pzz55rxsil4w516al708-crossplane-runtime-tidy.drv
these 147 paths will be fetched (199.73 MiB download, 914.73 MiB unpacked):
  /nix/store/pzppwg9h9prxwrsf09fhgy4niqfnar6x-ShellCheck-0.11.0
  /nix/store/1m2538ssahl82arv04ix6pb2slwvr9c8-acl-2.3.2
  /nix/store/nzc8kr9n8n7q5vhy21zd7h75pxc13xnj-attr-2.5.2
  /nix/store/j8645yndikbrvn292zgvyv64xrrmwdcb-bash-5.3p3
  /nix/store/v8sa6r6q037ihghxfbwzjj4p59v2x0pv-bash-5.3p9
  /nix/store/f43k3lffqlz3n864inxz8zf28jvks1q6-bash-interactive-5.3p3
  /nix/store/v9zpzmigqkcjrw1jpf0zjc49y47cm55s-binutils-2.44
  /nix/store/b29d2ccbr6qycgkc4nl7zg2w7kfg31l5-binutils-2.44-lib
  /nix/store/4dh4138m8gbp56kh63j2pwgsfhf5l8v7-binutils-wrapper-2.44
  /nix/store/zhgf7y30am36zsc3kpr756v18jp3lwf0-brotli-1.1.0-lib
  /nix/store/f0rzmqp8qmlrpsnm1jp6hgh4f7030fsa-bzip2-1.0.8
  /nix/store/2xq4b1wjl6yklsqs86mf95lg9j8mbxvl-bzip2-1.0.8-bin
  /nix/store/iiishysy5bzkjrawxl4rld1s04qj0k0c-coreutils-9.8
  /nix/store/p7armmn3dmsbjk0wap587d9y58yc7v08-curl-8.17.0
  /nix/store/s90dx4anzn7vkmzl28hx60x7yzg305ys-die-hook
  /nix/store/7ylvy12ylwy8wxya9i2ly8qkhiz7173r-diffutils-3.12
  /nix/store/p0ib2l9pmw272c9lhyljix1r5b5a9w4v-ed-1.22.2
  /nix/store/v6v4r40nfy7inyr36yckidhi6ngh0k6p-elfutils-0.194
  /nix/store/h3ym1djd09qj69rp1856j1wkm11s7sis-expand-response-params
  /nix/store/8hsj833zsm1bxhg49kykya3gn6gpp8jg-expat-2.7.3
  /nix/store/30k6wlj854gb3rw7ny2rj3fixn8xrx6p-file-5.45
  /nix/store/6hcyzg88adcz37hn5pslwb06ck6pnq07-findutils-4.10.0
  /nix/store/gh0ijwnyv6csn59yars8z8kxbnd31y8f-gawk-5.3.2
  /nix/store/m1k4nxs8r0fl0pjxqp5n37vxgms7gdlb-gcc-14.3.0
  /nix/store/gnpwfj9gpk8ll7dhf65a6r5gjbs4qbap-gcc-14.3.0-lib
  /nix/store/n600a20z97mhhdnry40lp47nmnv16py5-gcc-14.3.0-libgcc
  /nix/store/myvv172x2am72534zgn9wx0qp5amq6a8-gcc-wrapper-14.3.0
  /nix/store/znzrrwird7n8vkapi0rp4acv27j3ky01-gdbm-1.26-lib
  /nix/store/1cjh3hx47dms7pakjc762brbgi53adjr-gettext-0.25.1
  /nix/store/y7kk3dj7wlls924zlvpwmm13gskfw1hk-git-2.51.2
  /nix/store/4jy70cipcch853qv2saq4g6gqacmk10p-git-2.51.2-doc
  /nix/store/wqfs0wh0wp6vdcbbck3wzk5v15qy17m7-glibc-2.40-66
  /nix/store/ijmp8r14ivvzk5r95lwx49bbv089003g-glibc-2.40-66-bin
  /nix/store/k1dm6p29kx4x6zrirfq0cyngixl4q20n-glibc-2.40-66-dev
  /nix/store/jms7zxzm7w1whczwny5m3gkgdjghmi2r-glibc-2.42-51
  /nix/store/dj87i8i44mg001c2fnsd3968gc95j3bg-gmp-6.3.0
  /nix/store/64smirwq99rm5pha7jadx23gixxg53hr-gmp-with-cxx-6.3.0
  /nix/store/z658zzyxfc8106bjl5svssvsjvk513yj-gmp-with-cxx-6.3.0
  /nix/store/yhwnzyhfqd9ficmxmbbryp2s8ymkzmdf-gnu-config-2024-01-01
  /nix/store/737jwbhw8ji13x9s88z3wpp8pxaqla92-gnugrep-3.12
  /nix/store/bw02qy5hlr6a12p5f2apkk79204n20yh-gnumake-4.4.1
  /nix/store/rm3yhwgahfrmshmcrv6cr28x4rz7881s-gnused-4.9
  /nix/store/l5ibq1yp8m7jibzgqbmpc46hkcnvv8fq-gnutar-1.35
  /nix/store/2k5y0fw56cc0zdzqa9a666xayankb39x-go-1.25.9
  /nix/store/ka9h8ql98mvldjnvv5jv1bgd00234r66-go-nix_v0.0.0-20220612195009-5f5614f7ca47
  /nix/store/kzq3m9g2a72p3l46r829lp8hyr3z52v1-goBuildHook
  /nix/store/9kyw5ja104cy7izdvn86wk16ab6gbjlb-goCheckHook
  /nix/store/c8yl9w43d7nkir8flcnh51crf59bssp5-goConfigHook
  /nix/store/s094hdqs7rpm5k0s5yqmsjqnsikmpqrc-goInstallHook
  /nix/store/0hq8fc3ihp7clficpl72lxybfb23qvfc-gzip-1.14
  /nix/store/2ly61i1c0ipwq73w2102lr6px5mlfsjb-iana-etc-20251215
  /nix/store/sj8rkv45ilfpg77xa8vv4i55z5ip1795-install-shell-files
  /nix/store/g2lakh6y8rcv9hh2mslld6p9fca1xbq7-isl-0.20
  /nix/store/g70a70r42zrg25rsbj8lgjrbf51masdl-jq-1.8.1
  /nix/store/mqc4cswvpmrjvnnmi9zrys817wwvrblr-jq-1.8.1-bin
  /nix/store/h7nlcg9gijz5rh8xny7a21sxms7hgifh-jq-1.8.1-dev
  /nix/store/9m1bfv4qbxcwx8snkffxpnk3glbaf0x9-json-c-0.18
  /nix/store/sv2j8x1n1hn3wp7snjygmcl3hfa6r7pf-keyutils-1.6.3-lib
  /nix/store/m6c6mzcdzvlds090mjhzvqs25h1s75gh-krb5-1.22.1-lib
  /nix/store/c86nvwib4x4w4lkd3qw2aw40a354b6yd-libffi-3.5.2
  /nix/store/1ga782ml07vy0h503ac4cin0h8d7q6yh-libidn2-2.3.8
  /nix/store/hxcmad417fd8ql9ylx96xpak7da06yiv-libidn2-2.3.8
  /nix/store/5lm3knvzk8xci9f6xn6v6agwzhw3vckc-libmpc-1.3.1
  /nix/store/b38hlmjbl9kalssgghh2m0zxngjymi31-libpsl-0.21.5
  /nix/store/g9h09q6k6nwgr8nddl08xdvg4p6iin3i-libssh2-1.11.1
  /nix/store/3rkccxj7vi0p2a0d48c4a4z2vv2cni88-libunistring-1.4.1
  /nix/store/p7jg95rzvfalb95k3mskk0jqxc9d724n-libunistring-1.4.1
  /nix/store/l1nzbbdjyv0b0glby3x1cmlm4sxgqhh3-libxcrypt-4.5.2
  /nix/store/7iwv8dcgsjmkrnn752hnfdxh3f7wahmd-linux-headers-6.16.7
  /nix/store/1yjnhsvi7qfsq7q13wpsb9xbh15kzfpn-lz4-1.10.0-lib
  /nix/store/a6kd5v5x97jnyyzbmiild0m1ikn5yfmg-mailcap-2.1.54
  /nix/store/m3954qff15v7z1l6lpyqf8v2h47c7hv2-mailcap-2.1.54
  /nix/store/n19a2dj3rj2f1jfysakq6qrzjlidx3jf-make-shell-wrapper-hook
  /nix/store/kac94rfhyg8qinvzj14hyzbn69wvc55p-mousetrap_v1.1.0
  /nix/store/cwnb9q1xpw5rzss11pwjlz65jpl6m41d-mpdecimal-4.0.1
  /nix/store/2pk46ak49mz2fi7wj2xzbf391dg2i5bf-mpfr-4.2.2
  /nix/store/kpi3v5fl8hlgy5lagjvn6ayq78mla49k-ncurses-6.5
  /nix/store/p1kk43gcgrrhhz58nkpy84hjrjgwdg7a-nghttp2-1.67.1-lib
  /nix/store/b506k5g7g91zxzzhd7kcq1fhyh93nzn0-nghttp3-1.12.0
  /nix/store/a5lq0gs8rh2crrfdgji2a41287kanxik-ngtcp2-1.17.0
  /nix/store/gllry7rx4yrx76ajx25k3ap4pd5i57fy-nss-cacert-3.117
  /nix/store/n8f6dc226f3z0yz8b7yh2ksi5gx70mha-numactl-2.0.18
  /nix/store/0lr7r0ava50g2n90gzqy2cxwdgfzs9zj-oniguruma-6.9.10-lib
  /nix/store/2p91cylbmdv4si5j818pnsg6qcbgin72-openssl-3.6.0
  /nix/store/mv1hg02434l28cf4vwg4qbrz2h967ms8-patch-2.8
  /nix/store/axrdk0z4gwqv9kpql2lgqq42l37m3yd1-patchelf-0.15.2
  /nix/store/qwm613va719a5ds2bvjapv0bv0w6a0xl-pcre2-10.46
  /nix/store/j1scam1h5xmpnsn5ss02nbyhhyc7hwq3-perl-5.40.0
  /nix/store/bk8in0lhsqpmbz4b63dzgi2dy94rdi38-perl5.40.0-Authen-SASL-2.1900
  /nix/store/vfdkka00rpkir9r8548dd4qfvwr9ykf7-perl5.40.0-CGI-4.59
  /nix/store/y3whagm8jkspqwqw7l39nw9w99svclvb-perl5.40.0-CGI-Fast-2.16
  /nix/store/9lwcfwglw4883202l1z0mpg01vn68yq1-perl5.40.0-Clone-0.46
  /nix/store/k8av896majqjh5mff2zj0rlr874hk5k6-perl5.40.0-Crypt-URandom-0.54
  /nix/store/gnb3bxgj1l6pl0x9rvsv0mxzmp6scn2c-perl5.40.0-Digest-HMAC-1.05
  /nix/store/9jc0q51ihkx0x3f38skvdndywpql9rhs-perl5.40.0-Encode-Locale-1.05
  /nix/store/s65cfmzydb338mwxk0fgyzbwvy4d2ii6-perl5.40.0-FCGI-0.82
  /nix/store/833samli2a42i58x8jc53zvks0lh5z0n-perl5.40.0-FCGI-ProcManager-0.28
  /nix/store/n9ffj9vkv6dbnw1zv846q19kg4kcwwyp-perl5.40.0-File-Listing-6.16
  /nix/store/dlsn1gy2qcjqpl4b2x7w4jv0vscq74dh-perl5.40.0-HTML-Parser-3.81
  /nix/store/q1f7q5ypgg8d33mjc0l9pw5ba6ik306m-perl5.40.0-HTML-TagCloud-0.38
  /nix/store/38d4flhzyil3n6qvba3vr14aqc5dj8ya-perl5.40.0-HTML-Tagset-3.20
  /nix/store/8jkahgsnwdfdjzq8bdrwg8smwn3ib936-perl5.40.0-HTTP-CookieJar-0.014
  /nix/store/x8iq26xapymv61m22z3gy30r9nsxf67j-perl5.40.0-HTTP-Cookies-6.10
  /nix/store/1snnpj0zfs5i55m7qcmxqq2qprbp27q9-perl5.40.0-HTTP-Daemon-6.16
  /nix/store/kri8myrh6swh9zfa0yhl54jvs53sxmdi-perl5.40.0-HTTP-Date-6.06
  /nix/store/k69ffbqf29c258dvmz1cfjd55nhlwzca-perl5.40.0-HTTP-Message-6.45
  /nix/store/msnkpmlsj0dgis8nswvy5p24zzbj6gir-perl5.40.0-HTTP-Negotiate-6.01
  /nix/store/jbm85nvpryrx7k5jkd48r0gvc9g2ywks-perl5.40.0-IO-HTML-1.004
  /nix/store/s0x1r9fbsad4fhq4spqv1lxdh35hf5j1-perl5.40.0-IO-Socket-SSL-2.083
  /nix/store/3vwg3q66s81yvy2zjphr9spg8hq88jjs-perl5.40.0-LWP-MediaTypes-6.04
  /nix/store/s1qi4d82n2pxj0f84ylwxc3nrw713cjl-perl5.40.0-Mozilla-CA-20230821
  /nix/store/nv1c5c5kak5ahkrbzfqglrdnjj3ccdsr-perl5.40.0-Net-HTTP-6.23
  /nix/store/5klr7gm2nl4f0v1sa0sxi4i7ldwgwz5m-perl5.40.0-Net-SMTP-SSL-1.04
  /nix/store/2zlk3hh9fs2fdvr8jd8i1r2bm0i4vnh0-perl5.40.0-Net-SSLeay-1.92
  /nix/store/pk9r7hmv9vprdk3cshn5g5jmixr5bn6p-perl5.40.0-TermReadKey-2.38
  /nix/store/kfgs1i8qgqfgimk85cddk7siynj44a1p-perl5.40.0-Test-Fatal-0.017
  /nix/store/vki58ik9gdh0nq08pdph20iif25b2074-perl5.40.0-Test-Needs-0.002010
  /nix/store/5mjbm2hgbmdyhzmyflc34qqar1lnfiml-perl5.40.0-Test-RequiresInternet-0.05
  /nix/store/pc4v3zfaydsbky5j7ch0xl7y5srs4n03-perl5.40.0-TimeDate-2.33
  /nix/store/88q52yihrmxljqivqsgw1pxa4kb449cw-perl5.40.0-Try-Tiny-0.31
  /nix/store/dymwahgl59kvnghc7ci1jc77x3xmzvk0-perl5.40.0-URI-5.21
  /nix/store/p4iyxy5dy3s38phvcj4ir67mwhsixqzy-perl5.40.0-WWW-RobotRules-6.02
  /nix/store/68x1r7cn7l836xs9gzbrrq594wfqs46a-perl5.40.0-libnet-3.15
  /nix/store/816c3vmpplrqfmsmmwzqkljgj53mdxbs-perl5.40.0-libwww-perl-6.72
  /nix/store/s5r2xgg3qbkn0jk11syl6g1idw6524hw-popt-1.19
  /nix/store/81cd3pck3chqgancpb90vf63d5njr1w9-publicsuffix-list-0-unstable-2025-10-08
  /nix/store/cdaifv92znxy5ai4sawricjl0p5b9sgf-python3-3.13.11
  /nix/store/gwyr8gxfj0rm2hnvx47zlfy5xvlwsd05-readline-8.3p1
  /nix/store/ksw40c0c8b1yd5r8skdv9dr4c513jgix-rsync-3.4.1
  /nix/store/8bh8g107igzm703ib6vhslnagm1j47km-sqlite-3.50.4
  /nix/store/3jhc9z1kfs7pvkvgfgqqdprmd5fns0y4-stdenv-linux
  /nix/store/45wimpzmh2rkgagv1r42q9v73cpdfr58-stdenv-linux
  /nix/store/45gvmcyr3al02vwd8m0v125lwpj26czz-sys_v0.14.0
  /nix/store/xh1ff9c9c0yv1wxrwa5gnfp092yagh7v-tzdata-2025b
  /nix/store/h15ranlgwagilr6ajd7ich6d896kf9zd-tzdata-2026a
  /nix/store/wy55v0yk13h90gcv0fffrisks128ziz1-update-autotools-gnu-config-scripts-hook
  /nix/store/hdy5qs834h84dhb85hxjss6mgqjjbx11-util-linux-minimal-2.41.3-lib
  /nix/store/2a3izq4hffdd9r9gb2w6q2ibdc86kss6-xgcc-14.3.0-libgcc
  /nix/store/vpxblivamvic1p5r5zny934jvg33m50r-xgcc-15.2.0-libgcc
  /nix/store/zy26n1l1g3kw7b8gfzcjwb7nbkvbcs2z-xxHash-0.8.3
  /nix/store/hd4ff821999qr8iazn8fb42y0zzaarfp-xz-5.8.1
  /nix/store/gq3243j1d8y6qgpcrgbbb0vxkbxzs0ix-xz-5.8.1-bin
  /nix/store/nymigg679qmp97i3gilldx27p3ylfqy9-zlib-1.3.1
  /nix/store/vghmj3qz3jl97blhbpmsqn2j6vslb82p-zlib-ng-2.2.5
  /nix/store/fh6cy6kbmm2f9g2ghd5kqjk74blynvmf-zstd-1.5.7
  /nix/store/4x5g4v2pkrdcav1lq70x61z8hvfkjsx2-zstd-1.5.7-bin
  /nix/store/aqk9bbbi0kdrfcn8n1h85mj5di7l2gx8-zstd-1.5.7-dev
copying path '/nix/store/2ly61i1c0ipwq73w2102lr6px5mlfsjb-iana-etc-20251215' from 'https://cache.nixos.org'...
copying path '/nix/store/a6kd5v5x97jnyyzbmiild0m1ikn5yfmg-mailcap-2.1.54' from 'https://cache.nixos.org'...
copying path '/nix/store/h15ranlgwagilr6ajd7ich6d896kf9zd-tzdata-2026a' from 'https://cache.nixos.org'...
copying path '/nix/store/yhwnzyhfqd9ficmxmbbryp2s8ymkzmdf-gnu-config-2024-01-01' from 'https://cache.nixos.org'...
copying path '/nix/store/2a3izq4hffdd9r9gb2w6q2ibdc86kss6-xgcc-14.3.0-libgcc' from 'https://cache.nixos.org'...
copying path '/nix/store/s094hdqs7rpm5k0s5yqmsjqnsikmpqrc-goInstallHook' from 'https://crossplane.cachix.org'...
copying path '/nix/store/n600a20z97mhhdnry40lp47nmnv16py5-gcc-14.3.0-libgcc' from 'https://cache.nixos.org'...
copying path '/nix/store/9kyw5ja104cy7izdvn86wk16ab6gbjlb-goCheckHook' from 'https://crossplane.cachix.org'...
copying path '/nix/store/vpxblivamvic1p5r5zny934jvg33m50r-xgcc-15.2.0-libgcc' from 'https://cache.nixos.org'...
copying path '/nix/store/sj8rkv45ilfpg77xa8vv4i55z5ip1795-install-shell-files' from 'https://cache.nixos.org'...
copying path '/nix/store/3rkccxj7vi0p2a0d48c4a4z2vv2cni88-libunistring-1.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/p7jg95rzvfalb95k3mskk0jqxc9d724n-libunistring-1.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/kzq3m9g2a72p3l46r829lp8hyr3z52v1-goBuildHook' from 'https://crossplane.cachix.org'...
copying path '/nix/store/s90dx4anzn7vkmzl28hx60x7yzg305ys-die-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/81cd3pck3chqgancpb90vf63d5njr1w9-publicsuffix-list-0-unstable-2025-10-08' from 'https://cache.nixos.org'...
copying path '/nix/store/ka9h8ql98mvldjnvv5jv1bgd00234r66-go-nix_v0.0.0-20220612195009-5f5614f7ca47' from 'https://crossplane.cachix.org'...
copying path '/nix/store/4jy70cipcch853qv2saq4g6gqacmk10p-git-2.51.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7iwv8dcgsjmkrnn752hnfdxh3f7wahmd-linux-headers-6.16.7' from 'https://cache.nixos.org'...
copying path '/nix/store/kac94rfhyg8qinvzj14hyzbn69wvc55p-mousetrap_v1.1.0' from 'https://crossplane.cachix.org'...
copying path '/nix/store/gnb3bxgj1l6pl0x9rvsv0mxzmp6scn2c-perl5.40.0-Digest-HMAC-1.05' from 'https://cache.nixos.org'...
copying path '/nix/store/9jc0q51ihkx0x3f38skvdndywpql9rhs-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'...
copying path '/nix/store/q1f7q5ypgg8d33mjc0l9pw5ba6ik306m-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'...
copying path '/nix/store/833samli2a42i58x8jc53zvks0lh5z0n-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'...
copying path '/nix/store/gllry7rx4yrx76ajx25k3ap4pd5i57fy-nss-cacert-3.117' from 'https://cache.nixos.org'...
copying path '/nix/store/m3954qff15v7z1l6lpyqf8v2h47c7hv2-mailcap-2.1.54' from 'https://cache.nixos.org'...
copying path '/nix/store/38d4flhzyil3n6qvba3vr14aqc5dj8ya-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'...
copying path '/nix/store/jbm85nvpryrx7k5jkd48r0gvc9g2ywks-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'...
copying path '/nix/store/3vwg3q66s81yvy2zjphr9spg8hq88jjs-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'...
copying path '/nix/store/s1qi4d82n2pxj0f84ylwxc3nrw713cjl-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'...
copying path '/nix/store/hxcmad417fd8ql9ylx96xpak7da06yiv-libidn2-2.3.8' from 'https://cache.nixos.org'...
copying path '/nix/store/vki58ik9gdh0nq08pdph20iif25b2074-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'...
copying path '/nix/store/88q52yihrmxljqivqsgw1pxa4kb449cw-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'...
copying path '/nix/store/dymwahgl59kvnghc7ci1jc77x3xmzvk0-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'...
copying path '/nix/store/68x1r7cn7l836xs9gzbrrq594wfqs46a-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'...
copying path '/nix/store/1ga782ml07vy0h503ac4cin0h8d7q6yh-libidn2-2.3.8' from 'https://cache.nixos.org'...
copying path '/nix/store/5mjbm2hgbmdyhzmyflc34qqar1lnfiml-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'...
copying path '/nix/store/pc4v3zfaydsbky5j7ch0xl7y5srs4n03-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'...
copying path '/nix/store/45gvmcyr3al02vwd8m0v125lwpj26czz-sys_v0.14.0' from 'https://crossplane.cachix.org'...
copying path '/nix/store/xh1ff9c9c0yv1wxrwa5gnfp092yagh7v-tzdata-2025b' from 'https://cache.nixos.org'...
copying path '/nix/store/wy55v0yk13h90gcv0fffrisks128ziz1-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/kfgs1i8qgqfgimk85cddk7siynj44a1p-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'...
copying path '/nix/store/kri8myrh6swh9zfa0yhl54jvs53sxmdi-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'...
copying path '/nix/store/wqfs0wh0wp6vdcbbck3wzk5v15qy17m7-glibc-2.40-66' from 'https://cache.nixos.org'...
copying path '/nix/store/jms7zxzm7w1whczwny5m3gkgdjghmi2r-glibc-2.42-51' from 'https://cache.nixos.org'...
copying path '/nix/store/n9ffj9vkv6dbnw1zv846q19kg4kcwwyp-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'...
copying path '/nix/store/8jkahgsnwdfdjzq8bdrwg8smwn3ib936-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'...
copying path '/nix/store/nv1c5c5kak5ahkrbzfqglrdnjj3ccdsr-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'...
copying path '/nix/store/p4iyxy5dy3s38phvcj4ir67mwhsixqzy-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'...
copying path '/nix/store/nzc8kr9n8n7q5vhy21zd7h75pxc13xnj-attr-2.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/j8645yndikbrvn292zgvyv64xrrmwdcb-bash-5.3p3' from 'https://cache.nixos.org'...
copying path '/nix/store/zhgf7y30am36zsc3kpr756v18jp3lwf0-brotli-1.1.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/f0rzmqp8qmlrpsnm1jp6hgh4f7030fsa-bzip2-1.0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/p0ib2l9pmw272c9lhyljix1r5b5a9w4v-ed-1.22.2' from 'https://cache.nixos.org'...
copying path '/nix/store/gh0ijwnyv6csn59yars8z8kxbnd31y8f-gawk-5.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/h3ym1djd09qj69rp1856j1wkm11s7sis-expand-response-params' from 'https://cache.nixos.org'...
copying path '/nix/store/znzrrwird7n8vkapi0rp4acv27j3ky01-gdbm-1.26-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/gnpwfj9gpk8ll7dhf65a6r5gjbs4qbap-gcc-14.3.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/8hsj833zsm1bxhg49kykya3gn6gpp8jg-expat-2.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/ijmp8r14ivvzk5r95lwx49bbv089003g-glibc-2.40-66-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/dj87i8i44mg001c2fnsd3968gc95j3bg-gmp-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/bw02qy5hlr6a12p5f2apkk79204n20yh-gnumake-4.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/rm3yhwgahfrmshmcrv6cr28x4rz7881s-gnused-4.9' from 'https://cache.nixos.org'...
copying path '/nix/store/1m2538ssahl82arv04ix6pb2slwvr9c8-acl-2.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/sv2j8x1n1hn3wp7snjygmcl3hfa6r7pf-keyutils-1.6.3-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/9m1bfv4qbxcwx8snkffxpnk3glbaf0x9-json-c-0.18' from 'https://cache.nixos.org'...
copying path '/nix/store/c86nvwib4x4w4lkd3qw2aw40a354b6yd-libffi-3.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2xq4b1wjl6yklsqs86mf95lg9j8mbxvl-bzip2-1.0.8-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/b38hlmjbl9kalssgghh2m0zxngjymi31-libpsl-0.21.5' from 'https://cache.nixos.org'...
copying path '/nix/store/l5ibq1yp8m7jibzgqbmpc46hkcnvv8fq-gnutar-1.35' from 'https://cache.nixos.org'...
copying path '/nix/store/l1nzbbdjyv0b0glby3x1cmlm4sxgqhh3-libxcrypt-4.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/1yjnhsvi7qfsq7q13wpsb9xbh15kzfpn-lz4-1.10.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/cwnb9q1xpw5rzss11pwjlz65jpl6m41d-mpdecimal-4.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/kpi3v5fl8hlgy5lagjvn6ayq78mla49k-ncurses-6.5' from 'https://cache.nixos.org'...
copying path '/nix/store/p1kk43gcgrrhhz58nkpy84hjrjgwdg7a-nghttp2-1.67.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/b506k5g7g91zxzzhd7kcq1fhyh93nzn0-nghttp3-1.12.0' from 'https://cache.nixos.org'...
copying path '/nix/store/0lr7r0ava50g2n90gzqy2cxwdgfzs9zj-oniguruma-6.9.10-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/2pk46ak49mz2fi7wj2xzbf391dg2i5bf-mpfr-4.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/g2lakh6y8rcv9hh2mslld6p9fca1xbq7-isl-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/2p91cylbmdv4si5j818pnsg6qcbgin72-openssl-3.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/mv1hg02434l28cf4vwg4qbrz2h967ms8-patch-2.8' from 'https://cache.nixos.org'...
copying path '/nix/store/qwm613va719a5ds2bvjapv0bv0w6a0xl-pcre2-10.46' from 'https://cache.nixos.org'...
copying path '/nix/store/9lwcfwglw4883202l1z0mpg01vn68yq1-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'...
copying path '/nix/store/0hq8fc3ihp7clficpl72lxybfb23qvfc-gzip-1.14' from 'https://cache.nixos.org'...
copying path '/nix/store/n19a2dj3rj2f1jfysakq6qrzjlidx3jf-make-shell-wrapper-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/k8av896majqjh5mff2zj0rlr874hk5k6-perl5.40.0-Crypt-URandom-0.54' from 'https://cache.nixos.org'...
copying path '/nix/store/g70a70r42zrg25rsbj8lgjrbf51masdl-jq-1.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/s65cfmzydb338mwxk0fgyzbwvy4d2ii6-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'...
copying path '/nix/store/pk9r7hmv9vprdk3cshn5g5jmixr5bn6p-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'...
copying path '/nix/store/s5r2xgg3qbkn0jk11syl6g1idw6524hw-popt-1.19' from 'https://cache.nixos.org'...
copying path '/nix/store/5lm3knvzk8xci9f6xn6v6agwzhw3vckc-libmpc-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/k1dm6p29kx4x6zrirfq0cyngixl4q20n-glibc-2.40-66-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/737jwbhw8ji13x9s88z3wpp8pxaqla92-gnugrep-3.12' from 'https://cache.nixos.org'...
copying path '/nix/store/hdy5qs834h84dhb85hxjss6mgqjjbx11-util-linux-minimal-2.41.3-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/v8sa6r6q037ihghxfbwzjj4p59v2x0pv-bash-5.3p9' from 'https://cache.nixos.org'...
copying path '/nix/store/zy26n1l1g3kw7b8gfzcjwb7nbkvbcs2z-xxHash-0.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/hd4ff821999qr8iazn8fb42y0zzaarfp-xz-5.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/nymigg679qmp97i3gilldx27p3ylfqy9-zlib-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bk8in0lhsqpmbz4b63dzgi2dy94rdi38-perl5.40.0-Authen-SASL-2.1900' from 'https://cache.nixos.org'...
copying path '/nix/store/k69ffbqf29c258dvmz1cfjd55nhlwzca-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'...
copying path '/nix/store/vghmj3qz3jl97blhbpmsqn2j6vslb82p-zlib-ng-2.2.5' from 'https://cache.nixos.org'...
copying path '/nix/store/mqc4cswvpmrjvnnmi9zrys817wwvrblr-jq-1.8.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/b29d2ccbr6qycgkc4nl7zg2w7kfg31l5-binutils-2.44-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/30k6wlj854gb3rw7ny2rj3fixn8xrx6p-file-5.45' from 'https://cache.nixos.org'...
copying path '/nix/store/8bh8g107igzm703ib6vhslnagm1j47km-sqlite-3.50.4' from 'https://cache.nixos.org'...
copying path '/nix/store/h7nlcg9gijz5rh8xny7a21sxms7hgifh-jq-1.8.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/x8iq26xapymv61m22z3gy30r9nsxf67j-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'...
copying path '/nix/store/1snnpj0zfs5i55m7qcmxqq2qprbp27q9-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'...
copying path '/nix/store/dlsn1gy2qcjqpl4b2x7w4jv0vscq74dh-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'...
copying path '/nix/store/msnkpmlsj0dgis8nswvy5p24zzbj6gir-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'...
copying path '/nix/store/vfdkka00rpkir9r8548dd4qfvwr9ykf7-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'...
copying path '/nix/store/1cjh3hx47dms7pakjc762brbgi53adjr-gettext-0.25.1' from 'https://cache.nixos.org'...
copying path '/nix/store/z658zzyxfc8106bjl5svssvsjvk513yj-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/axrdk0z4gwqv9kpql2lgqq42l37m3yd1-patchelf-0.15.2' from 'https://cache.nixos.org'...
copying path '/nix/store/64smirwq99rm5pha7jadx23gixxg53hr-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/n8f6dc226f3z0yz8b7yh2ksi5gx70mha-numactl-2.0.18' from 'https://cache.nixos.org'...
copying path '/nix/store/fh6cy6kbmm2f9g2ghd5kqjk74blynvmf-zstd-1.5.7' from 'https://cache.nixos.org'...
copying path '/nix/store/gq3243j1d8y6qgpcrgbbb0vxkbxzs0ix-xz-5.8.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/y3whagm8jkspqwqw7l39nw9w99svclvb-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'...
copying path '/nix/store/2k5y0fw56cc0zdzqa9a666xayankb39x-go-1.25.9' from 'https://cache.nixos.org'...
copying path '/nix/store/v9zpzmigqkcjrw1jpf0zjc49y47cm55s-binutils-2.44' from 'https://cache.nixos.org'...
copying path '/nix/store/m6c6mzcdzvlds090mjhzvqs25h1s75gh-krb5-1.22.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/g9h09q6k6nwgr8nddl08xdvg4p6iin3i-libssh2-1.11.1' from 'https://cache.nixos.org'...
copying path '/nix/store/a5lq0gs8rh2crrfdgji2a41287kanxik-ngtcp2-1.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2zlk3hh9fs2fdvr8jd8i1r2bm0i4vnh0-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'...
copying path '/nix/store/m1k4nxs8r0fl0pjxqp5n37vxgms7gdlb-gcc-14.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/gwyr8gxfj0rm2hnvx47zlfy5xvlwsd05-readline-8.3p1' from 'https://cache.nixos.org'...
copying path '/nix/store/iiishysy5bzkjrawxl4rld1s04qj0k0c-coreutils-9.8' from 'https://cache.nixos.org'...
copying path '/nix/store/cdaifv92znxy5ai4sawricjl0p5b9sgf-python3-3.13.11' from 'https://cache.nixos.org'...
copying path '/nix/store/f43k3lffqlz3n864inxz8zf28jvks1q6-bash-interactive-5.3p3' from 'https://cache.nixos.org'...
copying path '/nix/store/ksw40c0c8b1yd5r8skdv9dr4c513jgix-rsync-3.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4x5g4v2pkrdcav1lq70x61z8hvfkjsx2-zstd-1.5.7-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/s0x1r9fbsad4fhq4spqv1lxdh35hf5j1-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'...
copying path '/nix/store/p7armmn3dmsbjk0wap587d9y58yc7v08-curl-8.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/v6v4r40nfy7inyr36yckidhi6ngh0k6p-elfutils-0.194' from 'https://cache.nixos.org'...
copying path '/nix/store/aqk9bbbi0kdrfcn8n1h85mj5di7l2gx8-zstd-1.5.7-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/5klr7gm2nl4f0v1sa0sxi4i7ldwgwz5m-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'...
copying path '/nix/store/j1scam1h5xmpnsn5ss02nbyhhyc7hwq3-perl-5.40.0' from 'https://cache.nixos.org'...
copying path '/nix/store/7ylvy12ylwy8wxya9i2ly8qkhiz7173r-diffutils-3.12' from 'https://cache.nixos.org'...
copying path '/nix/store/4dh4138m8gbp56kh63j2pwgsfhf5l8v7-binutils-wrapper-2.44' from 'https://cache.nixos.org'...
copying path '/nix/store/6hcyzg88adcz37hn5pslwb06ck6pnq07-findutils-4.10.0' from 'https://cache.nixos.org'...
copying path '/nix/store/c8yl9w43d7nkir8flcnh51crf59bssp5-goConfigHook' from 'https://crossplane.cachix.org'...
copying path '/nix/store/3jhc9z1kfs7pvkvgfgqqdprmd5fns0y4-stdenv-linux' from 'https://cache.nixos.org'...
copying path '/nix/store/pzppwg9h9prxwrsf09fhgy4niqfnar6x-ShellCheck-0.11.0' from 'https://cache.nixos.org'...
copying path '/nix/store/816c3vmpplrqfmsmmwzqkljgj53mdxbs-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'...
building '/nix/store/4cmv1749h92w06h37bx108yz27c3xj18-gomod2nix-symlink.drv'...
copying path '/nix/store/y7kk3dj7wlls924zlvpwmm13gskfw1hk-git-2.51.2' from 'https://cache.nixos.org'...
copying path '/nix/store/myvv172x2am72534zgn9wx0qp5amq6a8-gcc-wrapper-14.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/45wimpzmh2rkgagv1r42q9v73cpdfr58-stdenv-linux' from 'https://cache.nixos.org'...
building '/nix/store/0g4vjxcxvha1fmixmcbf8rjykvmwqbxb-cobra_v1.10.1.drv'...
building '/nix/store/w3a1pg8h8sh00l4736zd68pl87zann4x-logrus_v1.9.3.drv'...
building '/nix/store/00lsg5l8zrxn7p14gdf35gncjydqrizx-mod_v0.30.0.drv'...
building '/nix/store/5m2zcmihhs3kxgdcyphppgcmmh803216-pflag_v1.0.9.drv'...
building '/nix/store/m2x0b16cg5xcmbmxj6d0ycxwil2rfcq0-toml_v1.5.0.drv'...
building '/nix/store/ymxf3cijg6c75xgh7jdqnsd23klzvq5c-vcs_v0.1.0-deprecated.drv'...
building '/nix/store/r5yps6c55p9dsmrvc6v5w5lv58i8xz2a-vendor-env.drv'...
building '/nix/store/38bxlsh1f4q6gvvbin8gzk253fqcxh1b-go-cache-env.drv'...
building '/nix/store/s8dl1zgbffg94y31h5vsrzy8d1b0h676-gomod2nix-dev.drv'...
error: home directory '/homeless-shelter' exists; please remove it to assure purity of builds without sandboxing

File name: go.mod
Command failed: nix run .#generate
warning: Git tree '/tmp/renovate/repos/github/crossplane/crossplane-runtime' is dirty
these 5 derivations will be built:
  /nix/store/acsd2c3764hxnybhilfnynaxz72s1xbg-buf-1.59.0.drv
  /nix/store/gf51h6ffx5bmbkkbgss0xxzvxhhn614i-controller-tools-0.19.0.drv
  /nix/store/qrm4fcig00pi8pwwbxy0r6am4dgnzhza-protoc-gen-go-grpc-1.5.1.drv
  /nix/store/rrc5b7cm2gcaqkkb14q3gmmpx40ili67-protoc-gen-go-1.36.10.drv
  /nix/store/2267vm4k3frck6bip3blkbw9far97zy7-crossplane-runtime-generate.drv
these 11 paths will be fetched (18.01 MiB download, 162.85 MiB unpacked):
  /nix/store/f95f0ac3kkwx84j4cq9wwvr6jzqbd7bz-abseil-cpp-20250814.1
  /nix/store/d850sg9hib1klbal2k0qvrw0l719jgla-buf-1.59.0-go-modules
  /nix/store/fx4rhmyfg42gz8h8f89bf7l3xyb53r21-controller-tools-0.19.0-go-modules
  /nix/store/l97p01mvlcgpg58b2ngvrc1a56nd8p32-gtest-1.17.0
  /nix/store/l2mzxnhw99wzb65kg3l0vv815bmzp3a8-protobuf-32.1
  /nix/store/bngcgjalhnd0x0krdqkcjw2k872jbbh9-protoc-gen-go-1.36.10-go-modules
  /nix/store/drgank82sh2drpjj4d16w8kv4b041wpd-protoc-gen-go-grpc-1.5.1-go-modules
  /nix/store/l78m8nmqsv45y5vfy019cij2ha0ifa80-source
  /nix/store/l8wx4vg8s8x0mrp53y68gqgadxls47yf-source
  /nix/store/p3hazp13a3lczky6nv57rrqh27fzg7pd-source
  /nix/store/v6ihrgfdlc14k5bxmim5v9vm778j4xnc-source
copying path '/nix/store/d850sg9hib1klbal2k0qvrw0l719jgla-buf-1.59.0-go-modules' from 'https://cache.nixos.org'...
copying path '/nix/store/fx4rhmyfg42gz8h8f89bf7l3xyb53r21-controller-tools-0.19.0-go-modules' from 'https://cache.nixos.org'...
copying path '/nix/store/bngcgjalhnd0x0krdqkcjw2k872jbbh9-protoc-gen-go-1.36.10-go-modules' from 'https://cache.nixos.org'...
copying path '/nix/store/drgank82sh2drpjj4d16w8kv4b041wpd-protoc-gen-go-grpc-1.5.1-go-modules' from 'https://cache.nixos.org'...
copying path '/nix/store/l78m8nmqsv45y5vfy019cij2ha0ifa80-source' from 'https://cache.nixos.org'...
copying path '/nix/store/l8wx4vg8s8x0mrp53y68gqgadxls47yf-source' from 'https://cache.nixos.org'...
copying path '/nix/store/p3hazp13a3lczky6nv57rrqh27fzg7pd-source' from 'https://cache.nixos.org'...
copying path '/nix/store/v6ihrgfdlc14k5bxmim5v9vm778j4xnc-source' from 'https://cache.nixos.org'...
copying path '/nix/store/l97p01mvlcgpg58b2ngvrc1a56nd8p32-gtest-1.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/f95f0ac3kkwx84j4cq9wwvr6jzqbd7bz-abseil-cpp-20250814.1' from 'https://cache.nixos.org'...
copying path '/nix/store/l2mzxnhw99wzb65kg3l0vv815bmzp3a8-protobuf-32.1' from 'https://cache.nixos.org'...
error: home directory '/homeless-shelter' exists; please remove it to assure purity of builds without sandboxing

@jbw976
Copy link
Copy Markdown
Member

jbw976 commented May 22, 2026

another instance of crossplane/crossplane#7390, i'll check out this branch and make sure its OK

Signed-off-by: Jared Watts <jbw976@gmail.com>
@jbw976 jbw976 merged commit d331401 into main May 22, 2026
9 checks passed
@crossplane-renovate crossplane-renovate Bot deleted the renovate/main-go-golang.org-x-crypto-vulnerability branch May 23, 2026 08:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant