Commit Graph

9271 Commits

Author SHA1 Message Date
Matthieu C.
6427d04c23 lua:: reworked setup-hook to source utils.sh
which contains lua shell utilities that can be reused during the
creation of an environment.
Makes sense because the generation of LUA_PATH is a bit different than
other ecosystems.
2024-05-01 00:18:44 +02:00
Matthieu C.
a4d954080f lua: fixed the way to create environments
`paths =  requiredLuaModules (extraLibs ++ [ lua ] );` would discard lua
and so in absence of a propagated lua, the lua.withPackages would return
an empty bin/ directory.
2024-05-01 00:11:49 +02:00
Nick Cao
e8ea9292b7
Merge pull request #307778 from r-ryantm/auto-update/zef
zef: 0.21.4 -> 0.22.0
2024-04-30 08:40:53 -04:00
superherointj
75e8877006
Merge pull request #306826 from elcuervo/update/ruby_3_2
ruby_3_2: 3.2.3 -> 3.2.4
2024-04-30 09:29:52 -03:00
Weijia Wang
23cbc3c2b3 Merge branch 'master' into staging-next 2024-04-30 13:24:52 +02:00
Donovan Glover
5ed0f58083
picoc: update homepage 2024-04-30 04:33:57 -04:00
Donovan Glover
f25b436961
picoc: add missing phase hooks 2024-04-30 04:33:04 -04:00
Donovan Glover
a683496076
picoc: 2015-05-04 -> 2.1-unstable-2018-06-05 2024-04-30 04:32:13 -04:00
R. Ryantm
b833ee02af risor: 1.5.2 -> 1.6.0 2024-04-30 04:19:00 +00:00
Thiago Kenji Okada
5d6e3342f2
Merge pull request #307798 from r-ryantm/auto-update/clojure
clojure: 1.11.2.1446 -> 1.11.3.1456
2024-04-29 22:39:22 +01:00
R. Ryantm
05800ba8a0 clojure: 1.11.2.1446 -> 1.11.3.1456 2024-04-29 16:47:07 +00:00
R. Ryantm
a0e3dcd812 zef: 0.21.4 -> 0.22.0 2024-04-29 15:19:56 +00:00
R. Ryantm
1b6022e263 boron: 2.0.8 -> 2.1.0 2024-04-29 06:20:14 +00:00
Jan Tojnar
1b2ebb8fbb Merge branch 'master' into staging-next 2024-04-28 17:33:27 +02:00
Frederik Rietdijk
5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00
Weijia Wang
37876dbdad Merge branch 'master' into staging-next 2024-04-27 05:44:19 +02:00
Weijia Wang
88679d4eff
Merge pull request #305432 from r-ryantm/auto-update/janet
janet: 1.33.0 -> 1.34.0
2024-04-27 04:09:06 +02:00
Ben Wolsieffer
f9de72f247 pythonCatchConflictsHook: split propagated-build-inputs on runs of whitespace
Currently, nix-support/propagated-build-inputs is parsed by splitting on
a single space. This means that if this file contains multiple spaces
separating two paths, the build_inputs list will end up containing an
empty string.

Instead, call split() with no arguments, which splits on runs of
whitespace and also ignores whitespace at the beginning and end of the
string, eliminating the need for strip().
2024-04-26 21:05:42 -04:00
Ben Wolsieffer
7f14d675a7 pythonCatchConflictsHook: cleanup due to visiting each path once
Now that we only visit each path once, a few things can be simplified.
We no longer have to keep a list of different dependency chains leading
to a package, since only one chain will ever be found. Also, the already
visited check also takes care of cycles, so the other cycle check can be
removed.
2024-04-26 21:05:42 -04:00
Ben Wolsieffer
a25e43e6d7 pythonCatchConflictsHook: prevent exponential worst-case
The hook performs a depth first search on the graph defined by
propagatedBuildInputs. This traverses all paths through the graph,
except for any cycles. In the worst case with a highly connected graph,
this search can take exponential time. In practice, this means that in
cases with long dependency chains and multiple packages depending on the
same package, the hook can take several hours to run.

Avoid this problem by keeping track of already visited paths and only
visiting each path once. This makes the search complete in linear time.

