Flakebi
3657f4033b
salt: 3004 -> 3004.1
2022-03-28 22:03:28 +02:00
Bernardo Meurer and GitHub
0e3d0d844e
Merge pull request #166078 from mweinelt/firefox-drm
...
firefox: fix drmSupport flag
2022-03-28 12:49:42 -07:00
Martin Weinelt and Yuka
2cb9593cad
firefox: always build with clang
...
Both LTO and PGO require the use of clang so I think its easier to just
stick with clang for all builds, so PGO and LTO could in theory be used
without each other.
2022-03-28 21:42:49 +02:00
Martin Weinelt and Yuka
4cf4a7b848
firefox: add pname to throw message
...
https://github.com/NixOS/nixpkgs/pull/164646#discussion_r835879348
2022-03-28 21:42:49 +02:00
Martin Weinelt and Yuka
05a6b3c2b7
librewolf: disable pgo support
...
Starts profiling, starts librewolf, but gets stuck and never terminates.
2022-03-28 21:42:49 +02:00
Martin Weinelt and Yuka
6e24b768b3
thunderbird: disable pgo support
...
Tries to connect out to the internet, so sorry, no pgo for thunderbird.
> console.warn: feeds: "downloadFeed: network connection unavailable"
2022-03-28 21:42:49 +02:00
Martin Weinelt and Yuka
0d3772f645
firefox: add profile-guided optimization
...
Lo and behold, we're finally catching up with Mozillas very own firefox
build in terms of speed.
PGO is an optimization technique in which in a first step we create a
build that supports instrumentation, meaning we can use it to create a
profile of how the browser behaved during usage. Then in a second pass
we create the final build that uses the acquired profiling data to
optimize the browser for the workload it actually received during
profiling.
The downside is that with PGO we now need to build Firefox twice, which
increases the build time from around 20 minutes to roughly 50 minutes.
In the Speedometer 2.0 benchmark multiple tests could see a
responsiveness improvemeant around 20-25%, which makes the increased
build time well worth it.
Sadly this benefit seems limited to x86_64-linux, builds on
aarch64-linux get stuck during profiling and I haven't found out why.
Finally, after a long time, we can say:
Closes : #76484
Supersedes: #129503
2022-03-28 21:42:49 +02:00
Aaron L. Zeng and Vincent Laporte
f37810ba4d
ocamlPackages.core_unix: init at 0.14
...
This is a compatibility package for a soon-to-come breaking change in
Jane Street package layout.
2022-03-28 21:41:36 +02:00
Fabian Affolter and GitHub
95c6e27177
Merge pull request #166091 from r-ryantm/auto-update/python310Packages.asyncstdlib
...
python310Packages.asyncstdlib: 3.10.3 -> 3.10.4
2022-03-28 21:41:10 +02:00
Martin Weinelt and GitHub
d3b9cf19bc
Merge pull request #166119 from mweinelt/metar
2022-03-28 21:10:30 +02:00
Fabian Affolter and GitHub
221dfa0857
Merge pull request #165831 from r-ryantm/auto-update/check_ssl_cert
...
checkSSLCert: 2.22.0 -> 2.23.0
2022-03-28 21:08:57 +02:00
Vincent Laporte and Vincent Laporte
9c16cf9005
ocamlPackages.ocplib-endian: disable for OCaml ≤ 4.02
2022-03-28 21:01:41 +02:00
Vincent Laporte and Vincent Laporte
9211608da7
ocamlPackages.wasm: disable with OCaml 4.02
2022-03-28 21:01:41 +02:00
Vincent Laporte and Vincent Laporte
3d7f865ddb
ocamlPackages.uutf: disable with OCaml ≤ 4.02
2022-03-28 21:01:41 +02:00
Vincent Laporte and Vincent Laporte
700c4a7055
ocamlPackages.bolt: remove at 1.4 (broken with OCaml 4.02)
2022-03-28 21:01:41 +02:00
Martin Weinelt
dd3e2f9587
python3Packages.metar: patch another failing test
...
https://github.com/python-metar/python-metar/issues/165
2022-03-28 21:01:09 +02:00
Fabian Affolter and GitHub
f7ccecfe39
Merge pull request #166061 from SuperSandro2000/sshuttle
...
sshuttle: 1.0.5 -> 1.1.0, add SuperSandro2000 as maintainer
2022-03-28 20:52:36 +02:00
Fabian Affolter and GitHub
9b6d194b26
Merge pull request #166080 from r-ryantm/auto-update/python310Packages.aiowebostv
...
python310Packages.aiowebostv: 0.1.3 -> 0.2.0
2022-03-28 20:47:17 +02:00
Fabian Affolter and GitHub
6d90a2cbf1
python3Packages.asyncstdlib: update ordering
2022-03-28 20:46:45 +02:00
sternenseemann and Vincent Laporte
80d8655c15
ocamlPackages.fiat-p256: remove at 0.2.1
...
Upstream has deprecated the package and we no longer depend on it for
anything:
> Archived, now integrated into mirage-crypto-ec (please use that and report issues there)
2022-03-28 18:37:13 +02:00
Ryan Mulligan and GitHub
f9d7452d46
Merge pull request #164617 from r-ryantm/auto-update/rpcs3
...
rpcs3: 0.0.21-13327-6c096b72b -> 0.0.21-13352-e58906cb4
2022-03-28 09:30:12 -07:00
Martin Weinelt and GitHub
e4b25c3f0a
Merge pull request #166092 from mweinelt/rlnotes-frrouting
2022-03-28 18:14:18 +02:00
Martin Weinelt
2a32474802
firefox: fix drmSupport flag
...
In #109133 @alyssais discovered that the drmSupport flag stopped
working. This is because Mozilla decided around Firefox 51
(mozbz#1289634) to swap the default values and our flag was asking for
the wrong thing all along.
Since this flag has now been enabled for multiple years, disabling it
would mean a regression for our users. Leaving it enabled should be
unproblematic since it only controls whether Firefox shows the EME nagbar,
that allows to enable Widevine CDM, when a site requests it. The choice is
therefore completely up to the enduser.
Disabling this nagbar is still possible at runtime by setting
`browser.eme.ui.enabled` to `false`. If Widevine CDM was inadvertently
enabled it can be disabled at `media.gmp-widevinecdm.enabled`.
Supersedes: #109133
2022-03-28 18:12:02 +02:00
Martin Weinelt and GitHub
0165645499
Merge pull request #164116 from NickCao/powerdns
2022-03-28 17:34:07 +02:00
Sandro and GitHub
918f86f622
Merge pull request #166056 from IvarWithoutBones/fix/rtl8821ce-5_17
2022-03-28 17:16:48 +02:00
Sandro and GitHub
e8ed7bf520
Merge pull request #165028 from alyssais/linux-5.17-rtl8821au
2022-03-28 17:10:59 +02:00
Sandro and GitHub
4e486b7da5
Merge pull request #165959 from davidkna/patch-3
2022-03-28 17:10:06 +02:00
Sandro and GitHub
a85e2dcf73
Merge pull request #164182 from IvarWithoutBones/init/gummy
2022-03-28 17:02:25 +02:00
Ryan Mulligan and GitHub
7dc94c5306
Merge pull request #163283 from r-ryantm/auto-update/google-java-format
...
google-java-format: 1.14.0 -> 1.15.0
2022-03-28 08:02:05 -07:00
Martin Weinelt
3221d6d418
rl-2205: fix typo in frrrouting announcement
2022-03-28 16:57:47 +02:00
Sandro and GitHub
945fcb5b41
Merge pull request #165948 from ModdedGamers/svelte-vim-plugins-init
2022-03-28 16:55:27 +02:00
R. Ryantm
2f2049b1fd
python310Packages.asyncstdlib: 3.10.3 -> 3.10.4
2022-03-28 14:51:53 +00:00
Thiago Kenji Okada and GitHub
d968899379
Merge pull request #166055 from thiagokokada/rar-fix-darwin-and-bump
...
rar: fix build on darwin, 6.0.2 -> 6.11
2022-03-28 15:45:55 +01:00
b133ad055b
ydotool: minor fixes ( #166050 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com >
2022-03-28 16:44:02 +02:00
ee684089c3
melt: init at 0.2.0 ( #164439 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com >
2022-03-28 16:38:33 +02:00
Sandro and GitHub
98495e2dbc
Merge pull request #166070 from r-ryantm/auto-update/oh-my-zsh
2022-03-28 16:36:29 +02:00
Sandro and GitHub
dd45456b84
Merge pull request #165936 from ckiee/logiops-init
2022-03-28 16:36:16 +02:00
Sandro and GitHub
970a37ff47
Merge pull request #165962 from SuperSandro2000/bind
2022-03-28 16:34:13 +02:00
Nick Cao
fc49bc19ed
powerdns: redact configure flags from version output to reduce closure size
2022-03-28 22:05:39 +08:00
Nick Cao
e85e545dbd
powerdns: 4.3.1 -> 4.6.1
2022-03-28 22:05:31 +08:00
R. Ryantm
e7aa35ccf1
python310Packages.aiowebostv: 0.1.3 -> 0.2.0
2022-03-28 13:45:45 +00:00
Sandro and GitHub
14371cd82c
Merge pull request #165961 from r-ryantm/auto-update/python310Packages.nocasedict
2022-03-28 15:39:15 +02:00
Ivar Scholten
adf885ca00
gummy: init at 0.1
2022-03-28 15:36:12 +02:00
ckie
d999e48102
logiops: init at 0.2.3
...
Pretty easy to package. Opened issue with upstream to get rid of the one
patch needed: https://github.com/PixlOne/logiops/issues/307
2022-03-28 16:17:51 +03:00
Mr Hedgehog
8c496e6193
vimPlugins.vim-svelte: init at 2022-02-17
2022-03-28 09:11:35 -04:00
Mr Hedgehog
85f2d57a48
vimPlugins.coc-svelte: init at 2022-03-14
2022-03-28 09:11:34 -04:00
Mr Hedgehog
996863b07e
vimPlugins.coc-tailwindcss: init at 2020-08-19
2022-03-28 09:11:33 -04:00
Mr Hedgehog
c8a5b5aa89
vimPlugins: update
2022-03-28 09:11:27 -04:00
Sandro and GitHub
584734ee64
Merge pull request #162820 from r-ryantm/auto-update/xrootd
2022-03-28 14:49:51 +02:00
Maximilian Bosch and GitHub
a6831e8688
Merge pull request #166051 from TredwellGit/linux
...
Linux kernels 2022-03-28
2022-03-28 14:43:11 +02:00