Commit graph

382312 commits

Author SHA1 Message Date
github-actions[bot] e8d5ce419a
Merge staging-next into staging 2022-05-31 18:01:50 +00:00
github-actions[bot] d6ede66f6a
Merge master into staging-next 2022-05-31 18:01:11 +00:00
Janne Heß 692517bf85
Merge pull request #175172 from dotlambda/ocrmypdf-13.4.6
python310Packages.ocrmypdf: 13.4.5 -> 13.4.6
2022-05-31 19:51:51 +02:00
Janne Heß bd54a642e9
Merge pull request #175242 from VergeDX/flat-remix-gnome
flat-remix-gnome: update 20220510 -> 20220524
2022-05-31 19:51:11 +02:00
Janne Heß f3182bb471
Merge pull request #175315 from romildo/upd.qogir-theme
qogir-theme: 2022-04-29 -> 2022-05-29
2022-05-31 19:50:33 +02:00
Janne Heß 67b2c5e914
Merge pull request #175310 from sayanarijit/master
xplr: 0.17.6 -> 0.18.0
2022-05-31 19:50:16 +02:00
Maximilian Bosch 185ee01e80
Merge pull request #173273 from kfollesdal/grafana-azuread
nixos/grafana: add new options to grafana module
2022-05-31 19:24:33 +02:00
Ryan Burns 14dac5a319
Merge pull request #175360 from pennae/pulseaudio-without-bluetooth
pulseaudio: fix !bluetoothSupport build
2022-05-31 10:18:13 -07:00
Pavol Rusnak 49a2bcc6e2
Merge pull request #175612 from r-ryantm/auto-update/python310Packages.blocksat-cli 2022-05-31 17:49:13 +02:00
Martin Weinelt aa40523549
Merge pull request #175514 from mweinelt/mozilla 2022-05-31 17:34:51 +02:00
Artturi 2e6d39ac82
Merge pull request #175178 from Artturin/rustthing1
nushell: use cargo-edit instead of a patch to add pkg-config feature
2022-05-31 18:32:53 +03:00
maxine [they] 945fcc987f
Merge pull request #175564 from r-ryantm/auto-update/gnome.gnome-software
gnome.gnome-software: 42.1 -> 42.2
2022-05-31 17:21:21 +02:00
Thomas Tuegel 7993bd248c
Merge pull request #175182 from SuperSandro2000/khelpcenter
plasma5Packages.khelpcenter: fix not finding man pages
2022-05-31 10:16:55 -05:00
R. Ryantm 87d4a0667b python310Packages.blocksat-cli: 0.4.3 -> 0.4.4 2022-05-31 15:15:32 +00:00
Martin Weinelt ab1dd069c7
firefox-devedition-bin-unwrapped: 101.0b9 -> 102.0b1 2022-05-31 16:34:39 +02:00
Martin Weinelt 172e3144ab
firefox-beta-bin-unwrapped: 101.0b9 -> 102.0b1 2022-05-31 16:34:39 +02:00
Martin Weinelt 78ffb8f7ae
spidermonkey_91: 91.9.1 -> 91.10.0 2022-05-31 16:34:39 +02:00
Martin Weinelt f89d5a7f2c
firefox-esr-91-unwrapped: 91.9.1esr -> 91.10.0esr
https://www.mozilla.org/en-US/firefox/91.10.0/releasenotes/
https://www.mozilla.org/en-US/security/advisories/mfsa2022-21/

Fixes: CVE-2022-31736, CVE-2022-31737, CVE-2022-31738, CVE-2022-31739,
       CVE-2022-31740, CVE-2022-31741, CVE-2022-31742, CVE-2022-31747
2022-05-31 16:34:39 +02:00
Martin Weinelt 8353459d92
firefox-bin-unwrapped: 100.0.2- -> 101.0
https://www.mozilla.org/en-US/firefox/101.0/releasenotes/
https://www.mozilla.org/en-US/security/advisories/mfsa2022-20/