The visible effect of this change is that, if a conflict is found, only
one dependency chain that leads to the conflicting package is printed,
rather than all the possible dependency chains.
2024-04-26 21:05:42 -04:00
Ben Wolsieffer
21833407b4 pythonCatchConflictsHook: add test for multiple dependency chains
Add a test where a conflicting package can be found at the end of
multiple dependency chains. This is far too simple an example to
demonstrate the ill effects of exponential time complexity, but does
serve to demonstrate how the error output changes when each path is only
visited once.
2024-04-26 21:05:41 -04:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Vladimír Čunát
d157c07324
Merge branch 'master' into staging-next 2024-04-25 20:43:34 +02:00
elcuervo
6663dbfa1b
ruby_3_2: 3.2.3 -> 3.2.4 2024-04-25 14:39:12 -03:00
github-actions[bot]
d0efe40740
Merge master into staging-next 2024-04-25 06:01:20 +00:00
R. Ryantm
7c219aea66 nelua: unstable-2024-02-03 -> unstable-2024-04-20 2024-04-25 00:31:54 +00:00
Mario Rodas
acba655f26
Merge pull request #306286 from marsam/ruby
ruby: 3.1.4 -> 3.1.5, 3.2.3 -> 3.2.4, 3.3.0 -> 3.3.1
2024-04-24 07:56:46 -05:00
Vladimír Čunát
1b357187a9
Merge branch 'master' into staging-next 2024-04-24 08:22:34 +02:00
Mario Rodas
2becf6e837 maintainers: drop marsam 2024-04-24 04:20:00 +00:00
Mario Rodas
126feda420
Merge pull request #306116 from ereslibre/bump-wasmtime
wasmtime: 19.0.2 -> 20.0.0
2024-04-23 20:28:50 -05:00
Mario Rodas
c41af36650
Merge pull request #306200 from ereslibre/bump-wamr
wamr: 1.3.2 -> 2.0.0
2024-04-23 19:00:24 -05:00
Yt
cffb1159fd
Merge pull request #305100 from chiroptical/chiroptical/erlang-27-rc3
erlang_27: rc2 -> rc3
2024-04-23 21:03:35 +00:00
Rafael Fernández López
db9700fdf0 wamr: 1.3.2 -> 2.0.0 2024-04-23 09:31:39 +02:00
Mario Rodas
e49c774d68 ruby_3_3: 3.3.0 -> 3.3.1
Changelog: https://github.com/ruby/ruby/releases/tag/v3_3_1

Release Notes: https://www.ruby-lang.org/en/news/2024/04/23/ruby-3-3-1-released/
2024-04-23 04:20:00 +00:00
Mario Rodas
938384a7a5 ruby_3_2: 3.2.3 -> 3.2.4
Changelog: https://github.com/ruby/ruby/releases/tag/v3_2_4

Release Notes: https://www.ruby-lang.org/en/news/2024/04/23/ruby-3-2-4-released/
2024-04-23 04:20:00 +00:00
Mario Rodas
f6d863e1c2 ruby_3_1: 3.1.4 -> 3.1.5
Changelog: https://github.com/ruby/ruby/releases/tag/v3_1_5

