Connor Baker
82086023d6
nccl: use packages from cudaPackages
...
The previous usage of `cudaPackages` ensured that we only ever saw packages from
the default version of `cudaPackages` Nixpkgs uses.
2023-08-22 19:00:05 +00:00
Jonas Heinrich
94d8e2cd4e
Merge pull request #250560 from fabaff/azure-mgmt-storage-bump
...
python311Packages.azure-mgmt-storage: 21.0.0 -> 21.1.0
2023-08-22 20:55:26 +02:00
Vladimír Čunát
29364aef85
Merge #250736 : knot-resolver: 5.6.0 -> 5.7.0
2023-08-22 20:54:39 +02:00
Sophie Tauchert
53771fcb75
nitter: unstable-2023-07-21 -> unstable-2023-08-08
2023-08-22 20:52:51 +02:00
Jonas Heinrich
ef5326acb6
Merge pull request #250582 from otavio/topic/cargo-rr-0_3_0
...
cargo-rr: 0.2.0 -> 0.3.0
2023-08-22 20:52:47 +02:00
Jonas Heinrich
abffc3844c
Merge pull request #250602 from barbosaaob/master
...
nextcloud-client 3.9.2 -> 3.9.3
2023-08-22 20:49:09 +02:00
Arian van Putten
483daed240
Merge pull request #250738 from arianvp/fix-repart
...
modules/image/repart: Fix stripNixStorePrefix
2023-08-22 18:37:06 +00:00
figsoda
1bbb4fbeff
cargo-llvm-lines: 0.4.32 -> 0.4.33
...
Diff: https://github.com/dtolnay/cargo-llvm-lines/compare/0.4.32...0.4.33
Changelog: https://github.com/dtolnay/cargo-llvm-lines/releases/tag/0.4.33
2023-08-22 14:37:03 -04:00
Jacob Moody
17cfda13ee
drawterm: unstable-2023-06-27 -> unstable-2023-08-22
2023-08-22 13:06:13 -05:00
Theodore Ni
bb604b3a76
Merge pull request #250458 from tjni/imageio-ffmpeg
...
python3.pkgs.imageio-ffmpeg: patch out pip requirement
2023-08-22 10:52:14 -07:00
Theodore Ni
ecb7e24416
Merge pull request #250209 from tjni/pyerfa
...
python3.pkgs.pyerfa: add missing build dependencies
2023-08-22 10:51:51 -07:00
Theodore Ni
ac6dcf42c7
Merge pull request #250153 from tjni/pipenv
...
pipenv: remove wheel install test, enable unit tests
2023-08-22 10:50:46 -07:00
Theodore Ni
89987539b8
Merge pull request #250114 from tjni/ansible-later
...
ansible-later: use poetry-dynamic-versioning like upstream
2023-08-22 10:50:21 -07:00
Theodore Ni
098b9921f8
Merge pull request #250111 from tjni/ansible-doctor
...
ansible-doctor: use poetry-dynamic-versioning like upstream
2023-08-22 10:50:08 -07:00
Theodore Ni
6b3e6287cf
python3.pkgs.pyfibaro: 0.7.2 -> 0.7.3
2023-08-22 10:47:26 -07:00
R. Ryantm
cc76e4bd9a
cri-tools: 1.27.1 -> 1.28.0
2023-08-22 17:44:48 +00:00
Jonas Heinrich
f4ffbe5ecb
Merge pull request #250643 from figsoda/starry
...
starry: init at 2.0.1
2023-08-22 19:07:10 +02:00
Jonas Heinrich
ee17d3829c
Merge pull request #250659 from aaronjheng/clash
...
clash: 1.17.0 -> 1.18.0
2023-08-22 19:02:41 +02:00
Jonas Heinrich
b401f3aac4
Merge pull request #250669 from newAM/svd2rust-0.30.0
...
svd2rust: 0.29.0 -> 0.30.0
2023-08-22 18:58:26 +02:00
Jonas Heinrich
844d522a18
Merge pull request #250704 from r-ryantm/auto-update/cutter
...
cutter: 2.3.0 -> 2.3.1
2023-08-22 18:53:38 +02:00
Jonas Heinrich
f8d3c2dabd
Merge pull request #250707 from yayayayaka/liferea-1.15.1
...
liferea: 1.15.0 -> 1.15.1
2023-08-22 18:43:40 +02:00
Jonas Heinrich
67c30e9324
Merge pull request #250701 from r-ryantm/auto-update/bosh-cli
...
bosh-cli: 7.3.1 -> 7.4.0
2023-08-22 18:37:40 +02:00
Jonas Heinrich
1942a2ebfa
Merge pull request #250680 from r-ryantm/auto-update/esphome
...
esphome: 2023.8.1 -> 2023.8.2
2023-08-22 18:35:00 +02:00
Peter Waller
044e8c4e44
llvmPackages_git: Port stdenv fix for cxx-headers
...
Signed-off-by: Peter Waller <p@pwaller.net>
2023-08-22 17:34:16 +01:00
Peter Waller
6ba1b5b0b3
llvmPackages_15, llvmPackages_16: Make the pkgsLLVM.stdenv work
...
What changed:
* Fixed crtbeginS.o and crtendS.o missing
(they may or may not be called crt{begin_end},{,_shared}.
* Fixed implicit function declaration causing build errors for various
builds by supplying -Wno-implicit-function-declaration.
* Fixed __cxxabi_config.h missing, by adding -I${cxxabi}/include/c++/v1
in the wrapper.
* Fixed libcxx failing to build due to missing libunwind symbols by
including libunwind as a buildInput, and setting
-DLIBCXX_ADDITIONAL_LIBRARIES=unwind for stdenv.hostPlatform.useLLVM == true.
* libcxxabi wants to find libunwind at libunwind_shared.so, so symlink
it there in libunwind.
* llvmPackages_16.libcxxabi: Pass -nostdlib via CMAKE_*_LINKER_FLAGS
Without this flag, the link of libcxxabi.so tries to pull in libgcc and
friends, from the clang compiler driver.
* Drop unneeded musl hack patch from libcxx.
* Pass -Wno-error=implicit-function-declaration only to compiler-rt
See LLVM forum discussion:
https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213
In summary, LLVM 16 made implicit function declaration an error. This
happens a lot in configure scripts which can break things.
* llvmPackages_16: !isDarwin: Supply -DLIBCXX_ABI_USE_LLVM_UNWINDER=On
Otherwise it fails with various undefined references to _Unwind_*
functions: (full list: _Unwind_DeleteException _Unwind_GetIP
_Unwind_GetLanguageSpecificData _Unwind_GetRegionStart
_Unwind_RaiseException _Unwind_Resume _Unwind_SetGR _Unwind_SetIP).
* 16.libcxxabi: Only pass -nostdlib for useLLVM and Darwin builds
What was tested:
* x86_64-linux, aarch64-linux, the stdenv builds.
* Additionally I was able to get nix to build, with an overlay to fix
a couple of minor issues in downstream packages (overlay supplied in
PR #246577 .
* aarch64-darwin fails spuriously in a single LLVM test
strip-preserve-atime.test checking atime timestamps.
* The same for pkgsLLVM with llvmPackages = llvmPackages_15.
Signed-off-by: Peter Waller <p@pwaller.net>
2023-08-22 17:33:24 +01:00
Vitali Bohush
acf8b22f81
swi-prolog: update dependency pcre -> pcre2
2023-08-22 18:29:03 +02:00
R. Ryantm
589dd15e76
cargo-bisect-rustc: 0.6.6 -> 0.6.7
2023-08-22 16:13:47 +00:00
Fabian Affolter
0109e11774
chisel: 1.9.0 -> 1.9.1
...
Diff: https://github.com/jpillora/chisel/compare/refs/tags/v1.9.0...v1.9.1
Changelog: https://github.com/jpillora/chisel/releases/tag/v1.9.1
2023-08-22 18:10:55 +02:00
Fabian Affolter
73d8867e02
python311Packages.bthome-ble: 3.1.0 -> 3.1.1
...
Diff: https://github.com/Bluetooth-Devices/bthome-ble/compare/refs/tags/v3.1.0...v3.1.1
Changelog: https://github.com/bluetooth-devices/bthome-ble/blob/v3.1.1/CHANGELOG.md
2023-08-22 18:07:14 +02:00
Fabian Affolter
942eb6fb14
python311Packages.boschshcpy: 0.2.66 -> 0.2.67
...
Diff: https://github.com/tschamm/boschshcpy/compare/0.2.66...0.2.67
2023-08-22 16:06:50 +00:00
Jonas Heinrich
2ff705ac55
Merge pull request #250690 from r-ryantm/auto-update/dgraph
...
dgraph: 23.0.1 -> 23.1.0
2023-08-22 18:04:17 +02:00
Jonas Heinrich
104ea46b57
Merge pull request #250691 from r-ryantm/auto-update/cirrus-cli
...
cirrus-cli: 0.101.2 -> 0.102.0
2023-08-22 18:01:07 +02:00
R. Ryantm
0f750beb95
cloud-sql-proxy: 2.6.0 -> 2.6.1
2023-08-22 15:55:54 +00:00
Matthias Beyer
e6d94b7f3d
Merge pull request #250697 from XYenon/master
...
yazi: init at 0.1.3
2023-08-22 17:22:02 +02:00
Matthias Beyer
0dd53d0577
Merge pull request #250776 from figsoda/clima
...
clima: init at 1.1.0
2023-08-22 17:20:59 +02:00
Naïm Favier
041cf2e745
Merge pull request #250734 from ncfavier/weechat
...
weechat-unwrapped: 4.0.3 -> 4.0.4
2023-08-22 17:02:43 +02:00
Matthias Beyer
9ced47bd34
Merge pull request #250772 from figsoda/xc
...
xc: 0.4.1 -> 0.5.0
2023-08-22 16:58:07 +02:00
Matthias Beyer
931bebde8a
Merge pull request #250771 from figsoda/dysk
...
dysk: 2.7.2 -> 2.8.0
2023-08-22 16:44:02 +02:00
Alex Holder
434fe8e1ce
maintainers: remove @alexeyre from maintainers-list.nix
2023-08-22 16:41:05 +02:00
Alex Holder
cb14c825c8
scli: remove @alexeyre from maintainers
2023-08-22 16:41:05 +02:00
Alex Holder
be152a8457
nimbo: remove @alexeyre from maintainers
2023-08-22 16:41:05 +02:00
Pol Dellaiera
1f1b9728da
Merge pull request #250323 from r-ryantm/auto-update/netpbm
...
netpbm: 11.3.2 -> 11.3.4
2023-08-22 16:36:59 +02:00
figsoda
be74b2f61e
clima: init at 1.1.0
...
https://github.com/Canop/clima
2023-08-22 10:25:20 -04:00
Matthias Beyer
044b56eb42
Merge pull request #250773 from WolfangAukang/protonvpn-update
...
python3Packages.protonvpn-nm-lib: 3.14.0 -> 3.16.0
2023-08-22 16:17:15 +02:00
figsoda
1890514644
Merge pull request #250432 from figsoda/rune
2023-08-22 10:06:16 -04:00
P. R. d. O
23733b59b6
python3Packages.protonvpn-nm-lib: 3.14.0 -> 3.16.0
2023-08-22 07:56:58 -06:00
figsoda
1a0cd8ae4f
xc: 0.4.1 -> 0.5.0
...
Diff: https://github.com/joerdav/xc/compare/v0.4.1...v0.5.0
Changelog: https://github.com/joerdav/xc/releases/tag/v0.5.0
2023-08-22 09:55:30 -04:00
figsoda
ff51f307f5
dysk: 2.7.2 -> 2.8.0
...
Diff: https://github.com/Canop/dysk/compare/v2.7.2...v2.8.0
Changelog: https://github.com/Canop/dysk/blob/v2.8.0/CHANGELOG.md
2023-08-22 09:53:42 -04:00
Matthias Beyer
4e60980fc4
Merge pull request #250725 from fabaff/python-bsblan-bump
...
python311Packages.python-bsblan: 0.5.11 -> 0.5.12
2023-08-22 15:50:03 +02:00
Bobby Rong
ab91caf05e
Merge pull request #250664 from bobby285271/upd/pantheon
...
Pantheon updates 2023-08-22
2023-08-22 21:48:59 +08:00