Commit Graph
788705 Commits
Author SHA1 Message Date
Alexandre Esteves a6aabc498c haskellPackages: when building with js backend, output jsexe directory alongside executable 2025-04-22 15:24:03 +01:00
Doron BeharandGitHub 5d9cbdc28e python312Packages.numpy: 2.2.4 -> 2.2.5 (#400364) 2025-04-22 16:49:26 +03:00
Thiago Kenji OkadaandGitHub 759b1d00e0 stdenv: fix stage1 gettext build (with gcc14) (#399694) 2025-04-22 14:47:52 +01:00
aleksana 1da19c6010 stdenv: fix stage1 gettext build (with gcc14)
Add the same trick for gettext as for libunistring below, skipping
"checking for working iconv" which requires locales and gconv modules
(and other stuff we don't have in bootstrapTools?)

It tries to run the following check in `iconv.m4` which fails:

```c
#include <iconv.h>
#include <string.h>

int
main (void)
{
int result = 0;

  /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is
     provided.  */
  {
    /* Try standardized names.  */
    iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP");
    /* Try IRIX, OSF/1 names.  */
    iconv_t cd2 = iconv_open ("UTF-8", "eucJP");
    /* Try AIX names.  */
    iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP");
    /* Try HP-UX names.  */
    iconv_t cd4 = iconv_open ("utf8", "eucJP");
    if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1)
        && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1))
      result |= 16;
    if (cd1 != (iconv_t)(-1))
      iconv_close (cd1);
    if (cd2 != (iconv_t)(-1))
      iconv_close (cd2);
    if (cd3 != (iconv_t)(-1))
      iconv_close (cd3);
    if (cd4 != (iconv_t)(-1))
      iconv_close (cd4);
  }
  return result;

  ;
  return 0;
}
```

Then it assumes iconv is not there and tries to use some built-in iconv
function? idk

Resulting in following error:

```
iconv-ostream.c:311:3: error: initialization of 'void (*)(struct
any_ostream_representation *, ostream_flush_scope_t)' from incompatible
pointer type 'void (*)(struct any_ostream_representation *)' []
```

This isn't causing a build failure in other architectures because we
haven't updated bootstrapTools to gcc14, so the error isn't noticeable,
but it's there. Check https://hydra.nixos.org/build/294707390/nixlog/10
2025-04-22 20:48:22 +08:00
nixpkgs-ci[bot]andGitHub 032ce947b2 Merge staging-next into staging 2025-04-22 12:06:47 +00:00
nixpkgs-ci[bot]andGitHub 200da171fe Merge master into staging-next 2025-04-22 12:06:17 +00:00
aleksanaandAlyssa Ross 00a5791030 make-bootstrap-tools-cross: add loongarch64-unknown-linux-gnu 2025-04-22 13:59:51 +02:00
aleksanaandAlyssa Ross b814e3d946 stdenv-bootstrap-tools: use bashNonInteractive
Currently bash is bashInteractive, and it depends on readline. We don't
copy readline so bash from bootstrap-tools is broken.
2025-04-22 13:59:51 +02:00
aleksanaandAlyssa Ross 81df2570ee stdenv-bootstrap-tools: don't copy obsolete libutil from glibc
Starting from glibc 2.34, all functionality previously implemented in
libpthread, libdl, libutil and libanl are now integrated into libc.

https://lists.gnu.org/archive/html/info-gnu/2021-08/msg00001.html

As loongarch64 support was merged into glibc after 2.34, libutil.so is
no longer in there, thus breaking bootstrap.

https://github.com/loongson-community/discussions/issues/29

libdl is not removed because bash still links against it, and libpthread
is not removed because xgcc depends on it to build libatomic.
2025-04-22 13:59:51 +02:00
teutat3sandYureka d5b9cf4f81 electron-source.electron_33: 33.4.9 -> 33.4.10
- Changelog: https://github.com/electron/electron/releases/tag/v33.4.10
- Diff: https://github.com/electron/electron/compare/refs/tags/v33.4.9...v33.4.10
2025-04-22 13:55:18 +02:00
teutat3sandYureka 557ad0b3f7 electron-source.electron_34: 34.5.1 -> 34.5.2
- Changelog: https://github.com/electron/electron/releases/tag/v34.5.2
- Diff: https://github.com/electron/electron/compare/refs/tags/v34.5.1...v34.5.2
2025-04-22 13:55:18 +02:00
teutat3sandYureka 367b9ac665 electron-source.electron_35: 35.1.5 -> 35.2.0
- Changelog: https://github.com/electron/electron/releases/tag/v35.2.0
- Diff: https://github.com/electron/electron/compare/refs/tags/v35.1.5...v35.2.0
2025-04-22 13:55:18 +02:00
teutat3sandYureka 5def263fbe electron-chromedriver_33: 33.4.9 -> 33.4.10
- Changelog: https://github.com/electron/electron/releases/tag/v33.4.10
- Diff: https://github.com/electron/electron/compare/refs/tags/v33.4.9...v33.4.10
2025-04-22 13:55:18 +02:00
teutat3sandYureka d1e293cdf7 electron_33-bin: 33.4.9 -> 33.4.10
- Changelog: https://github.com/electron/electron/releases/tag/v33.4.10
- Diff: https://github.com/electron/electron/compare/refs/tags/v33.4.9...v33.4.10
2025-04-22 13:55:18 +02:00
teutat3sandYureka 6ff55fbed1 electron-chromedriver_34: 34.5.1 -> 34.5.2
- Changelog: https://github.com/electron/electron/releases/tag/v34.5.2
- Diff: https://github.com/electron/electron/compare/refs/tags/v34.5.1...v34.5.2
2025-04-22 13:55:18 +02:00
teutat3sandYureka 6ddfd4041e electron_34-bin: 34.5.1 -> 34.5.2
- Changelog: https://github.com/electron/electron/releases/tag/v34.5.2
- Diff: https://github.com/electron/electron/compare/refs/tags/v34.5.1...v34.5.2
2025-04-22 13:55:18 +02:00
teutat3sandYureka 9a05999c03 electron-chromedriver_35: 35.1.5 -> 35.2.0
- Changelog: https://github.com/electron/electron/releases/tag/v35.2.0
- Diff: https://github.com/electron/electron/compare/refs/tags/v35.1.5...v35.2.0
2025-04-22 13:55:18 +02:00
teutat3sandYureka f9b8a89d0e electron_35-bin: 35.1.5 -> 35.2.0
- Changelog: https://github.com/electron/electron/releases/tag/v35.2.0
- Diff: https://github.com/electron/electron/compare/refs/tags/v35.1.5...v35.2.0
2025-04-22 13:55:18 +02:00
teutat3sandYureka 70b41fb797 electron-chromedriver_35: 35.1.2 -> 35.1.5
- Changelog: https://github.com/electron/electron/releases/tag/v35.1.5
- Diff: https://github.com/electron/electron/compare/refs/tags/v35.1.2...v35.1.5
2025-04-22 13:55:18 +02:00
teutat3sandYureka 6a7f7b7ba4 electron_35-bin: 35.1.2 -> 35.1.5
- Changelog: https://github.com/electron/electron/releases/tag/v35.1.5
- Diff: https://github.com/electron/electron/compare/refs/tags/v35.1.2...v35.1.5
2025-04-22 13:55:18 +02:00
teutat3sandYureka 4307c98d6f electron-chromedriver_34: 34.4.1 -> 34.5.1
- Changelog: https://github.com/electron/electron/releases/tag/v34.5.1
- Diff: https://github.com/electron/electron/compare/refs/tags/v34.4.1...v34.5.1
2025-04-22 13:55:18 +02:00
teutat3sandYureka 62fd038bf3 electron_34-bin: 34.4.1 -> 34.5.1
- Changelog: https://github.com/electron/electron/releases/tag/v34.5.1
- Diff: https://github.com/electron/electron/compare/refs/tags/v34.4.1...v34.5.1
2025-04-22 13:55:18 +02:00
teutat3sandYureka 522a03b526 electron-chromedriver_33: 33.4.8 -> 33.4.9
- Changelog: https://github.com/electron/electron/releases/tag/v33.4.9
- Diff: https://github.com/electron/electron/compare/refs/tags/v33.4.8...v33.4.9
2025-04-22 13:55:18 +02:00
teutat3sandYureka 5b3e3e19f0 electron_33-bin: 33.4.8 -> 33.4.9
- Changelog: https://github.com/electron/electron/releases/tag/v33.4.9
- Diff: https://github.com/electron/electron/compare/refs/tags/v33.4.8...v33.4.9
2025-04-22 13:55:18 +02:00
teutat3sandYureka 6372031f69 electron-source.electron_35: 35.1.4 -> 35.1.5
- Changelog: https://github.com/electron/electron/releases/tag/v35.1.5
- Diff: https://github.com/electron/electron/compare/refs/tags/v35.1.4...v35.1.5
2025-04-22 13:55:18 +02:00
teutat3sandYureka 7aefc00532 electron-source.electron_34: 34.5.0 -> 34.5.1
- Changelog: https://github.com/electron/electron/releases/tag/v34.5.1
- Diff: https://github.com/electron/electron/compare/refs/tags/v34.5.0...v34.5.1
2025-04-22 13:55:18 +02:00
teutat3sandYureka 48c7c6a904 electron-source.electron_33: 33.4.8 -> 33.4.9
- Changelog: https://github.com/electron/electron/releases/tag/v33.4.9
- Diff: https://github.com/electron/electron/compare/refs/tags/v33.4.8...v33.4.9
2025-04-22 13:55:18 +02:00
23ad94e0e3 aliae: 0.26.4 -> 0.26.5 (#398386)
Co-authored-by: vedantmgoyal9 <vedantmgoyal9@users.noreply.github.com>
2025-04-22 11:31:30 +00:00
63351ff5b7 nezha-theme-admin: 1.10.4 -> 1.12.0 (#400722)
Co-authored-by: Moraxyc <Moraxyc@users.noreply.github.com>
2025-04-22 11:08:36 +00:00
xanderioandGitHub aca270648e nixos/tzupdate: make enabled module actually be enabled (#361373) 2025-04-22 12:57:48 +02:00
xanderioandGitHub a8004f9f25 zammad: 6.4.1 -> 6.5.0 (#399278) 2025-04-22 12:56:03 +02:00
dotlambdaandGitHub bbe64fcc52 python313Packages.ayla-iot-unofficial: 1.4.8 -> 1.5.0 (#400659) 2025-04-22 03:35:17 -07:00
dotlambdaandGitHub 96d723fff2 python313Packages.bosch-alarm-mode2: 0.4.3 -> 0.4.6 (#400657) 2025-04-22 03:35:02 -07:00
dotlambdaandGitHub 42f9647b04 python313Packages.eheimdigital: 1.0.6 -> 1.1.0 (#400655) 2025-04-22 03:34:45 -07:00
dotlambdaandGitHub 59967c39e7 python313Packages.recurring-ical-events: 3.6.1 -> 3.7.0 (#400652) 2025-04-22 03:34:32 -07:00
dotlambdaandGitHub a7e8197cff python313Packages.fuzzyfinder: 2.2.0 -> 2.3.0 (#400651) 2025-04-22 03:34:12 -07:00
dotlambdaandGitHub fc8747a450 python313Packages.python-linkplay: 0.2.3 -> 0.2.4 (#400648) 2025-04-22 03:33:48 -07:00
dotlambdaandGitHub d0cf04185a ooniprobe-cli: 3.24.0 -> 3.25.0 (#400597) 2025-04-22 03:33:32 -07:00
dotlambdaandGitHub 80d4595bec python313Packages.stringzilla: 3.12.4 -> 3.12.5 (#400437) 2025-04-22 03:31:07 -07:00
dotlambdaandGitHub 403373e723 python313Packages.mlxtend: drop unused argument (#400423) 2025-04-22 03:30:11 -07:00
dotlambdaandGitHub b42362223a python313Packages.tree-sitter_0_21: drop (#400343) 2025-04-22 03:29:51 -07:00
dotlambdaandGitHub ee56603399 python313Packages.pytradfri: 13.0.0 -> 14.0.0 (#399953) 2025-04-22 03:27:46 -07:00
Fabian AffolterandGitHub 398ebeaf36 dalfox: 2.10.0 -> 2.11.0 (#400218) 2025-04-22 12:18:43 +02:00
Fabian AffolterandGitHub f601260ff6 python312Packages.banks: 2.1.1 -> 2.1.2 (#400647) 2025-04-22 12:15:47 +02:00
Fabian AffolterandGitHub 8bcfdb9e8a python312Packages.google-cloud-webrisk: 1.17.1 -> 1.18.0 (#400733) 2025-04-22 12:15:16 +02:00
Fabian AffolterandGitHub b2156a2d0d python312Packages.apkinspector: 1.3.2 -> 1.3.3 (#400787) 2025-04-22 12:14:53 +02:00
Pol DellaieraandMasum Reza afaf992b70 firefox: do not set the executable bit on desktop file
This prevent Gnome to find the app correctly.
2025-04-22 15:40:24 +05:30
sternenseemann b35c701857 Merge haskell-updates PR #371032 into staging 2025-04-22 12:02:16 +02:00
sternenseemann 0db5b2cfd4 spago: fix build of dep versions with GHC 9.8 2025-04-22 11:54:08 +02:00
Pol DellaieraandGitHub bbd42dd89b docker: 28.0.4 -> 28.1.1 (#399761) 2025-04-22 09:45:12 +00:00