Fixes: CVE-2022-31736, CVE-2022-31737, CVE-2022-31738, CVE-2022-31739,
       CVE-2022-31740, CVE-2022-31741, CVE-2022-31742, CVE-2022-31743,
       CVE-2022-31744, CVE-2022-31745, CVE-2022-1919, CVE-2022-31747,
       CVE-2022-31748
2022-05-31 16:34:15 +02:00
Martin Weinelt 332711833d
firefox-unwrapped: 100.0.2- -> 101.0
https://www.mozilla.org/en-US/firefox/101.0/releasenotes/
https://www.mozilla.org/en-US/security/advisories/mfsa2022-20/

Fixes: CVE-2022-31736, CVE-2022-31737, CVE-2022-31738, CVE-2022-31739,
       CVE-2022-31740, CVE-2022-31741, CVE-2022-31742, CVE-2022-31743,
       CVE-2022-31744, CVE-2022-31745, CVE-2022-1919, CVE-2022-31747,
       CVE-2022-31748
2022-05-31 16:33:22 +02:00
Alyssa Ross 5643714dea stdenvBootstrapTools: inherit {cross,local}System
It's expected that attributes in the top-level package set will all use
that package set, but this wasn't the case for the bootstrap tools.
This led some very confusing behaviour:

- pkgsMusl.stdenvBootstrapTools would build glibc bootstrap tools
- stdenvBootstrapTools was _always_ cross compiled, even if
  Nixpkgs wasn't, because it always set crossSystem.  This also didn't
  match the behaviour of using make-bootstrap-tools.nix as an
  entrypoint, where crossSystem would default to null.

For the Linux stdenv, I've made the ideal fix, which is to make pkgs an
argument rather than taking the arguments for pkgs, and then
re-importing it.  This means it'll always use exactly the same package
set that's calling it, and should also mean faster eval due to not
importing Nixpkgs twice.

