Commit Graph

433275 Commits

Author SHA1 Message Date
Anderson Torres
d26912d7fe
Merge pull request #204895 from atorres1985-contrib/jove
jove: 4.17.4.6 -> 4.17.4.7
2022-12-06 22:08:58 -03:00
AndersonTorres
16097d4a41 jove: 4.17.4.6 -> 4.17.4.7 2022-12-06 21:40:06 -03:00
Sandro
94624fb168
Merge pull request #188839 from muscaln/tiled-bump 2022-12-07 01:35:00 +01:00
Sandro
0c0281fcdf
Merge pull request #197566 from dit7ya/zincsearch 2022-12-07 01:34:33 +01:00
R. Ryantm
cce7fe5da7 syft: 0.62.2 -> 0.62.3 2022-12-07 00:33:49 +00:00
Martin Weinelt
f1433e66f9
python38: 3.11.0 -> 3.11.1
https://www.python.org/downloads/release/python-3111/
https://docs.python.org/release/3.11.1/whatsnew/changelog.html#python-3-11-1
https://pythoninsider.blogspot.com/2022/12/python-3111-3109-3916-3816-3716-and.html

Fixes: CVE-2022-45061
2022-12-07 01:26:55 +01:00
Greg Pfeil
58eb3d3806 mkshell: refactor Bash snippet
I’ve been using https://github.com/Fuuzetsu/shellcheck-nix-attributes on most of
my derivations, and attaching it to one derived from `mkShell` resulted in

```
shellcheck_buildPhase

In /nix/store/8774inwznc87dwhac90winc9b5k6gmkb-nix-shell_shellcheck_buildPhase line 1:
echo "------------------------------------------------------------" >>$out
^-- SC2129 (style): Consider using { cmd1; cmd2; } >> file instead of individual redirects.
                                                                      ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
echo "------------------------------------------------------------" >>"$out"

In /nix/store/8774inwznc87dwhac90winc9b5k6gmkb-nix-shell_shellcheck_buildPhase line 2:
echo " WARNING: the existence of this path is not guaranteed." >>$out
                                                                 ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
echo " WARNING: the existence of this path is not guaranteed." >>"$out"

In /nix/store/8774inwznc87dwhac90winc9b5k6gmkb-nix-shell_shellcheck_buildPhase line 3:
echo " It is an internal implementation detail for pkgs.mkShell."   >>$out
                                                                      ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
echo " It is an internal implementation detail for pkgs.mkShell."   >>"$out"

In /nix/store/8774inwznc87dwhac90winc9b5k6gmkb-nix-shell_shellcheck_buildPhase line 4:
echo "------------------------------------------------------------" >>$out
                                                                      ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
echo "------------------------------------------------------------" >>"$out"

In /nix/store/8774inwznc87dwhac90winc9b5k6gmkb-nix-shell_shellcheck_buildPhase line 5:
echo >> $out
        ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
echo >> "$out"

In /nix/store/8774inwznc87dwhac90winc9b5k6gmkb-nix-shell_shellcheck_buildPhase line 7:
export >> $out
          ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
export >> "$out"

For more information:
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
  https://www.shellcheck.net/wiki/SC2129 -- Consider using { cmd1; cmd2; } >>...
```
——— https://garnix.io/build/qgxbameB

This addresses the shellcheck complaints.
2022-12-07 01:25:48 +01:00
Martin Weinelt
71c4a3a0b1
python38: 3.8.15 -> 3.8.16
https://www.python.org/downloads/release/python-3816/
https://pythoninsider.blogspot.com/2022/12/python-3111-3109-3916-3816-3716-and.html

Fixes: CVE-2022-37454, CVE-2022-45061, CVE-2015-20107
2022-12-07 01:25:30 +01:00
Sandro
944a28da8f
Merge pull request #201379 from SuperSandro2000/mpv-unwrapped 2022-12-07 01:24:09 +01:00
Nick Cao
1c05e6a249 jtag-remote-server: unstable-2022-06-09 -> 1.2 2022-12-07 01:24:00 +01:00
Martin Weinelt
10bab2150c
python37: 3.7.15 -> 3.7.16
https://www.python.org/downloads/release/python-3716/
https://pythoninsider.blogspot.com/2022/12/python-3111-3109-3916-3816-3716-and.html

Fixes: CVE-2022-37454, CVE-2022-45061, CVE-2015-20107
2022-12-07 01:23:29 +01:00
Ben Wolsieffer
e21aa200b5 python3Packages.btrfsutil: build separately from btrfs-progs
btrfs-progs was installing its Python bindings as an egg, which doesn't work
with Nix. It turns out that there is no real benefit to building the Python
bindings as part of the btrfs-progs package. Instead, we can just package them
separately, and use nixpkgs' normal Python packaging support to install them as
a wheel. This fixes the bindings and reduces closure sizes.
2022-12-06 19:06:04 -05:00
figsoda
35be6085dc
Merge pull request #204870 from tjni/httplz
httplz: fix for rust 1.65
2022-12-06 19:05:57 -05:00
figsoda
4bae8ca3de
Merge pull request #204860 from luxus/netbird-0-11-4
netbird: 0.11.3 -> 0.11.4
2022-12-06 19:05:10 -05:00
Yoan Tournade
4c915f1d1a Add BORG_RSH entry under an environment option 2022-12-07 01:00:59 +01:00
Jack Kelly
ad8edb6259 carlito: Use stdenvNoCC.mkDerivation
carlito used to call `fetchzip` directly, and the fact that it was a
fixed-output derivation meant nobody noticed that:

1. the derivation no longer built from source (due to changes in
   `fetchzip`), and

