Commit graph

433108 commits

Author SHA1 Message Date
Fabian Affolter
5bcb3a4992
Merge pull request #204837 from fabaff/strenum-bump
python310Packages.strenum: 0.4.8 -> 0.4.9
2022-12-07 09:22:51 +01:00
R. Ryantm
875d397433 v2ray-geoip: 202211240054 -> 202212010055 2022-12-07 15:53:17 +08:00
Pierre Bourdon
d1b425c83c
Merge pull request #204923 from r-ryantm/auto-update/tpm2-tools
tpm2-tools: 5.3 -> 5.4
2022-12-07 08:12:41 +01:00
R. Ryantm
bf30b002ca oxker: 0.1.7 -> 0.1.9 2022-12-07 14:48:38 +08:00
Bobby Rong
515e826974
Merge pull request #204842 from leo60228/latte-dock-fixup
latte-dock: use postInstall instead of fixupPhase
2022-12-07 14:45:42 +08:00
R. Ryantm
73078c7e6d freedv: 1.8.4 -> 1.8.5 2022-12-07 14:36:46 +08:00
R. Ryantm
0e4e7d94cc dar: 2.7.7 -> 2.7.8 2022-12-07 14:34:58 +08:00
R. Ryantm
911aff0f29 refurb: 1.7.0 -> 1.8.0 2022-12-07 14:34:00 +08:00
adisbladis
d80a932620
Merge pull request #204938 from adisbladis/poetry2nix-1_38_0
poetry2nix 1.37.0 -> 1.38.0
2022-12-07 18:50:07 +13:00
adisbladis
1fc77acd1d poetry2nix 1.37.0 -> 1.38.0 2022-12-07 18:33:07 +13:00
github-actions[bot]
317dde2ba4 terraform-providers.tfe: 0.39.0 → 0.40.0 2022-12-07 14:17:15 +10:00
github-actions[bot]
4084a79700 terraform-providers.scaleway: 2.7.1 → 2.8.0 2022-12-07 14:17:15 +10:00
github-actions[bot]
6f2e1d9edf terraform-providers.ovh: 0.23.0 → 0.24.0 2022-12-07 14:17:15 +10:00
github-actions[bot]
efb53d5a0a terraform-providers.opennebula: 1.0.2 → 1.1.0 2022-12-07 14:17:15 +10:00
github-actions[bot]
568c5245b7 terraform-providers.newrelic: 3.8.0 → 3.9.0 2022-12-07 14:17:15 +10:00
github-actions[bot]
66d9aaa7e1 terraform-providers.alicloud: 1.193.0 → 1.193.1 2022-12-07 14:17:15 +10:00
github-actions[bot]
f0cc7113f8 terraform-providers.mongodbatlas: 1.6.0 → 1.6.1 2022-12-07 14:17:15 +10:00
github-actions[bot]
c86596baa0 terraform-providers.elasticsearch: 2.0.6 → 2.0.7 2022-12-07 14:17:15 +10:00
figsoda
9c879bacaf
Merge pull request #204804 from figsoda/ruff
ruff: 0.0.132 -> 0.0.165
2022-12-06 22:52:53 -05:00
R. Ryantm
2fcc9d327d protoc-gen-validate: 0.9.0 -> 0.9.1 2022-12-06 22:44:20 -05:00
Nikolay Korotkiy
b67c445e84
Merge pull request #204917 from r-ryantm/auto-update/tippecanoe
tippecanoe: 2.13.1 -> 2.15.0
2022-12-07 07:28:58 +04:00
R. Ryantm
abfdbac47a tpm2-tools: 5.3 -> 5.4 2022-12-07 03:22:03 +00:00
R. Ryantm
0be6789850 tippecanoe: 2.13.1 -> 2.15.0 2022-12-07 02:58:53 +00:00
John Ericson
8890f3b893
Merge pull request #203766 from obsidiansystems/build-rust-crate-link-flags
buildRustCrate: Support `cargo:rustc-link-arg` and some friends from build.rs
2022-12-06 21:48:07 -05:00
Bobby Rong
fa01623a88
Merge pull request #204809 from bobby285271/cinnamon
cinnamon.mint-artwork: 1.7.2 -> 1.7.3
2022-12-07 09:45:02 +08:00
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
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
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
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
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
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
Theodore Ni
abbfe517bd
httplz: fix for rust 1.65 2022-12-06 13:51:46 -08: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
Sandro
bc3206a9e2
Merge pull request #202909 from symphorien/ipp-usb 2022-12-06 22:36:30 +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