Commit Graph
668869 Commits
Author SHA1 Message Date
SandroandGitHub 514b550678 Merge pull request #329244 from trofi/gbenchmark-update 2024-08-22 11:51:00 +02:00
SandroandGitHub 021e453cc6 Merge pull request #328839 from trofi/lua5_4-update 2024-08-22 11:50:48 +02:00
SandroandGitHub 14e9970970 Merge pull request #329738 from trofi/libtirpc-update 2024-08-22 11:35:09 +02:00
Vladimír Čunát 51091a9b32 Merge #319558: ruby: make 3.3 the default
...into staging
2024-08-22 11:00:51 +02:00
Vladimír Čunát d8548de60a Merge #317786: tpm2-tss: remove shadow dependency
...into staging
2024-08-22 10:57:05 +02:00
OTABI TomoyaandGitHub 56073c34ce Merge pull request #336336 from natsukium/ipython/update
python312Packages.ipython: 8.25.0 -> 8.26.0
2024-08-22 12:06:24 +09:00
Alyssa Ross 007088359e python3: break infinite recursion
Checking if bluez is a derivation requires evaluating whether an
emulator is available (in the case that gobject-introspection is
available), which when cross compiling requires evaluating qemu, which
requires evaluating libxml2, which requires evaluating Python.

The recursion break happens in the Python expression because it's the
thing behaving unusually, by forcing evaluation of all of its
arguments, even ones that are optional and unused.

Fixes: 8b3a4a617e ("bluez: fix when gobject-introspection unsupported")
2024-08-21 18:45:30 +02:00
natsukium 881fc844c4 python312Packages.ipython: add teams.jupyter.members as maintainer 2024-08-21 23:47:43 +09:00
natsukium 87f3fbade5 python312Packages.ipython: 8.25.0 -> 8.26.0
Changelog: https://github.com/ipython/ipython/blob/8.26.0/docs/source/whatsnew/version8.rst
2024-08-21 23:47:34 +09:00
Lin JianandGitHub 575514d0f3 Merge pull request #336085 from linj-fork/pr/elisp-bump
emacsPackages: updated 2024-08-20 (from overlay)
2024-08-21 22:24:53 +08:00
Kira BruneauandGitHub fbd3f71413 Merge pull request #333275 from kira-bruneau/python3Packages.debugpy
python311Packages.debugpy: 1.8.2 -> 1.8.5
2024-08-20 21:10:12 -04:00
Sebastián MancillaandGitHub 69f3b4defe Merge pull request #335593 from LeSuisse/env-vars-creation-darwin
stdenv: create `env-vars` file before writing data to it
2024-08-20 17:55:49 -04:00
Philip TaronandGitHub 2b3edda359 Merge pull request #335925 from wolfgangwalther/no-nix-flags-arrays
treewide: remove xxxFlagsArray from nix derivations
2024-08-20 12:31:54 -07:00
Thomas Gerbet d00775c1d9 stdenv: create env-vars file before writing data to it
This fixes the regression introduced by c47a1e701d
on Darwin. The creation of the file using `install` and process
substitution does not work on Darwin, you get the following complain:
```
install: skipping file '/dev/fd/63', as it was replaced while being copied
```

