github-actions[bot]
|
7fd1f842a0
|
terraform-providers.cloudamqp: 1.26.2 -> 1.27.0
|
2023-06-13 14:40:26 +10:00 |
|
Mario Rodas
|
28eaa7ebc1
|
rage: fix hash
Upstream retagged v0.9.2
|
2023-06-13 04:20:00 +00:00 |
|
R. Ryantm
|
3bee849a37
|
python310Packages.pyreadstat: 1.2.1 -> 1.2.2
|
2023-06-13 03:58:15 +00:00 |
|
Pol Dellaiera
|
202850e1a1
|
Merge pull request #237187 from marsam/update-jruby
jruby: 9.3.9.0 -> 9.4.3.0
|
2023-06-13 05:53:18 +02:00 |
|
R. Ryantm
|
1ef5dad4a3
|
postgresql11JitPackages.pgroonga: 3.0.5 -> 3.0.6
|
2023-06-13 03:32:31 +00:00 |
|
figsoda
|
14e5e0f7f7
|
Merge pull request #237453 from r-ryantm/auto-update/murex
murex: 4.1.6140 -> 4.1.7300
|
2023-06-12 23:25:13 -04:00 |
|
figsoda
|
4ea80ec99b
|
Merge pull request #237460 from r-ryantm/auto-update/chezmoi
chezmoi: 2.34.0 -> 2.34.1
|
2023-06-12 23:21:06 -04:00 |
|
figsoda
|
27df23f72c
|
Merge pull request #237450 from marsam/update-rage
rage: 0.9.1 -> 0.9.2
|
2023-06-12 23:20:33 -04:00 |
|
figsoda
|
6ea7d315f0
|
Merge pull request #237461 from r-ryantm/auto-update/subfinder
subfinder: 2.5.9 -> 2.6.0
|
2023-06-12 23:18:36 -04:00 |
|
figsoda
|
2e474de8c6
|
Merge pull request #237455 from r-ryantm/auto-update/adguardian
adguardian: 1.5.0 -> 1.6.0
|
2023-06-12 23:17:22 -04:00 |
|
Mario Rodas
|
070ad0eecc
|
Merge pull request #237451 from r-ryantm/auto-update/ytt
ytt: 0.45.1 -> 0.45.2
|
2023-06-12 21:58:33 -05:00 |
|
R. Ryantm
|
bbb54b2887
|
python310Packages.steamship: 2.16.9 -> 2.17.7
|
2023-06-13 02:16:28 +00:00 |
|
Emily Trau
|
033f7b623a
|
ccache: disable failing test test.fileclone on aarch64-darwin
|
2023-06-13 12:02:25 +10:00 |
|
Nick Cao
|
486d2ce7d6
|
Merge pull request #237423 from r-ryantm/auto-update/python310Packages.gidgethub
python310Packages.gidgethub: 5.2.1 -> 5.3.0
|
2023-06-12 19:53:36 -06:00 |
|
Nick Cao
|
3db83c0380
|
Merge pull request #237373 from r-ryantm/auto-update/texlab
texlab: 5.6.0 -> 5.7.0
|
2023-06-12 19:51:35 -06:00 |
|
R. Ryantm
|
a01eaa1096
|
python311Packages.grequests: 0.6.0 -> 0.7.0
|
2023-06-13 01:48:50 +00:00 |
|
rewine
|
9b4701455d
|
python3Packages.pyqt6: 6.5.0 -> 6.5.1
|
2023-06-13 09:48:31 +08:00 |
|
R. Ryantm
|
e84b8cc15f
|
ockam: 0.88.0 -> 0.89.0
|
2023-06-12 21:38:31 -04:00 |
|
R. Ryantm
|
9a2263c051
|
kubefirst: 2.0.8 -> 2.1.0
|
2023-06-13 01:34:12 +00:00 |
|
R. Ryantm
|
eb201eedd3
|
subfinder: 2.5.9 -> 2.6.0
|
2023-06-13 01:32:27 +00:00 |
|
happysalada
|
4476d19942
|
rustus: 0.7.2 -> 0.7.3
|
2023-06-12 21:26:31 -04:00 |
|
R. Ryantm
|
9136cdd591
|
chezmoi: 2.34.0 -> 2.34.1
|
2023-06-13 01:22:38 +00:00 |
|
R. Ryantm
|
8b25845df3
|
gocryptfs: 2.3.2 -> 2.4.0
|
2023-06-13 01:11:41 +00:00 |
|
Kamal Al Marhubi
|
fc5724e33a
|
pythonPackages.polars: Fix build on darwin
The build had been failing with an error like
Compiling py-polars v0.17.11 (/private/tmp/nix-build-python3.10-polars-0.17.11.drv-0/source/py-polars)
error: linking with `/nix/store/0a46pjq0isnpbzf4wi6v1pdcvaj6i43m-clang-wrapper-11.1.0/bin/cc` failed: exit status: 1
|
= note: LC_ALL="C" PATH="/nix/store/9zglgb7pvcvv7lxwdxzvjqs1w4kfyfgv-rustc-1.69.0/lib/rustlib/aarch64-apple-darwin/bin:/nix/store/x1nk3q6shnsfqphmq2l27gf585wnpf1x-python3-3.10.11/bin:/nix/store/g9kv74wk0xyikshim0drwbgf67zcc3qh-python3.10-p>
= note: ld: framework not found Security
clang-11: error: linker command failed with exit code 1 (use -v to see invocation)
Adding the Security framework to buildInputs appears to have solved
that.
Demonstration:
$ read -r -d '' PYSRC <<EOF
import platform
print(platform.platform())
import polars as pl
s = pl.Series("a", [1, 2, 3, 4, 5])
print(s)
EOF
$ nix shell --impure --expr \
"with builtins.getFlake \"$PWD\"; with legacyPackages.aarch64-darwin; python3.withPackages (ps: with ps; [ polars ])" \
--command python -c "$PYSRC"
macOS-13.4-arm64-arm-64bit
shape: (5,)
Series: 'a' [i64]
[
1
2
3
4
5
]
|
2023-06-12 20:51:04 -04:00 |
|
R. Ryantm
|
6ebe3fdc4f
|
adguardian: 1.5.0 -> 1.6.0
|
2023-06-13 00:48:57 +00:00 |
|
R. Ryantm
|
4a73c642d1
|
murex: 4.1.6140 -> 4.1.7300
|
2023-06-13 00:28:48 +00:00 |
|
Mario Rodas
|
ff88800ebe
|
Merge pull request #237448 from r-ryantm/auto-update/algolia-cli
algolia-cli: 1.3.6 -> 1.3.7
|
2023-06-12 19:19:59 -05:00 |
|
Mario Rodas
|
17a36446ae
|
ytt: install completions
|
2023-06-13 00:19:00 +00:00 |
|
Mario Rodas
|
3c34f79bf7
|
ytt: 0.45.2 -> 0.45.3
Diff: https://github.com/vmware-tanzu/carvel-ytt/compare/v0.45.2...v0.45.3
|
2023-06-13 00:19:00 +00:00 |
|
R. Ryantm
|
b992b7502b
|
ytt: 0.45.1 -> 0.45.2
|
2023-06-13 00:18:24 +00:00 |
|
figsoda
|
38bea112c7
|
Merge pull request #237437 from r-ryantm/auto-update/srvc
srvc: 0.19.0 -> 0.19.1
|
2023-06-12 20:04:43 -04:00 |
|
figsoda
|
0bddaf943b
|
Merge pull request #237443 from r-ryantm/auto-update/bearer
bearer: 1.9.0 -> 1.11.0
|
2023-06-12 20:01:15 -04:00 |
|
figsoda
|
cfd0433d4f
|
Merge pull request #237432 from r-ryantm/auto-update/cargo-make
cargo-make: 0.36.9 -> 0.36.10
|
2023-06-12 19:56:50 -04:00 |
|
figsoda
|
210359b26b
|
Merge pull request #237440 from wegank/go-migrate-darwin
go-migrate: fix build on darwin
|
2023-06-12 19:55:02 -04:00 |
|
R. Ryantm
|
4daf4a4add
|
algolia-cli: 1.3.6 -> 1.3.7
|
2023-06-12 23:43:15 +00:00 |
|
Nikolay Korotkiy
|
46395e3a10
|
Merge pull request #237238 from r-ryantm/auto-update/gnss-share
gnss-share: 0.6 -> 0.7.1
|
2023-06-13 03:16:08 +04:00 |
|
zowoq
|
6f3ea67cff
|
telegraf: 1.26.3 -> 1.27.0
Diff: https://github.com/influxdata/telegraf/compare/v1.26.3...v1.27.0
Changelog: https://github.com/influxdata/telegraf/blob/v1.27.0/CHANGELOG.md
|
2023-06-13 08:52:49 +10:00 |
|
R. Ryantm
|
4ebc4f7478
|
bearer: 1.9.0 -> 1.11.0
|
2023-06-12 22:47:22 +00:00 |
|
R. Ryantm
|
35f0f6aca1
|
pachyderm: 2.6.1 -> 2.6.3
|
2023-06-12 22:25:57 +00:00 |
|
Weijia Wang
|
287f80473e
|
Merge pull request #236662 from QJoly/vcluster
vcluster: 0.12.3 -> 0.15.1
|
2023-06-13 01:24:56 +03:00 |
|
Weijia Wang
|
d9f1ec6426
|
Merge pull request #237323 from r-ryantm/auto-update/python310Packages.mlflow
python310Packages.mlflow: 2.3.2 -> 2.4.1
|
2023-06-13 01:24:00 +03:00 |
|
Weijia Wang
|
145b374fd2
|
Merge pull request #237429 from reckenrode/cctools-llvm-fix
cctools-llvm: fix build with clang 16
|
2023-06-13 01:22:17 +03:00 |
|
Weijia Wang
|
a0f3dede94
|
go-migrate: fix build on darwin
|
2023-06-13 01:20:34 +03:00 |
|
Weijia Wang
|
dfbf629b34
|
Merge pull request #236664 from QJoly/arkade
arkade: 0.9.19 -> 0.9.22
|
2023-06-13 01:13:22 +03:00 |
|
Weijia Wang
|
8f932c9e54
|
Merge pull request #237160 from QJoly/helm-dashboard
helm-dashboard: 1.3.1 -> 1.3.2
|
2023-06-13 01:12:45 +03:00 |
|
Weijia Wang
|
0056d0ff90
|
Merge pull request #236665 from QJoly/tfupdate
tfupdate: 0.6.7 -> 0.6.8
|
2023-06-13 01:12:20 +03:00 |
|
Weijia Wang
|
4134101d7d
|
Merge pull request #236605 from QJoly/argocd
argocd: 2.7.3 -> 2.7.4
|
2023-06-13 01:12:06 +03:00 |
|
Weijia Wang
|
2e92d05262
|
Merge pull request #236818 from wegank/prl-tools-bump
linuxPackages_latest.prl-tools: 18.3.0-53606 -> 18.3.1-53614
|
2023-06-13 01:07:49 +03:00 |
|
R. Ryantm
|
fc8602043a
|
srvc: 0.19.0 -> 0.19.1
|
2023-06-12 22:06:02 +00:00 |
|
R. Ryantm
|
e640c091d6
|
oxigraph: 0.3.16 -> 0.3.17
|
2023-06-12 22:00:44 +00:00 |
|