The Darwin stdenv is more complicated, and I'm not able to easily test
it, so I wasn't confident in making the same fix there.  Instead, I've
just made sure crossSystem and localSystem are set to the correct values
so they're not always cross compiled and match the parent package set's.
It would still be preferable if somebody could make Darwin's
make-bootstrap-tools.nix take pkgs as an argument, rather than all the
arguments for pkgs.
2022-05-31 14:32:27 +00:00
Robert Hensing c5d82eb1ab
Merge pull request #174939 from FliegendeWurst/nixos-tests
nixos/tests: various fixes
2022-05-31 16:31:06 +02:00
Robert Hensing 53326189ba
Merge pull request #174829 from blaggacao/fix/cleanup-nixpkgs-initial-system
nixos: remove effect-less nixpgks.initialSystem
2022-05-31 16:26:25 +02:00
Robert Hensing 07a875c603
Merge pull request #175274 from hercules-ci/issue-175196
pkgs/tests/config.nix: Make test future proof
2022-05-31 16:02:37 +02:00
Robert Hensing c532e8c44e
Merge pull request #175455 from michaelmouf/patch-1
Fix typo in compareLists docstring
2022-05-31 16:01:16 +02:00
Sandro 0950dcd37b
Merge pull request #174261 from LumiGuide/lumi-team
picoscope, openrazer, it87, esptool: move maintainership to new LumiGuide team
2022-05-31 15:40:04 +02:00
Sandro 1fdeb86121
Merge pull request #169468 from Atemu/update/android-env
androidenv: regenerate repo.json
2022-05-31 15:38:21 +02:00
Jakub Kozłowski 346b98c22b
Merge pull request #175496 from kubukoz/scala-cli-updater 2022-05-31 15:19:54 +02:00
Lenz Weber-Tronic f51cb36f2c
replay-io: init at 20220516-372662e7c79d-a9c63f38ea9b, replay-node-cli: init at 20220506-096c12cb47eb-a1d05f422dff (#166813)
* replay-io: init at 20220401-29dd94a55ca4

* init replay-node-cli at 20220404-dfd3123c41e3-4e44aca4c7ee

* replay-io: init at 20220422-1d46e798ffbf-3eecf49b757b, replay-node-cli: init at 0.1.7-20220422-a26b4562ebf7-3eecf49b757b

* fixup

* apply feedback

* replay-io: init at 20220516-372662e7c79d-a9c63f38ea9b, replay-node-cli: init at 20220506-096c12cb47eb-a1d05f422dff

* use `stripRoot: false`
2022-05-31 14:36:05 +02:00
github-actions[bot] 2f6b084a18
Merge staging-next into staging 2022-05-31 12:02:02 +00:00
github-actions[bot] c451d8d636
Merge master into staging-next 2022-05-31 12:01:21 +00:00
ckie 958fcfb4fa
Merge pull request #175477 from bzizou/astral
astral: init at 5.7.1
2022-05-31 14:55:37 +03:00
R. Ryantm 36049542b8 gnome.gnome-boxes: 42.0.1 -> 42.1 2022-05-31 13:39:23 +02:00
R. Ryantm 002669d20a glib: 2.72.1 -> 2.72.2 2022-05-31 13:39:04 +02:00
Bobby Rong 81c336e3a1
Merge pull request #175253 from wahjava/update-cinny
cinny: 2.0.3 -> 2.0.4
2022-05-31 19:37:17 +08:00
Ulrik Strid a9ce8f1ef2 ocamlPackages.json-data-encoding: 0.10 -> 0.11 2022-05-31 13:32:40 +02:00
Ulrik Strid d27cc392f0 ocamlPackages.resto: 0.6.1 -> 0.7 2022-05-31 13:32:40 +02:00
R. Ryantm c356e7246f gtk4: 4.6.4 -> 4.6.5 2022-05-31 13:17:26 +02:00
Markus Wamser 2c74606664
.github/PULL_REQUEST_TEMPLATE.md: 21.11 -> 22.05 2022-05-31 19:14:32 +08:00
Bobby Rong 4d807ba63f
Merge pull request #175337 from muscaln/picosdk
pico-sdk: 1.3.0 -> 1.3.1
2022-05-31 19:07:22 +08:00
Fabian Affolter b5702da24e
Merge pull request #175193 from fabaff/verboselogs
python310Packages.verboselogs: switch to pytestCheckHook
2022-05-31 13:05:21 +02:00
Bobby Rong 7c4ac6ca5b
Merge pull request #175572 from wamserma/rn2205-typofix
release-notes: fix typo
2022-05-31 19:00:55 +08:00
Bobby Rong fed9ba1b5e
Merge pull request #175223 from fsdlkj/update-taisei
taisei: 1.3.1 -> 1.3.2
2022-05-31 18:57:37 +08:00
Bobby Rong 6d2d2e3efb
Merge pull request #175099 from a-m-joseph/pr/bump/koreader
koreader: 2022.03.01 -> 2022.05.01
2022-05-31 18:45:59 +08:00
Bobby Rong c5533b7b29
Merge pull request #175273 from DarkOnion0/master
drawio: 18.0.6 -> 18.1.3
2022-05-31 18:42:53 +08:00
Bobby Rong 794c89e523
Merge pull request #175448 from sikmir/tile38
tile38: 1.27.1 → 1.28.0
2022-05-31 18:22:32 +08:00
Alyssa Ross 5db40e768d dpdk-kmods.src: use HTTPS URL 2022-05-31 10:09:05 +00:00
Sergei Trofimovich 7209d1f19a
Merge pull request #175251 from trofi/workaround-fno-common-for-sil
sil: add -fcommon workaround
2022-05-31 09:22:11 +00:00
Linus Heckemann 98e833fe59
Merge pull request #174094 from mayflower/lua-security
lua5_{2,4}: add patch for CVE-2022-28805
2022-05-31 11:03:34 +02:00
Jörg Thalheim 084930fa14
Merge pull request #175577 from Mic92/terraform
terraform-providers: also include name in error messages
2022-05-31 09:44:15 +01:00