Release Notes: https://www.ruby-lang.org/en/news/2024/04/23/ruby-3-1-5-released/
2024-04-23 04:20:00 +00:00
Rafael Fernández López
a71a9aea0c wasmtime: 19.0.2 -> 20.0.0 2024-04-23 00:16:00 +02:00
github-actions[bot]
3aa8ef1d54
Merge staging-next into staging 2024-04-20 12:01:42 +00:00
R. Ryantm
5c4f18afbe janet: 1.33.0 -> 1.34.0 2024-04-20 01:09:37 +00:00
R. Ryantm
b9f8dcfaf1 babashka-unwrapped: 1.3.189 -> 1.3.190 2024-04-20 01:06:16 +00:00
chiroptical
6e6181d1d8 erlang_27: rc2 -> rc3 2024-04-18 13:06:29 -04:00
github-actions[bot]
5c2b2d5b74
Merge master into staging-next 2024-04-17 18:01:04 +00:00
Pol Dellaiera
7a445b4728
Merge pull request #303883 from abathur/bats_1_11
bats: 1.10.0 -> 1.11.0, resholve: fix related test breakage
2024-04-17 19:21:37 +02:00
github-actions[bot]
d94833deff
Merge staging-next into staging 2024-04-17 18:01:36 +00:00
R. Ryantm
8f82a1f0d5 expr: 1.16.4 -> 1.16.5 2024-04-17 00:52:50 +00:00
Travis A. Everett
1f9a9252a7 bats: 0.10.0 -> 0.11.0
Also conditionally excludes pkill from resolution on macOS, since the
procps package should contain pkill on other platforms.
2024-04-16 15:58:16 -05:00
github-actions[bot]
d3b241dbfd
Merge staging-next into staging 2024-04-16 18:01:24 +00:00
github-actions[bot]
feedc73bee
Merge master into staging-next 2024-04-16 18:00:57 +00:00
Nick Cao
053be0cc59
Merge pull request #304435 from r-ryantm/auto-update/wazero
wazero: 1.7.0 -> 1.7.1
2024-04-16 09:38:46 -04:00
github-actions[bot]
0367a29b65
Merge staging-next into staging 2024-04-16 12:01:45 +00:00
github-actions[bot]
a459b363de
Merge master into staging-next 2024-04-16 12:01:11 +00:00
Mario Rodas
6c8c1732ff
Merge pull request #303451 from ereslibre/bump-wasmtime-19
wasmtime: 19.0.1 -> 19.0.2
2024-04-16 06:25:07 -05:00
github-actions[bot]
e506b5706f
Merge staging-next into staging 2024-04-16 06:01:35 +00:00
github-actions[bot]
a34a6c51cd
Merge master into staging-next 2024-04-16 06:01:08 +00:00
R. Ryantm
2638a70016 wazero: 1.7.0 -> 1.7.1 2024-04-16 04:54:00 +00:00
Mario Rodas
a7721427c1
Merge pull request #300750 from amarshall/ruby-cargohash-failure
ruby: improve failure message when missing cargoHash
2024-04-15 20:55:08 -05:00
github-actions[bot]
08524fc7d6
Merge staging-next into staging 2024-04-15 18:01:24 +00:00
github-actions[bot]
4d2386d2dd
Merge master into staging-next 2024-04-15 18:00:56 +00:00
github-actions[bot]
d54f055fd4
Merge staging-next into staging 2024-04-15 12:01:29 +00:00
github-actions[bot]
4908c48bf5
Merge master into staging-next 2024-04-15 12:01:00 +00:00
Mario Rodas
573746b5c0
Merge pull request #303663 from anthonyroussel/update/ruby
bundler: 2.5.7 -> 2.5.9, ruby.rubygems: 3.5.7 -> 3.5.9
2024-04-15 02:08:02 -05:00
Vladimír Čunát
3bcf0470d8
Revert #303176: "buildLuarocksPackage: rework fixup phase"
This reverts commit ddefcf284c.
Breakages need figuring out, reverting for now:
https://github.com/NixOS/nixpkgs/pull/303176#issuecomment-2053910614
2024-04-15 07:17:32 +02:00
Mario Rodas
8f4266af56 luau: 0.620 -> 0.621
Diff: https://github.com/luau-lang/luau/compare/0.620...0.621

Changelog: https://github.com/luau-lang/luau/releases/tag/0.621
2024-04-15 04:20:00 +00:00
Pol Dellaiera
8cc90d43b4
php81: add missing patch
To fix broken hydra build: https://hydra.nixos.org/build/256263019/nixlog/2
2024-04-14 21:15:36 +02:00
github-actions[bot]
257e7bee59
Merge master into staging-next 2024-04-14 14:04:38 +00:00
Yt
038cdc993a
Merge pull request #303750 from chiroptical/add-erlang_27-rc2
erlang_27: init at 27-rc2
2024-04-14 12:01:36 +00:00
Yt
2a963398e3
Merge pull request #303824 from r-ryantm/auto-update/erlang
erlang: 25.3.2.10 -> 25.3.2.11
2024-04-14 11:58:16 +00:00
OTABI Tomoya
d97cd093db
Merge pull request #303478 from mweinelt/python-3.13.0a6
python313: 3.13.0a5 -> 3.13.0a6
2024-04-14 18:31:20 +09:00
Barry Moore
92b656e044 erlang_27: init at 27-rc2 2024-04-13 21:27:59 -04:00
Travis A. Everett
7fb2aab015 bats: add bats-tested packages to passthru.tests
It would have been ~easy for someone to update bats without noticing
whether the update broke any packages that depend directly on the
nixpkgs-packaged bats for their tests. (I'm phrasing this tediously
because there are also some packages that vendor a copy of bats.)

