Commit Graph

8530 Commits

Author SHA1 Message Date
brokenpip3
a1df20a561
bats.libraries.bats-file: 0.3.0 -> 0.4.0 2023-11-14 23:05:41 +01:00
Martin Weinelt
3c336a1647
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/libraries/gdcm/default.nix
2023-11-14 13:16:34 +01:00
Pol Dellaiera
599fefe03a
Merge pull request #267305 from drupol/php/bumps-php83rc6
php83: 8.3.0RC5 -> 8.3.0RC6
2023-11-14 08:16:17 +01:00
github-actions[bot]
6a7c026ba7
Merge master into staging-next 2023-11-14 06:01:03 +00:00
Silvan Mosberger
7eddbf5690
Merge pull request #265710 from ShamrockLee/lib-copy-function-args
lib.mirrorFunctionArgs: init
2023-11-14 05:33:40 +01:00
Mario Rodas
d5c364011f zuo: unstable-2023-10-17 -> unstable-2023-11-10
Diff: 493e9cd081...9e2aa26b05
2023-11-14 04:20:00 +00:00
Pol Dellaiera
e455148e44
php83: 8.3.0RC5 -> 8.3.0RC6 2023-11-13 22:26:55 +01:00
github-actions[bot]
9776723357
Merge master into staging-next 2023-11-11 18:00:58 +00:00
Mario Rodas
911ad1e67f
Merge pull request #266767 from marsam/update-luau
luau: 0.601 -> 0.603
2023-11-11 12:51:48 -05:00
Lily Foster
1234b66590
Merge pull request #266546 from zeuner/supercollider-shell
supercollider: use bash from nixpkgs for popen
2023-11-11 12:48:02 -05:00
Isidor Zeuner
6d9c572be2 supercollider: use bash from nixpkgs for popen 2023-11-11 16:45:04 +01:00
Anthony Roussel
e30f48be94
treewide: fix redirected and broken URLs
Using the script in maintainers/scripts/update-redirected-urls.sh
2023-11-11 10:49:01 +01:00
github-actions[bot]
dbecb018c5
Merge staging-next into staging 2023-11-11 06:01:25 +00:00
github-actions[bot]
46679c6a02
Merge master into staging-next 2023-11-11 06:01:00 +00:00
Mario Rodas
bb3f029a87
Merge pull request #257492 from wackbyte/bump-lune
lune: 0.7.4 -> 0.7.11
2023-11-10 21:49:37 -05:00
github-actions[bot]
e8096ee1e1
Merge staging-next into staging 2023-11-10 18:01:34 +00:00
Weijia Wang
d8ebb73023 Merge branch 'master' into staging-next 2023-11-10 16:25:02 +01:00
7c6f434c
9da6f812b1
Merge pull request #266023 from r-ryantm/auto-update/octave
octave: 8.3.0 -> 8.4.0
2023-11-10 15:12:03 +00:00
Alyssa Ross
afabc4a15d
Merge remote-tracking branch 'origin/master' into HEAD
Conflicts:
	pkgs/development/libraries/SDL2/default.nix
2023-11-10 15:18:19 +01:00
Mario Rodas
33d50bf2e3
Merge pull request #266189 from aaronjheng/starlark
starlark: unstable-2023-03-02 -> unstable-2023-11-01
2023-11-10 07:47:36 -05:00
Mario Rodas
1c3cf1cac0 luau: 0.601 -> 0.603
Diff: https://github.com/luau-lang/luau/compare/0.601...0.603