Fixes #335016
2024-08-20 19:02:41 +02:00
7c6f434candGitHub b9d53f4e0f Merge pull request #336001 from trofi/wine64Packages.wayland-add-wayland-scanner
wine64Packages.wayland: add missing `wayland-scanner` build input
2024-08-20 16:41:02 +00:00
Lin Jian de35646e51 nongnu-devel-packages: updated 2024-08-20 (from overlay) 2024-08-20 23:19:18 +08:00
Lin Jian 1b04022ea7 nongnu-packages: updated 2024-08-20 (from overlay) 2024-08-20 23:19:17 +08:00
Lin Jian b69391897e melpa-packages: updated 2024-08-20 (from overlay) 2024-08-20 23:19:17 +08:00
Lin Jian d2e6659b0e elpa-devel-packages: updated 2024-08-20 (from overlay) 2024-08-20 23:19:16 +08:00
Lin Jian f5b3a9cd32 elpa-packages: updated 2024-08-20 (from overlay) 2024-08-20 23:19:14 +08:00
Philip TaronandGitHub d9c0a44298 Merge pull request #336065 from philiptaron/pr-335817/git-test-enablement-respin
git: re-enable a few tests that are fixed upstream
2024-08-20 07:01:25 -07:00
Jörg ThalheimandGitHub 249c25602c Merge pull request #336061 from philiptaron/pr-225051/nixpkgs-manual-staging-fix
nixpkgs-manual: fix build
2024-08-20 15:53:22 +02:00
Philip Taron 198af78cb6 nixpkgs-manual: fix build 2024-08-20 06:49:36 -07:00
Sergei Trofimovich 124392093c wine64Packages.wayland: add missing wayland-scanner build input
Without the change the build fails on `staging` as:

    wine64-wayland> checking for wayland-scanner... Package wayland-scanner was not found in the pkg-config search path.
    wine64-wayland> Perhaps you should add the directory containing `wayland-scanner.pc'
    wine64-wayland> to the PKG_CONFIG_PATH environment variable
    wine64-wayland> No package 'wayland-scanner' found
    wine64-wayland> no
    ...
    wine64-wayland> configure: error: Wayland 64-bit development files not found or not new enough, the Wayland driver won't be supported.
    wine64-wayland> This is an error since --with-wayland was requested.
2024-08-20 06:58:25 +01:00
Wolfgang Walther 755c316f38 php-packages: remove unused checkXXX options from buildPecl derivations
buildPecl overwrites the checkPhase like this:

  checkPhase = "NO_INTERACTON=yes make test";

Thus none of the checkXXX options set in nix are actually used.
2024-08-19 23:28:13 +02:00
Wolfgang Walther e3244e9ff0 treewide: replace xxxFlagsArray with non-Array variant in nix code
The xxxFlagsArray variants were never meant to be used in nix code, at
least they can't be used properly without __structuredAttrs turned on.

If no spaces are passed in the argument the xxxFlagsArray can be
replaced as-is with the non-Array variant. When whitespace needs to be
passed, the derivation is additionally changed to enable
__structuredAttrs.
2024-08-19 23:28:13 +02:00
Michael Lohmann 51930e0343 git: re-enable a few tests that are fixed upstream
- t5150: now has the proper perl prerequisite check:
  https://git.kernel.org/pub/scm/git/git.git/tree/t/t5150-request-pull.sh?h=v2.43.0#n10
- t5319: flake was fixed:
  https://git.kernel.org/pub/scm/git/git.git/commit/?id=152923b132d57e1dbd693a8cb9a8bc1827405674
- t1700: no idea what did the fix, but it is working again
2024-08-19 21:36:40 +02:00
Martin WeineltandGitHub bbbd473f8d Merge pull request #334961 from mweinelt/uvloop-0.20.0
python312Packages.uvloop: 0.19.0 -> 0.20.0
2024-08-19 21:18:53 +02:00
Philip TaronandGitHub 350166e9b8 Merge pull request #335679 from ShamrockLee/cmake-format-setuphook
cmake: setup-hook.sh: unify indentation
2024-08-19 09:06:22 -07:00
John EricsonandGitHub a840541aa5 Merge pull request #325926 from deshaw/upstream-krb5-refactor
krb5: merge krb5 and libkrb5 with krb5.lib output
2024-08-19 11:55:39 -04:00
Masum RezaandGitHub 18d0ec70b4 Merge pull request #335788 from flokli/aquamarine-fix-build
aquamarine: fix build
2024-08-19 19:14:28 +05:30
Florian Klink 6b25e18887 aquamarine: fix build
This tries to load wayland.xml from wayland-client.pc, but it's
installed alongside wayland-scanner.
2024-08-19 15:08:33 +03:00
Robert SchützandGitHub f230a55399 Merge pull request #292709 from r-ryantm/auto-update/catch2_3
catch2_3: 3.5.2 -> 3.7.0
2024-08-19 03:46:38 -07:00
Robert SchützandGitHub eb90510f8a Merge pull request #334522 from getchoo/pkgs/gunicorn/23.0.0
python312Packages.gunicorn: 22.0.0 -> 23.0.0
2024-08-19 03:37:37 -07:00
seth 0b13615989 python312Packages.mlflow: relax gunicorn dependency
Upstream wants <23.0.0
2024-08-19 03:56:39 -04:00
seth 65e73f4d7a python312Packages.gunicorn: 22.0.0 -> 23.0.0
Fixes CVE-2024-1135

Changelog: https://github.com/benoitc/gunicorn/releases/tag/23.0.0
Diff: https://github.com/benoitc/gunicorn/compare/22.0.0...23.0.0
2024-08-19 03:56:35 -04:00
Sebastián MancillaandGitHub f5b69bb873 Merge pull request #334710 from trofi/libedit-update
libedit: 20240517-3.1 -> 20240808-3.1
2024-08-19 00:00:02 -04:00
Philip TaronandGitHub b50a4a2de2 Merge pull request #314716 from tie/make-cxx
gnumake: do not use MAKE_CXX
2024-08-18 19:48:07 -07:00
R. Ryantm 3f255f7f28 catch2_3: 3.5.2 -> 3.7.0 2024-08-19 00:19:26 +00:00
Peder Bergebakken SundtandGitHub 8050fb8db8 Merge pull request #335142 from doronbehar/pkg/versionCheckHook
versionCheckHook: ignore echoed store paths
2024-08-19 02:12:56 +02:00
Yueh-Shun Li 468cfccb0c cmake: setup-hook.sh: unify indentation 2024-08-19 04:59:27 +08:00
Maximilian BoschandMatthieu Coudron 6f4426f80f neovim-unwrapped: use outputChecks
`disallowedRequisites` and friends will be ignored if `__structuredAttrs`
is used. In Nix versions <2.24 and Lix <2.91 this happens silently, in
newer versions a warning is printed.

The solution is to use outputChecks.
2024-08-18 18:21:03 +02:00
AtemuandGitHub e325795397 Merge pull request #334478 from jopejoe1/ffmpeg-ilbc
ffmpeg: add ilbc options
2024-08-18 15:04:41 +02:00
github-actions[bot]andGitHub 6855a1a5f4 Merge staging-next into staging 2024-08-18 12:02:30 +00:00
github-actions[bot]andGitHub 972fdc7929 Merge master into staging-next 2024-08-18 12:02:03 +00:00
Masum RezaandGitHub 625941e1a9 Merge pull request #332912 from r-ryantm/auto-update/ananicy-rules-cachyos
ananicy-rules-cachyos: 0-unstable-2024-07-23 -> 0-unstable-2024-07-27
2024-08-18 17:22:09 +05:30
AtemuandGitHub 69fe76ef9b Merge pull request #334505 from mweinelt/microcode-intel-20240813
microcodeIntel: 20240531 -> 20240813
2024-08-18 13:51:38 +02:00
Masum RezaandGitHub 94c30e543d Merge pull request #335115 from SuperSandro2000/graphical-desktop
nixos/graphical-desktop: add enable option, nixos/wayland-session: use graphical-desktop option and remove implicit defaults
2024-08-18 17:20:55 +05:30
Masum RezaandGitHub 3f08237ceb Merge pull request #296607 from Yusuf-Duran/add-iio-hyprland
iio-hyprland: init at 0-unstable-2024-07-24; nixos/iio-hyprland: init module
2024-08-18 17:19:20 +05:30
SandroandGitHub c2d5ecc504 nixos/displayManager: mention how to get a list of currently available desktop sessions (#335208) 2024-08-18 17:17:01 +05:30