Hopefully this will make it easier to confirm future updates.
2024-04-13 12:58:44 -05:00
Travis A. Everett
bb0331762d bats: reformat passthru.tests
Upcoming commit will add packages that use bats to passthru.tests,
which is a little more clear when this is one attrset.

Splitting this format-only change out for easier review.
2024-04-13 12:51:13 -05:00
github-actions[bot]
561b7b74f8
Merge master into staging-next 2024-04-13 12:01:23 +00:00
R. Ryantm
8b3a6eab4c erlang: 25.3.2.10 -> 25.3.2.11 2024-04-13 11:24:41 +00:00
Pol Dellaiera
4370f64a6c
Merge pull request #303711 from Ma27/bump-phps
php: 8.1.27 -> 8.1.28, 8.2.17 -> 8.2.18, 8.3.4 -> 8.3.6, fix CVE-2024-2756, CVE-2024-3096, CVE-2024-2757
2024-04-13 09:22:36 +02:00
github-actions[bot]
5a301eda67
Merge master into staging-next 2024-04-13 00:02:05 +00:00
Maximilian Bosch
c6e4e72218
php83: 8.3.4 -> 8.3.6, fix CVE-2024-2756, CVE-2024-3096, CVE-2024-2757
Announcement: https://news-web.php.net/php.announce/424
2024-04-12 23:14:37 +02:00
Maximilian Bosch
147dffac94
php82: 8.2.17 -> 8.2.18, fix CVE-2024-2756, CVE-2024-3096
Announcement: https://news-web.php.net/php.announce/423
2024-04-12 23:14:36 +02:00
Maximilian Bosch
d12c76c716
php81: 8.1.27 -> 8.1.28, fix CVE-2024-2756, CVE-2024-3096
Announcement: https://news-web.php.net/php.announce/425
2024-04-12 23:14:36 +02:00
Anthony Roussel
9c41cab75c
ruby.rubygems: 3.5.7 -> 3.5.9
https://github.com/rubygems/rubygems/releases/tag/v3.5.9
2024-04-12 19:00:01 +02:00
R. Ryantm
90cdf140e0 erlang_26: 26.2.3 -> 26.2.4 2024-04-12 13:00:18 +00:00
Vladimír Čunát
24d4f2cd52
Merge branch 'staging' into staging-next
Conflicts (tried to quickly resolve somehow, checked eval):
	pkgs/development/python-modules/apsw/default.nix
	pkgs/development/python-modules/mido/default.nix
	pkgs/development/python-modules/pytest-bdd/default.nix
	pkgs/development/python-modules/sparse/default.nix