Changelog: https://github.com/luau-lang/luau/releases/tag/0.603
2023-11-10 04:20:00 +00:00
Anthony Roussel
205a2a11bb
ruby.rubygems: add meta.mainProgram 2023-11-09 21:06:28 +01:00
Anthony Roussel
7d1c95fc68
ruby.rubygems: 3.4.21 -> 3.4.22
https://github.com/rubygems/rubygems/releases/tag/v3.4.22
2023-11-09 21:06:16 +01:00
github-actions[bot]
6a669d1ab2
Merge staging-next into staging 2023-11-09 18:01:27 +00:00
github-actions[bot]
e112f9b8bb
Merge master into staging-next 2023-11-09 18:00:56 +00:00
Lassulus
d4cd00c651
Merge pull request #266446 from Sohalt/update-babashka
babashka-unwrapped: 1.3.185 -> 1.3.186
2023-11-09 17:10:30 +00:00
Thiago Kenji Okada
a75a35caa8
Merge pull request #262232 from Sohalt/babashka-completions
babashka: Install shell completions
2023-11-09 13:03:01 +00:00
github-actions[bot]
5725d489f3
Merge staging-next into staging 2023-11-09 12:01:36 +00:00
sohalt
808b05db11 babashka: Install shell completions 2023-11-09 11:33:19 +01:00
sohalt
5f58cc4917 babashka-unwrapped: 1.3.185 -> 1.3.186 2023-11-09 11:28:28 +01:00
Alyssa Ross
e3e57b8f18 lib.systems: elaborate Rust metadata
We need this stuff to be available in lib so make-derivation.nix can
access it to construct the Meson cross file.

This has a couple of other advantages:

 - It makes Rust less special.  Now figuring out what Rust calls a
   platform is the same as figuring out what Linux or QEMU call it.

 - We can unify the schema used to define Rust targets, and the schema
   used to access those values later.  Just like you can set "config"
   or "system" in a platform definition, and then access those same
   keys on the elaborated platform, you can now set "rustcTarget" in
   your crossSystem, and then access "stdenv.hostPlatform.rustcTarget"
   in your code.

"rustcTarget", "rustcTargetSpec", "cargoShortTarget", and
"cargoEnvVarTarget" have the "rustc" and "cargo" prefixes because
these are not exposed to code by the compiler, and are not
standardized.  The arch/os/etc. variables are all named to match the
forms in the Rust target spec JSON.

The new rust.target-family only takes a list, since we don't need to
worry about backwards compatibility when that name is used.