2. the updated fontconfig xml never got used.
2022-12-07 10:00:43 +10:00
wackbyte
65c34b12c2
tarmac: init at 0.7.0 2022-12-06 18:22:06 -05:00
Thiago Kenji Okada
7b7588edb1
Merge pull request #204370 from atorres1985-contrib/mame-refactor
mame: refactor
2022-12-06 23:17:42 +00:00
Vladimír Čunát
9f1ed1f868
Merge #203682: linux: further cleanup config after drop of 4.9 2022-12-06 23:45:07 +01:00
Sandro
2efcb93ac3
Merge pull request #194443 from pborzenkov/libnfs-pthread 2022-12-06 23:43:12 +01:00
Thiago Kenji Okada
c12732f882 openjfx15: drop i686-linux support
gradle5 does not support i686-linux, so it is impossible to evaluate
this derivation anyway.
2022-12-06 22:39:20 +00:00
Thiago Kenji Okada
33b058f780 openjfx14: enableJavaFX by default 2022-12-06 22:39:19 +00:00
Thiago Kenji Okada
d0f37a55b1 openjfx13: enableJavaFX by default 2022-12-06 22:39:19 +00:00
Thiago Kenji Okada
4837c5f16a openjfx12: enableJavaFX by default 2022-12-06 22:39:19 +00:00
Thiago Kenji Okada
6d3a447785 openjfx11: enableJavaFX by default 2022-12-06 22:39:19 +00:00
Thiago Kenji Okada
b51a1d1f67 openjfx11: 11.0.3+1 -> 11.0.11+1
This updates the Python version needed to build WebKit from 2 to 3,
fixing the previous issue we had.
2022-12-06 22:39:19 +00:00
John Ericson
61f868c509
Merge pull request #192633 from cidkidnix/android-muldefs
Add muldefs to ldFlags, and fix GHC targetPrefix on android
2022-12-06 17:26:41 -05:00
AndersonTorres
9a7e20255b mame: revert the use of substituteAll to substituteInPlace 2022-12-06 19:24:50 -03:00
AndersonTorres
83d89a2fad mame: refactor
- Use mame icon from papirus instead of downloading one from Archlinux packages;
- Rename the diff file to something more self-documenting;
- Add longDescription to mame;
- Add description to mame-tools;
- Get rid of top-level inheritance.
2022-12-06 19:24:50 -03:00
Anderson Torres
6b5cf5342e
Merge pull request #204765 from ylh/patch-p9p-bump
plan9port: 2021-10-19 -> 2022-09-12
2022-12-06 19:06:52 -03:00
Sandro
7c4143d206
Merge pull request #204243 from GaetanLepage/update-invidious 2022-12-06 23:00:32 +01:00
Xe
3d315c8d6b tailscale: 1.32.3 -> 1.34.0
Signed-off-by: Xe Iaso <me@xeiaso.net>
2022-12-06 16:52:46 -05:00
Theodore Ni
abbfe517bd
httplz: fix for rust 1.65 2022-12-06 13:51:46 -08:00
Fabian Affolter
915d9d054f
linkchecker: modernize
- switch to pytestCheckHook
2022-12-06 22:40:36 +01:00
endgame
7cb253ed83
mdds: Get source archives from gitlab (#204729) 2022-12-06 22:37:35 +01:00
Sandro
3451a0cb2c
Merge pull request #204728 from anna328p/lexend-update 2022-12-06 22:37:03 +01:00
R. Ryantm
5710f07f5a snappymail: 2.22.4 -> 2.22.6 2022-12-06 21:36:56 +00:00
Sandro
bc3206a9e2
Merge pull request #202909 from symphorien/ipp-usb 2022-12-06 22:36:30 +01:00
Fabian Affolter
5c1b0ff5cc
linkchecker: add changelog to meta 2022-12-06 22:31:14 +01:00
Fabian Affolter
693d42397b
Merge pull request #204247 from r-ryantm/auto-update/json-schema-for-humans
json-schema-for-humans: 0.42.1 -> 0.44
2022-12-06 22:29:44 +01:00
Artturi
cfdf35a667
Merge pull request #204159 from wegank/ugarit-darwin
ugarit, ugarit-manifest-maker: fix build on aarch64-darwin
2022-12-06 23:29:14 +02:00
Artturi
850fb23aa8
Merge pull request #204214 from wegank/wxgtk30-gtk2-drop
treewide: drop wxGTK30-gtk2
2022-12-06 23:28:43 +02:00
André Silva
1c68ea590d
Merge pull request #203895 from MGenerowicz/patch-9
ledger-live-desktop: 2.49.2 -> 2.50.0
2022-12-06 21:22:26 +00:00
Fabian Affolter
bc9510f2a1 terraform-compliance: 1.2.11 -> 1.3.34
Diff: https://github.com/terraform-compliance/cli/compare/refs/tags/1.2.11...1.3.34

Changelog: https://github.com/terraform-compliance/cli/releases/tag/1.3.34
2022-12-06 22:16:51 +01:00
luxus
9dcf9cf5b6 netbird: 0.11.3 -> 0.11.4 2022-12-06 22:06:27 +01:00
cidkidnix
2fda814620 android-ndk: change to targetPrefix 2022-12-06 15:03:09 -06:00
Sandro
87b1275615
Merge pull request #204777 from r-ryantm/auto-update/python310Packages.db-dtypes 2022-12-06 21:59:03 +01:00
laalsaas
cbf4a44852 blesh: init module 2022-12-06 21:40:23 +01:00
Léo Gaspard
ad25aa1098
androidenv: use emulator from the path that makes it find qemu (#202088) 2022-12-06 21:16:49 +01:00
Guillaume Girol
8e7a32d061 nixos/ipp-usb: add module 2022-12-06 21:06:54 +01:00