2024-04-12 07:06:54 +02:00
Martin Weinelt
72502ca655
python313: 3.13.0a5 -> 3.13.0a6
https://docs.python.org/3.13/whatsnew/changelog.html#python-3-13-0-alpha-6
2024-04-12 00:27:07 +02:00
Rafael Fernández López
2b2b9dd4eb
wasmtime: 19.0.1 -> 19.0.2 2024-04-11 22:39:45 +02:00
Sandro Jäckel
b3b12c2d08 Revert "Fix venv creation in Python environments"
This commit reverts all python changes from 234bb31f61.
2024-04-11 08:26:39 -07:00
Sandro Jäckel
636edfdeb1 Revert "Unwrap python scripts when building an environment"
This reverts commit 96118850f3.
2024-04-11 08:26:39 -07:00
Tom McLaughlin
46f5689c73 cling: add a smoke test 2024-04-11 00:46:01 -07:00
Martin Weinelt
9f67702776
Merge pull request #303057 from mweinelt/python-3.12.3_3.11.9
python312: 3.12.2 -> 3.12.3; python311: 3.11.8 -> 3.11.9
2024-04-11 09:15:22 +02:00
Matthieu Coudron
ddefcf284c buildLuarocksPackage: rework fixup phase
I was working on lua tests, enabling nlua and I started overriding
postFixup, which removed the default phase for build-luarocks-package so
instead let's make it a proper phase.
2024-04-11 00:30:31 +02:00
Yt
0057749884
Merge pull request #302986 from r-ryantm/auto-update/erlang_24
erlang_24: 24.3.4.16 -> 24.3.4.17
2024-04-10 21:22:56 +00:00
Martin Weinelt
e05a3ec1ce
cpython: disable failing passthru tests on darwin
````
usage: virtualenv [--version] [--with-traceback] [-v | -q] [--read-only-app-data] [--app-data APP_DATA] [--reset-app-data] [--upgrade-embed-wheels] [--discovery {builtin}] [-p py] [--try-first-with py_exe]
                  [--creator {builtin,cpython3-posix,venv}] [--seeder {app-data,pip}] [--no-seed] [--activators comma_sep_list] [--clear] [--no-vcs-ignore] [--system-site-packages] [--symlinks | --copies] [--no-download | --download]
                  [--extra-search-dir d [d ...]] [--pip version] [--setuptools version] [--wheel version] [--no-pip] [--no-setuptools] [--no-wheel] [--no-periodic-update] [--symlink-app-data] [--prompt prompt] [-h]
                  dest