The old APIs are all still functional with no warning for now, so that
it's possible for external code to use a single API on both 23.05 and
23.11.  We can introduce the warnings once 23.05 is EOL, and make them
hard errors when 23.11 is EOL.
2023-11-09 10:02:24 +01:00
Randy Eckenrode
34b48d4af6
python2: fix build with clang 16 on x86_64-darwin
Apply the patch to fix using libutil.h instead of util.h on Darwin for
`forkpty` and `openpty`.
2023-11-08 19:08:48 -05:00
github-actions[bot]
50249cdaf2
Merge staging-next into staging 2023-11-09 00:02:40 +00:00
github-actions[bot]
00a0662a3c
Merge master into staging-next 2023-11-09 00:02:14 +00:00
Pol Dellaiera
c038b79502
php: add phpSrc attribute (#254556)
This will allow building PHP from source, without using `.overrideAttrs()`.
When the new attribute `phpSrc` is not set, the default behavior (with `fetchurl`) is used.
2023-11-08 22:57:01 +01:00
github-actions[bot]
d49b3ff9e3
Merge staging-next into staging 2023-11-08 12:02:19 +00:00
Aaron Jheng
39f28a872e starlark: unstable-2023-03-02 -> unstable-2023-11-01
Co-authored-by: Mario Rodas <marsam@users.noreply.github.com>
2023-11-08 08:55:53 +01:00
Fabián Heredia Montiel
2188896a57 python3Packages.sphinxHook: fix eval after merge of bc2d598878 2023-11-08 01:51:41 -06:00
Adam Joseph
ba2ed469c2
Merge branch 'master' into staging-next 2023-11-08 06:15:46 +00:00
Artturi
d24da52844
Merge pull request #265764 from amjoseph-nixpkgs/pr/pythonForBuild 2023-11-08 00:13:25 +02:00
Martin Weinelt
6f2583545f
Merge pull request #264204 from devusb/spidermonkey
spidermonkey_91: fix build with python311
2023-11-07 19:32:04 +01:00
R. Ryantm
10545e7033 octave: 8.3.0 -> 8.4.0 2023-11-07 08:48:11 +00:00
Weijia Wang
8012034692 Merge branch 'staging-next' into staging 2023-11-07 03:41:49 +01:00
Yueh-Shun Li
b3e2c15000 makeOverridablePythonPackage: preserve function arguments 2023-11-07 01:58:48 +00:00
Adam Joseph
f0011fd103 python: deprecate pythonForBuild in favor of pythonOnBuildForHost 2023-11-07 02:28:58 +02:00
Weijia Wang
32da89a1a1 Merge branch 'master' into staging-next 2023-11-06 14:33:18 +01:00
Adam Joseph
bc2d598878 treewide: change pythonForBuild to pythonOnBuildForHost 2023-11-05 17:42:12 -08:00
wackbyte
f5db02399a
lune: 0.7.4 -> 0.7.11 2023-11-05 20:06:25 -05:00
Adam Joseph
563a66dc31 python: add python.pythonOnBuildForHost 2023-11-04 21:29:33 -07:00
Weijia Wang
9627659c22 Merge branch 'master' into staging-next 2023-11-04 17:27:09 +01:00
K900
d0a608519b
Merge pull request #265287 from reckenrode/darwin-fixes-batch1
perlPackages.Gtk2, scheme48, smpeg, stfl: fix build with clang 16
2023-11-04 15:05:08 +03:00
github-actions[bot]
b90e2fc451
Merge staging-next into staging 2023-11-04 06:01:49 +00:00
natsukium
56b570d6af
python311Packages.python-docs-theme: rename from python_docs_theme 2023-11-04 12:34:41 +09:00
Weijia Wang
44f16f33cc Merge branch 'master' into staging-next 2023-11-04 01:43:45 +01:00
Weijia Wang
0c9c53ab67
Merge pull request #265302 from IogaMaster/guile-jit-macos
guile: enable jit on aarch64-darwin
2023-11-04 01:39:41 +01:00
Weijia Wang
7488ae1411
Merge pull request #263081 from r-ryantm/auto-update/zef
zef: 0.19.1 -> 0.20.0
2023-11-04 00:53:21 +01:00
IogaMaster
b4829c8372 guile: enable jit on aarch64-darwin 2023-11-03 13:50:02 -06:00
Randy Eckenrode
80fc3eb8a6
scheme48: fix build with clang 16 2023-11-03 13:45:18 -04:00
Rafael Fernández López
5afd529264 wasmtime: 14.0.2 -> 14.0.4 2023-11-03 10:50:11 +01:00
github-actions[bot]
9dd6711ca2
Merge staging-next into staging 2023-11-02 12:01:48 +00:00
Vladimír Čunát
fe975c2260
Merge #263983: guile: do not strip on darwin
...into staging-next
2023-11-02 08:10:45 +01:00
github-actions[bot]
91b879e867
Merge staging-next into staging 2023-10-31 18:01:36 +00:00
github-actions[bot]
81270bbdcf
Merge master into staging-next 2023-10-31 18:01:02 +00:00
github-actions[bot]
1b8319e14d
Merge staging-next into staging 2023-10-31 06:01:37 +00:00
github-actions[bot]
97868dae8e
Merge master into staging-next 2023-10-31 06:00:58 +00:00
Mario Rodas
8ad202d05b
Merge pull request #264306 from marsam/update-zuo
zuo: unstable-2023-01-02 -> unstable-2023-10-17
2023-10-30 19:16:15 -05:00
github-actions[bot]
131c49a7c6
Merge staging-next into staging 2023-10-30 18:01:38 +00:00
github-actions[bot]
931938d1df
Merge master into staging-next 2023-10-30 18:01:02 +00:00
R. Ryantm
d900a4fbdc joker: 1.3.0 -> 1.3.1 2023-10-30 11:53:22 +00:00
Martin Weinelt
646c23a2f7
buildPythonPackage: port catch-conflicts to importlib.metadata
To escape the pkg_resources API deprecation:

> catch-conflicts.py:1: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html

Also remove exceptions for the previus bootstrap packages.
2023-10-30 12:42:36 +01:00
Mario Rodas
25b8447133 luau: 0.600 -> 0.601
Diff: https://github.com/Roblox/luau/compare/0.600...0.601

Changelog: https://github.com/Roblox/luau/releases/tag/0.601
2023-10-30 04:20:00 +00:00
Mario Rodas
e9d089bba0 zuo: add updateScript 2023-10-30 04:20:00 +00:00
Mario Rodas
50b063baaa zuo: unstable-2023-01-02 -> unstable-2023-10-17
Diff: 464aae9ae9...493e9cd081
2023-10-30 04:20:00 +00:00
Morgan Helton
ecbdec62a3 spidermonkey_91: add patch to allow building with python311 2023-10-29 12:40:56 -05:00
Vladimír Čunát
72e667204b
shen-sbcl: mark as broken
- the build's been broken for about a year
  https://hydra.nixos.org/job/nixpkgs/trunk/shen-sbcl.x86_64-linux/all
- noone minds the failure apparently (trying to fix)
- it still seems relatively expensive to repeat these failures
2023-10-29 11:47:02 +01:00
Weijia Wang
7b538a844c guile: do not strip on darwin 2023-10-28 17:08:22 +02:00
github-actions[bot]
81ed2302dc
Merge master into staging-next 2023-10-28 06:00:57 +00:00
Weijia Wang
1b116280cb
Merge pull request #261954 from r-ryantm/auto-update/rune
rune: 0.12.4 -> 0.13.1
2023-10-28 03:42:00 +02:00
github-actions[bot]
4791949f6a
Merge master into staging-next 2023-10-28 00:02:23 +00:00
Mario Rodas
e42b2e2c59
Merge pull request #261971 from r-ryantm/auto-update/jruby
jruby: 9.4.3.0 -> 9.4.4.0
2023-10-27 17:36:45 -05:00
github-actions[bot]
4a5044c558
Merge master into staging-next 2023-10-27 12:01:12 +00:00
Pol Dellaiera
f72178d1bc
Merge pull request #263652 from drupol/php/bumps-october-2023
php: bumps october 2023 - bugfix releases
2023-10-27 11:59:55 +02:00
github-actions[bot]
f20daab04b
Merge master into staging-next 2023-10-27 06:01:02 +00:00
Pol Dellaiera
5967b71d8d
php81: 8.1.24 -> 8.1.25 2023-10-26 23:22:04 +02:00
Pol Dellaiera
e4624bd778
php83: 8.3.0RC4 -> 8.3.0RC5 2023-10-26 23:19:23 +02:00
Pol Dellaiera
47fcbd9a4f
php82: 8.2.11 -> 8.2.12 2023-10-26 23:19:06 +02:00
Rafael Fernández López
590cd0ad82
wasmtime: 14.0.1 -> 14.0.2 2023-10-26 18:24:03 +02:00
Vladimír Čunát
d811555465
Merge branch 'staging' into staging-next 2023-10-26 10:36:50 +02:00
Thiago Kenji Okada
4a04519819
Merge pull request #263259 from r-ryantm/auto-update/babashka-unwrapped
babashka-unwrapped: 1.3.184 -> 1.3.185
2023-10-25 07:23:01 +01:00
7c6f434c
cb5678d28d
Merge pull request #263068 from hraban/clisp-docheck
clisp: doCheck = true
2023-10-25 05:57:19 +00:00
R. Ryantm
c93589755b babashka-unwrapped: 1.3.184 -> 1.3.185 2023-10-25 01:08:23 +00:00
R. Ryantm
60a0ada1f8 zef: 0.19.1 -> 0.20.0 2023-10-24 06:57:07 +00:00
Hraban Luyat
731dffef22 clisp: doCheck = true 2023-10-24 00:33:56 -04:00
Mario Rodas
7add5b574e
Merge pull request #262962 from ereslibre/bump-wasmtime
wasmtime: 13.0.0 -> 14.0.1
2023-10-23 18:40:33 -05:00
Rafael Fernández López
109c77608e wasmtime: 13.0.0 -> 14.0.1 2023-10-23 21:37:18 +02:00
Maximilian Bosch
3ceea2785e
evcxr: 0.15.1 -> 0.16.0
ChangeLog: https://github.com/evcxr/evcxr/releases/tag/v0.16.0
2023-10-23 11:20:35 +02:00
github-actions[bot]
9f5438ccdf
Merge staging-next into staging 2023-10-23 06:01:38 +00:00
Mario Rodas
c09b858ab9
Merge pull request #262757 from marsam/update-luau
luau: 0.598 -> 0.600
2023-10-22 19:03:52 -05:00
github-actions[bot]
df9eab6771
Merge staging-next into staging 2023-10-23 00:03:00 +00:00
Felix Bühler
5c00419078
Merge pull request #261849 from figsoda/starlark
starlark-rust: 0.9.0 -> 0.10.0
2023-10-22 20:59:27 +02:00