Commit Graph
738236 Commits
Author SHA1 Message Date
OTABI TomoyaandGitHub 0d1eed2fed satysfi: 0.0.10 -> 0.0.11 (#372315) 2025-01-14 10:47:06 +09:00
R. Ryantm ae561f4e39 gdal: 3.10.0 -> 3.10.1 2025-01-14 01:38:54 +00:00
l1npengtul 490e124401 plugdata: 0.8.0 -> 0.9.1 2025-01-14 10:33:48 +09:00
R. Ryantm 30f497ec77 kubedock: 0.17.1 -> 0.18.0 2025-01-14 01:31:31 +00:00
OTABI TomoyaandGitHub 2b1fca3296 autodock-vina: 1.2.5 -> 1.2.6 (#373591) 2025-01-14 10:21:38 +09:00
Andrew Marshall 6477277a79 zfs_2_3: init at 2.3.0
Changelog: https://github.com/openzfs/zfs/releases/tag/zfs-2.3.0
2025-01-13 20:19:54 -05:00
Andrew Marshall 40e0f7233b zfs_unstable: 2.3.0-rc5 -> 2.3.0
Changelog: https://github.com/openzfs/zfs/releases/tag/zfs-2.3.0
Diff: https://github.com/openzfs/zfs/compare/zfs-2.3.0-rc5...zfs-2.3.0
2025-01-13 20:18:15 -05:00
OTABI TomoyaandGitHub fe75cd0468 python312Packages.rising: remove at 0.3.0 (#356312) 2025-01-14 10:10:34 +09:00
OTABI TomoyaandGitHub a24d1afc35 python312Packages.widlparser: 1.0.12 -> 1.1.5 (#353139) 2025-01-14 10:02:24 +09:00
R. Ryantm 683cd2ecdf chart-testing: 3.11.0 -> 3.12.0 2025-01-14 00:53:41 +00:00
R. Ryantm fe69203e6f autodock-vina: 1.2.5 -> 1.2.6 2025-01-14 00:28:45 +00:00
Thomas Gerbet ad0441c052 archiver: tag with knownVulnerabilities for CVE-2024-0406
https://github.com/advisories/GHSA-rhh4-rh7c-7r5v

Package is also unmaintained so no fix will be issued in a released
version
https://github.com/mholt/archiver/commit/3ce15a5ce0779a7b2249679e8d2883906fa9117f
2025-01-14 00:27:20 +01:00
Martin Weinelt 50c1e88e70 firefox-bin-unwrapped: 134.0 -> 134.0.1
https://www.mozilla.org/en-US/firefox/134.0.1/releasenotes/
2025-01-14 00:26:11 +01:00
Martin Weinelt d574349587 firefox-unwrapped: 134.0 -> 134.0.1
https://www.mozilla.org/en-US/firefox/134.0.1/releasenotes/
2025-01-14 00:25:20 +01:00
R. Ryantm 5bd1937f1e python312Packages.blake3: 1.0.0 -> 1.0.2 2025-01-13 23:10:16 +00:00
Jan TojnarandGitHub e505cd6f45 Merge gnome-terminal: fix cross build (#372957) 2025-01-14 00:06:40 +01:00
adisbladisandGitHub 91d01c3648 importNpmLock: fix check for .bin in linkNodeModulesHook (#372631) 2025-01-14 12:01:22 +13:00
Ben Darwin 53c25a89d5 python312Packages.rising: remove at 0.3.0 2025-01-13 17:58:51 -05:00
Gaétan LepageandGitHub 426dc46a8c python312Packages.safetensors: 0.5.0 -> 0.5.2 (#371749) 2025-01-13 23:55:10 +01:00
Justin BedőandGitHub 460fc34ab6 rPackages.rix: 0.12.4 -> 0.14.3 (#372583) 2025-01-14 09:50:12 +11:00
fumnanya df13bea6f4 dnsperf: add musl fix (#370881) 2025-01-13 23:49:05 +01:00
79db1dc70a aider-chat: refactor (make it available as both a python package and an application) (#373160)
* aider-chat: refactor (make it both a python package and application)

make it avaiable as both a python package and an application, so that user
easily can use python development tools like `flake8` in aider-chat (NOTE
that due to aider-chat's hard coded `flake8` linter calling method, it's 
impossible to directly call `flake8` when `aider-chat` is not installed
as a python package)

* aider-chat: fix

correct function: buildPythonApplication -> buildPythonPackage

* aider-chat: 0.70.0 -> 0.71.0

---------

Co-authored-by: meowking <mr.meowking@posteo.com>
2025-01-13 17:44:16 -05:00
YtandGitHub 04d96902e9 python312Packages.unstructured: 0.16.11 -> 0.16.13 (#373572) 2025-01-13 17:40:14 -05:00
Konstantin NazarovandGitHub 3c547e6031 newlib: add installation of libgloss for embedded targets (#367275)
I was trying to get an embedded RISC-V toolchain working, by
following pretty much a documented workflow:

```
pkgsCross = import pkgs.path {
  localSystem = pkgs.stdenv.buildPlatform.system;
  crossSystem = {
    config = "riscv32-none-elf";
    libc = "newlib-nano";
    gcc.arch = "rv32im";
  };
};
```

This is supposed to work for compiling programs that target
"bare-metal". But when I tried to compile my project, GCC complained
that it can't fild `-lgloss`. If you're curious what libgloss is, in
very simple terms it's a glue layer that allows you to provide
implementation for the bare minimum functionality that would get the
rest of the libc working. (such as `_sbrk`, `_open`, `_read` and
friends).

After digging into it for a while, I've figured out that newlib which
is shipped by nixpkgs doesn't contain libgloss as part of the build
resuts. So this isn't just me misconfiguring the search paths.

You may be wondering - why didn't anyone else find this issue? My
current guess is that nobody really uses this combination (newlib-nano
plus a bare-metal deployment). Most people who use the cross
toolchains likely target an operating system which provides syscalls
already and don't implement the stubs themselves.

If you really want to try and reproduce the bug, you need to pass this
as a flag to gcc: `--specs=nano.specs`.

Also, this bug is not really specific to NixOS, but happened in
ArchLinux as well. Here's a relevant bug report:
https://bugs.archlinux.org/task/66548. This is where I've found the
fix. Adding the fix in the way I did seems to fix the problem for
good.

The fix itself doesn't seem to be dangerous because in case libgloss
is absent, it would be skipped and not copied to the build results.

NB: during review it's been also suggested to add libm for the same
reasons, so this is what I did as well.
2025-01-13 23:32:32 +01:00
Fabian AffolterandGitHub f61d498f8c baddns: 1.3.3 -> 1.6.68 (#373575) 2025-01-13 23:26:40 +01:00
Fabian AffolterandGitHub 202bcaa3af python313Packages.boto3-stubs: 1.35.97 -> 1.35.98, python313Packages.botocore-stubs: 1.35.97 -> 1.35.98 (#373565) 2025-01-13 23:23:01 +01:00
Fabian AffolterandGitHub ca58adb1e7 python313Packages.tencentcloud-sdk-python: 3.0.1301 -> 3.0.1302 (#373566) 2025-01-13 23:22:49 +01:00
Gaétan LepageandGitHub 073fd56816 tigerbeetle: 0.16.20 -> 0.16.21 (#373553) 2025-01-13 23:20:54 +01:00
Fabian AffolterandGitHub 6ee8eee98f python312Packages.mypy-boto3-*: updates (#373567) 2025-01-13 23:20:44 +01:00
Fabian AffolterandGitHub 9a74029503 python313Packages.habiticalib: 0.3.2 -> 0.3.3 (#373569) 2025-01-13 23:20:32 +01:00
Fabian Affolter 66de21965a python313Packages.jsonconversion: disable failing test on Python 3.13 2025-01-13 23:19:28 +01:00
Fabian Affolter a18259add7 python312Packages.jsonconversion: relax numpy 2025-01-13 23:19:03 +01:00
dd215bf13b samrewritten: 202008-unstable-2023-05-22 -> 202008-unstable-2025-01-09 (#373550)
Co-authored-by: LudovicoPiero <LudovicoPiero@users.noreply.github.com>
2025-01-13 22:17:45 +00:00
Arne KellerandGitHub 3fb84f57ed vector: switch to useFetchCargoVendor (#373392) 2025-01-13 23:16:48 +01:00
FliegendeWurst f0a28b7ff0 python312Packages.amiibo-py: drop 2025-01-13 23:16:12 +01:00
DCsunset 30ad2116fc freerdp3: 3.9.0 -> 3.10.3
Diff: https://github.com/FreeRDP/FreeRDP/compare/3.9.0...3.10.3
2025-01-13 22:14:56 +00:00
AtemuandGitHub 30216a7db5 android-studio: 2024.2.1.12 -> 2024.2.2.13 (#373280) 2025-01-13 23:12:48 +01:00
Fabian Affolter 67fe3ca970 python313Packages.habiticalib: 0.3.2 -> 0.3.3
Diff: https://github.com/tr4nt0r/habiticalib/compare/refs/tags/v0.3.2...v0.3.3

Changelog: https://github.com/tr4nt0r/habiticalib/releases/tag/v0.3.3
2025-01-13 22:50:06 +01:00
Jonas HeinrichandBjørn Forsman 58c5aeb53c nixos/libvirtd: Add proper UEFI support 2025-01-13 22:49:50 +01:00
R. Ryantm 8d4c2adfc4 baddns: 1.3.3 -> 1.6.68 2025-01-13 21:48:40 +00:00
Fabian Affolter 203b4e4b5f python313Packages.velbus-aio: 2024.12.3 -> 2025.1.0
Diff: https://github.com/Cereal2nd/velbus-aio/compare/refs/tags/2024.12.3...2025.1.0

Changelog: https://github.com/Cereal2nd/velbus-aio/releases/tag/2025.1.0
2025-01-13 22:48:36 +01:00
Fabian Affolter c07ce1cafd python313Packages.tencentcloud-sdk-python: 3.0.1301 -> 3.0.1302
Diff: https://github.com/TencentCloud/tencentcloud-sdk-python/compare/refs/tags/3.0.1301...3.0.1302

Changelog: https://github.com/TencentCloud/tencentcloud-sdk-python/blob/3.0.1302/CHANGELOG.md
2025-01-13 22:45:50 +01:00
FliegendeWurst f0283774ca onboard: fix cross build 2025-01-13 22:45:30 +01:00
Fabian Affolter c2405d1954 python312Packages.mypy-boto3-transcribe: 1.35.93 -> 1.35.98 2025-01-13 22:45:28 +01:00
R. Ryantm 6ddc024c92 python312Packages.unstructured: 0.16.11 -> 0.16.13 2025-01-13 21:45:08 +00:00
R. Ryantm 7e5f768b0b python312Packages.uxsim: 1.7.1 -> 1.7.2 2025-01-13 21:44:54 +00:00
Fabian Affolter 2bac0ed2f4 python313Packages.botocore-stubs: 1.35.97 -> 1.35.98 2025-01-13 22:44:48 +01:00
Fabian Affolter 97b14af78a python313Packages.boto3-stubs: 1.35.97 -> 1.35.98 2025-01-13 22:44:44 +01:00
Fabian Affolter 04d114e001 python312Packages.mypy-boto3-kafkaconnect: 1.35.93 -> 1.35.98 2025-01-13 22:44:28 +01:00
Fabian Affolter b3669e0fad python312Packages.mypy-boto3-ec2: 1.35.93 -> 1.35.98 2025-01-13 22:44:09 +01:00