virtualenv: error: argument dest: the destination . is not write-able at /nix/store
SystemExit: 2
````
2024-04-10 18:00:32 +02:00
Nick Cao
6d3a7a67da
Merge pull request #303103 from r-ryantm/auto-update/expr
expr: 1.16.3 -> 1.16.4
2024-04-10 10:27:26 -04:00
7c6f434c
375367fb75
Merge pull request #302937 from nat-418/update-picolisp
picolisp 20.6 -> 24.3.30
2024-04-10 14:21:22 +00:00
R. Ryantm
cba54bf96a expr: 1.16.3 -> 1.16.4 2024-04-10 12:53:16 +00:00
Martin Weinelt
3546ac2240
python311: 3.11.8 -> 3.11.9
https://docs.python.org/release/3.11.9/whatsnew/changelog.html
2024-04-10 10:38:40 +02:00
Martin Weinelt
e8eb0ced9f
python312: 3.12.2 -> 3.12.3
https://docs.python.org/release/3.12.3/whatsnew/changelog.html
2024-04-10 10:38:39 +02:00
R. Ryantm
b07cfd92e4 erlang_24: 24.3.4.16 -> 24.3.4.17 2024-04-10 02:37:41 +00:00
nat-418
dab7027dba picolisp 20.6 -> 24.3.30 2024-04-09 23:06:32 +02:00
Silvan Mosberger
ea5dfeab93 treewide: Drop infinisil as maintainer from most packages
I'm not going anywhere, I'm focusing my energy on other issues, and
getting pinged as a maintainer for packages is a bit distracting (also
I'm not using most of these packages anyways!)
2024-04-09 21:43:39 +02:00
github-actions[bot]
5571d9244c
Merge staging-next into staging 2024-04-09 12:01:50 +00:00
Weijia Wang
3f59355d84 Merge branch 'staging-next' into staging 2024-04-09 08:26:23 +02:00
Weijia Wang
811a1b144a cling: fix runtime error on darwin 2024-04-09 06:41:52 +02:00
Weijia Wang
18c40a3873 cling: fix runtime error on aarch64-linux 2024-04-09 06:41:44 +02:00
Weijia Wang
1c905fa881 cling: cleanup 2024-04-09 06:41:04 +02:00
Tom McLaughlin
886dd8d2fa
cling: 0.9 -> 1.0 (#284865) 2024-04-09 06:37:04 +02:00
Michael Fellinger
75d6be6c99
erlang: add wrapGAppsHook 2024-04-08 15:23:40 +02:00
Mario Rodas
e7d816fc93 luau: 0.617 -> 0.620
Diff: https://github.com/luau-lang/luau/compare/0.617...0.620

Changelog: https://github.com/luau-lang/luau/releases/tag/0.620
2024-04-07 04:20:00 +00:00
github-actions[bot]
c3b3326391
Merge staging-next into staging 2024-04-06 00:02:50 +00:00
Weijia Wang
2f8694070d
Merge pull request #301806 from aaronjheng/starlark-rust
starlark-rust: tweak meta
2024-04-06 01:32:33 +02:00
Aaron Jheng
fdbf47ea2c
starlark-rust: tweak meta 2024-04-05 19:00:19 +08:00
github-actions[bot]
f6827a0d19
Merge staging-next into staging 2024-04-04 18:01:53 +00:00
R. Ryantm
c1d74b92ab yaegi: 0.16.0 -> 0.16.1 2024-04-04 02:01:37 +00:00
github-actions[bot]
df6e9ac330
Merge staging-next into staging 2024-04-03 18:01:37 +00:00
Nick Cao
a5d7f6620e
Merge pull request #301215 from r-ryantm/auto-update/risor
risor: 1.5.1 -> 1.5.2
2024-04-03 10:16:50 -04:00
github-actions[bot]
bcc77e0272
Merge staging-next into staging 2024-04-03 12:01:49 +00:00
R. Ryantm
30edf65874 risor: 1.5.1 -> 1.5.2 2024-04-03 11:14:04 +00:00
Weijia Wang
7781caa09d
Merge pull request #297481 from ereslibre/bump-wasmtime
wasmtime: 18.0.3 -> 19.0.1
2024-04-03 10:25:41 +02:00
Rafael Fernández López
97abfb223c
wasmtime: 18.0.3 -> 19.0.1 2024-04-02 21:30:00 +02:00
Florian Klink
f7ae598e45
Merge pull request #300905 from teto/teto/fix-lua-setup-hook
lua.tests.checkSetupHook: test lua setup hook for http package
2024-04-02 12:11:36 +02:00
Matthieu Coudron
c55b4dbcd2 lua: fix setup-hook *.lua matching
the setup-hook checks if a derivation contains lua files matching
lua_path patterns. We use bash's globstar extension for that but
`**.lua` doesn't return files in subfolders, it has to be `**/*.lua`.
Adjust the pattern accordingly.
2024-04-02 11:20:36 +02:00
Matthieu Coudron
b8be016426 lua.tests.checkSetupHook: test lua setup hook for http package
the 'http' package is an interesting one to test because all its lua
files are in a 'http' subfolder, ie., there is no share/lua/5.1/*.lua,
only share/lua/5.1/http/*.lua files unlike most packages. This tests we
can match those subfolders.
2024-04-02 11:20:36 +02:00
github-actions[bot]
0156d8b951
Merge staging-next into staging 2024-04-01 18:01:27 +00:00
github-actions[bot]
ef44d46775
Merge master into staging-next 2024-04-01 18:00:59 +00:00
Andrew Marshall
7d63c77405 ruby: improve failure message when missing cargoHash
Without this, doing e.g. `pkgs.mkRuby` without a `cargoHash` param would
mean that the `fetchCargoTarball` drv was not a FOD and thus had no
network access and would give confusing network failure messages. This
forces specifying non-null `cargoHash` if it is actually being used,
while allowing it to still be `null` when not needed.
2024-04-01 13:58:03 -04:00
Wolfgang Walther
b5a8fcb949
perl: fix spelling of filename 2024-04-01 15:19:58 +02:00
github-actions[bot]
61006b247a
Merge staging-next into staging 2024-03-31 06:01:45 +00:00
github-actions[bot]
6b7b5776be
Merge master into staging-next 2024-03-31 06:01:15 +00:00
Martin Weinelt
0c7078367b
Merge pull request #291293 from danc86/no-pypi-yanked
update-python-libraries: ignore yanked releases on PyPI
2024-03-31 05:21:40 +02:00
github-actions[bot]
49b966576c
Merge staging-next into staging 2024-03-30 12:01:34 +00:00
github-actions[bot]
48d06167c6
Merge master into staging-next 2024-03-30 12:01:06 +00:00
adisbladis
cfb98374f3
Merge pull request #293151 from adisbladis/mk-python-derivation-refactor
mk-python-derivation: Refactor
2024-03-30 20:23:38 +13:00
github-actions[bot]
f507e44ff4
Merge staging-next into staging 2024-03-28 18:01:49 +00:00
github-actions[bot]
edf05b9f79
Merge master into staging-next 2024-03-28 18:00:57 +00:00
R. Ryantm
8e69321ba6 expr: 1.16.2 -> 1.16.3 2024-03-27 20:20:36 +00:00
github-actions[bot]
35b4d53616
Merge staging-next into staging 2024-03-26 18:01:57 +00:00
github-actions[bot]
607cdcc471
Merge master into staging-next 2024-03-26 18:01:21 +00:00
Philip Taron
d3b17d0b54 Avoid top-level with ...; in pkgs/development/interpreters/eff/default.nix 2024-03-26 16:41:24 +01:00
github-actions[bot]
bd2d42a4f8
Merge staging-next into staging 2024-03-26 06:01:43 +00:00
github-actions[bot]
40938cc5ef
Merge master into staging-next 2024-03-26 06:01:14 +00:00
OTABI Tomoya
da0502af11
Merge pull request #298085 from natsukium/cpython/update
python39: 3.9.18 -> 3.9.19; python310: 3.10.13 -> 3.10.14
2024-03-26 09:48:38 +09:00
Sergei Trofimovich
187ac583a0
python/hooks/setuptools-build-hook.sh: use --parallel flag only for fresh setuptools
Without the change attempt to enable parallelist for `python2` packages
fails with unsupported `--parallel` flag for `setuptools`-based
packages:

    $ nix build --no-link -f. --arg config '{enableParallelBuildingByDefault = true;}' xdg-utils
    error: builder for '/nix/store/...-python2.7-setuptools-44.0.0.drv' failed with exit code 1;
       last 10 log lines:
       > no configure script, doing nothing
       > Running phase: buildPhase
       > Executing setuptoolsBuildPhase
       > usage: nix_run_setup [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
       >    or: nix_run_setup --help [cmd1 cmd2 ...]
       >    or: nix_run_setup --help-commands
       >    or: nix_run_setup cmd --help
       >
       > error: option --parallel not recognized
2024-03-25 13:18:45 +01:00
K900
aff4133785
Merge pull request #282649 from tpwrules/kill-setuptoolsshellhook
python3Packages.setuptoolsBuildHook: delete broken setuptoolsShellHook
2024-03-25 08:14:01 +03:00
Thomas Watson
d521f03303 python3Packages.setuptoolsBuildHook: correct name
Make `name` attribute into the same format as every other hook (modulo
.sh).

Nothing else in nixpkgs appears to refer to the old name.
2024-03-24 19:21:58 -05:00
Thomas Watson
26ccdea3d7 python3Packages.setuptoolsBuildHook: delete broken setuptoolsShellHook
Broken since the switch to PyPA's build/installer in
6c85fff302.

The hook was always janky and maintainers appear to not want its current
implementation in-tree. No replacement is currently planned.

However, this leaves the path open for future replacements as a broken
hook will no longer be installed by default.
2024-03-24 19:21:55 -05:00
Anthony Roussel
5c54742eb8
ruby.rubygems: 3.5.6 -> 3.5.7
https://github.com/rubygems/rubygems/releases/tag/v3.5.7
2024-03-24 21:51:40 +01:00
Mario Rodas
28e51c9d10
Merge pull request #258705 from tie/fix-ca-derivations-disallowed
{ruby,neovim}: fix build with content-addressed derivations

Fixes https://github.com/NixOS/nixpkgs/issues/278334
2024-03-24 09:00:12 -05:00
github-actions[bot]
3aff9fcdda
Merge staging-next into staging 2024-03-24 06:01:44 +00:00
Bobby Rong
6c9cb398b4
Merge pull request #298272 from bobby285271/upd/mozjs102
spidermonkey_102: 102.13.0 -> 102.15.1
2024-03-24 12:11:41 +08:00
Mario Rodas
aff7127a35
Merge pull request #297647 from r-ryantm/auto-update/risor
risor: 1.3.2 -> 1.5.1
2024-03-23 19:55:10 -05:00
github-actions[bot]
f0ed26755a
Merge staging-next into staging 2024-03-24 00:02:41 +00:00
Martin Weinelt
3321641bcd
Merge pull request #298102 from mweinelt/spidermonkey-115.9.1
spidermonkey_115: 115.2.0 -> 115.9.1
2024-03-23 23:18:34 +01:00