3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

433081 commits

Author SHA1 Message Date
AndersonTorres 85b6175ccb lib/default.nix: include mesonOption-related functions
To bring them to the scope when calling `lib`.
2022-12-06 23:09:36 -03:00
AndersonTorres 762f0a599e lib/strings.nix: add mesonOption utility function
And some friends, to help write Meson commandline invocations.
2022-12-06 23:09:36 -03: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
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
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
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
Guillaume Girol c3c187bfd6 ipp-usb: init at 0.9.23 2022-12-06 21:06:54 +01:00
Sandro 84c17bc98f
Merge pull request #204330 from jvanbruegge/isabelle-fix-components 2022-12-06 20:46:39 +01:00
0x4A6F 56f11a3f0d
Merge pull request #204739 from r-ryantm/auto-update/jujutsu
jujutsu: 0.5.1 -> 0.6.0
2022-12-06 20:40:57 +01:00
Sergei Trofimovich 36b4518364
Merge pull request #204689 from trofi/qt6Packages.qtwayland-without-xlibsWrapper
qt6Packages.qtwayland: drop unused xlibsWrapper
2022-12-06 19:24:34 +00:00
Sergei Trofimovich 51f76dc5b4
Merge pull request #204687 from trofi/qt6Packages.qtbase-without-xlibsWrapper
qt6Packages.qtbase: drop unused xlibsWrapper
2022-12-06 19:24:19 +00:00
figsoda a3a8b34116
Merge pull request #204813 from wackbyte/bump-gitlens
vscode-extensions.eamodio.gitlens: 2022.11.2204 -> 2022.12.604
2022-12-06 13:52:41 -05:00
Guillaume Girol 3cc4f1d7da
Merge pull request #203671 from symphorien/bindgenhook
treewide: use bindgenhook where possible
2022-12-06 18:45:00 +00:00
figsoda 7a58092d48
Merge pull request #204648 from figsoda/mmtc
mmtc: 0.3.0 -> 0.3.1
2022-12-06 13:31:43 -05:00
lewo 9de04e9c8c
Merge pull request #199393 from r-ryantm/auto-update/open-policy-agent
open-policy-agent: 0.45.0 -> 0.47.0
2022-12-06 19:29:03 +01:00
Guillaume Girol df6a7e941a treewide: use bindgenhook where possible 2022-12-06 19:26:14 +01:00
Fabian Affolter 93706c0f1a
Merge pull request #204755 from fabaff/cryptolyzer-bump
python310Packages.cryptoparser: 0.8.0 -> 0.8.2, python310Packages.cryptolyzer: 0.8.1 -> 0.8.2
2022-12-06 19:08:44 +01:00
Jan van Brügge 698c7342b7
isabelle: fix build on MacOS 2022-12-06 18:05:26 +00:00
Fabian Affolter fa81d500a3
Merge pull request #204742 from r-ryantm/auto-update/python3.10-docstring-to-markdown
python310Packages.docstring-to-markdown: 0.10 -> 0.11
2022-12-06 18:51:43 +01:00
Wael Nasreddine 69dff6a36c
Merge pull request #144455 from Twingate/master 2022-12-06 09:33:20 -08:00
Francesco Gazzetta 25482dc47a
Merge pull request #196389 from fgaz/yaup/init
yaup: init at unstable-2019-10-16
2022-12-06 17:19:38 +00:00
Martin Weinelt 53199487ea
Merge pull request #204817 from sumnerevans/matrix-synapse-1.73 2022-12-06 18:14:00 +01:00