Commit Graph
737889 Commits
Author SHA1 Message Date
Raghav SoodandGitHub 435a03e425 flyctl: 0.3.56 -> 0.3.61 (#373324) 2025-01-14 10:37:42 +08:00
Randy EckenrodeandGitHub 618e580bb8 dxvk_2: 2.5.2 -> 2.5.3 (#373502) 2025-01-13 21:08:01 -05:00
OTABI TomoyaandGitHub 061a735dfd lha: unstable-2021-01-07 -> unstable-2024-11-27 (#372014) 2025-01-14 10:56:27 +09:00
Martin WeineltandGitHub 5593fccdd2 Firefox: 134.0 -> 134.0.1 (#373585) 2025-01-14 02:52:42 +01:00
Donovan GloverandGitHub a9200a8d16 wealthfolio: deactivate the upstream updater (#373198) 2025-01-14 01:48:04 +00:00
OTABI TomoyaandGitHub 0d1eed2fed satysfi: 0.0.10 -> 0.0.11 (#372315) 2025-01-14 10:47:06 +09:00
OTABI TomoyaandGitHub 2b1fca3296 autodock-vina: 1.2.5 -> 1.2.6 (#373591) 2025-01-14 10:21:38 +09: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 fe69203e6f autodock-vina: 1.2.5 -> 1.2.6 2025-01-14 00:28:45 +00: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
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
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
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
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 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
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
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
Arne KellerandGitHub bb0237e7cd libcava: init at 0.10.3 (#368312) 2025-01-13 22:40:07 +01:00
Christian KöglerandGitHub 781fcd608c zile: Fix build (#373100) 2025-01-13 22:35:35 +01:00
Christian KöglerandGitHub 18b6ca213a libdnet: fix cross build (#370316) 2025-01-13 22:32:42 +01:00
Arne KellerandGitHub 143a028493 python312Packages.glymur: 0.13.4 -> 0.13.6 (#373431) 2025-01-13 22:26:56 +01:00
Arne KellerandGitHub 0b2095fb48 finalcut: init at 0.9.1 (#371143) 2025-01-13 22:20:05 +01:00
Pol DellaieraandGitHub 286a336580 difftastic: 0.61.0 -> 0.62.0 (#373375) 2025-01-13 22:19:31 +01:00
Fabian AffolterandGitHub d5d3f1000f python313Packages.fast-histogram: disable failing test (#373429) 2025-01-13 22:18:58 +01:00
Pol DellaieraandGitHub adb6f7408b .devcontainer: tweaks (#373427) 2025-01-13 22:18:32 +01:00
Fabian AffolterandGitHub e9b88988f3 python313Packages.pytest-md-report: 0.6.2 -> 0.6.3 (#373407) 2025-01-13 22:17:24 +01:00
Fabian AffolterandGitHub 419edadc17 python312Packages.fnllm: 0.0.12 -> 0.0.13 (#367204) 2025-01-13 22:15:54 +01:00
Fabian AffolterandGitHub 13a525ab6c python312Packages.rns: add bleak (#373384) 2025-01-13 22:15:18 +01:00