Commit Graph

72776 Commits

Author SHA1 Message Date
davidak
6ea8d5ee71
Merge pull request #165297 from Stunkymonkey/treewide-pname-version-17
treewide: rename name to pname&version
2022-03-24 16:38:33 +01:00
Ryan Mulligan
b27a002344
Merge pull request #165329 from r-ryantm/auto-update/werf
werf: 1.2.77 -> 1.2.78
2022-03-24 07:58:24 -07:00
Ryan Mulligan
994642544e
Merge pull request #165594 from r-ryantm/auto-update/marvin
marvin: 22.7.0 -> 22.8.0
2022-03-24 07:57:52 -07:00
Ryan Mulligan
85d606f54e
Merge pull request #165595 from r-ryantm/auto-update/cmctl
cmctl: 1.7.1 -> 1.7.2
2022-03-24 07:57:34 -07:00
R. Ryantm
81a80c69f7 cmctl: 1.7.1 -> 1.7.2 2022-03-24 10:38:19 +00:00
R. Ryantm
a7f7b6977f marvin: 22.7.0 -> 22.8.0 2022-03-24 10:35:36 +00:00
Maxine Aubrey
ae79018c44
docker: 20.10.13 -> 20.10.14
https://docs.docker.com/engine/release-notes/#201014
2022-03-24 10:50:48 +01:00
zowoq
508549156c containerd: 1.6.1 -> 1.6.2
https://github.com/containerd/containerd/releases/tag/v1.6.2
2022-03-24 19:23:45 +10:00
Vincent Laporte
3d0a9d1668 coq_8_15: 8.15.0 → 8.15.1 2022-03-24 10:17:42 +01:00
zowoq
2d2fd406c4 crun: 1.4.3 -> 1.4.4
https://github.com/containers/crun/releases/tag/1.4.4
2022-03-24 18:27:06 +10:00
Bobby Rong
3e6fb7d3b9
Merge pull request #165565 from bobby285271/fractal
fractal: fix build with meson 0.61
2022-03-24 16:13:27 +08:00
Bobby Rong
a13c1e2763 sound-juicer: fix build with meson 0.61 2022-03-24 16:11:38 +08:00
Jörg Thalheim
ee2623e2c7
Merge pull request #165548 from equirosa/signal-desktop
signal-desktop: 5.35.0 -> 5.36.0
2022-03-24 07:59:03 +00:00
Bobby Rong
afb5dfaf07
fractal: fix build with meson 0.61 2022-03-24 14:06:23 +08:00
Artturi
1edbe1754f
Merge pull request #163701 from tams/obsidian-protocol-handler 2022-03-24 06:13:50 +02:00
Eduardo Quiros
73faeff43e
signal-desktop: 5.35.0 -> 5.36.0 2022-03-23 21:13:31 -06:00
Ivv
9fb449b2d9
Merge pull request #164887 from r-ryantm/auto-update/ryujinx
ryujinx: 1.1.76 -> 1.1.77
2022-03-24 01:09:21 +01:00
Felix Buehler
3bc5196252 treewide: rename name to pname&version 2022-03-23 22:55:50 +01:00
Martin Weinelt
b3529accfb
firefox: reformat, sort, cleanup
It is normal for such a large derivation to accumulate mixed codestyles
over all those years making it harder to maintain.

By splitting up dependencies to one per line I noticed two unused
dependencies (hunspell, sqlite) that were removed in this change.

Also most lists are now sorted alphabetically, so reasoning about them
has become much easier.

Lists now use the same style for indentation and concat, and environment
variables are all defined in preConfigure as opposed to bare in the
derivation.

The object dir, firefox build directory, is now in a predictable
directory at ${pwd}/mozobj as opposed to ${pwd}/obj-@CONFIG_GUESS@,
saving us one wildcard expansion. This is also a good prepration for the
PGO build where we need to reference bits inside this directory.

Added a few comments and clarified others from what I've learned how the
firefox build works.
2022-03-23 17:03:42 +01:00
Martin Weinelt
178d447610
firefox: pass pciutils via wrapper instead of patching it 2022-03-23 17:03:42 +01:00
Martin Weinelt
51e5f33899
firefox: fix system libffi usage
Since Firefox 51 the --enable-system-ffi flag was renamed to
--with-systemd-ffi when it moved to the javascript toolkit parts. Rename
the flag accordingly and reintroduce the dependency.

mozbz#1294803
2022-03-23 17:03:41 +01:00
Martin Weinelt
08ea534e67
firefox: drop darwin support
Darwin support was marked broken in 2019 with Firefox 69 and has missed
therefore missed out and not been tested on the following 29 major
releases since.

It cannot be supported again without a darwin user stepping up to take
care and work on and test every major release, which hasn't happened
since I took over maintainership.

The recommendation of the people that tend to the firefox source build
is for darwin users to use firefox-bin instead.
2022-03-23 17:03:41 +01:00
Martin Weinelt
71d879b16b
firefox: drop pipewire from build inputs
Firefox does not support passing pipewire as a system library and
instead relies on a vendored copy it ships. We keep the flag because it
is tied into the wrapper, because we still need to have access to its
libraries at runtime.
2022-03-23 17:03:41 +01:00
Martin Weinelt
48eabf6838
firefox: drop hint regarding system cairo
Building with system cairo has been unsupported since Firefox 60
(mozbz#1432751) and the flag was removed in 2021 with Firefox 92
(mozbz#1722653).
2022-03-23 17:03:41 +01:00
Martin Weinelt
25e22d96ba
firefox: enable necko wifi scanner
Tied to the geolocation support flag. On Linux this uses the DBus
interface of NetworkManager to query visible accesspoints and relay them
to Mozilla location service in return for position approximation.
2022-03-23 17:03:41 +01:00
Martin Weinelt
e921e84e9d
firefox: don't set BUILD_OFFICIAL
It was removed in 2009 in favor of MOZILLA_OFFICIAL

mozbz#435923
2022-03-23 17:03:40 +01:00
Martin Weinelt
cfcc611cb4
firefox: use our own libwebp 2022-03-23 17:03:40 +01:00
Martin Weinelt
2f31fe95fd
firefox: rename patches arg to extraPatches
This is for consistency with other extra arguments that can be handed to
firefox common.nix.

Also pull the patch phase of the derivation closer together and use the
same list concat style as elsewhere.
2022-03-23 17:03:40 +01:00
Martin Weinelt
350f1345a7
firefox: unpin autoconf & icu, drop yasm
Let's not be the package that is stuck on arbitrarily old dependency
versions that should be removed anyway.
2022-03-23 17:03:40 +01:00
Jörg Thalheim
68f2f2cc23
Merge pull request #165447 from bobby285271/gnome-podcasts
gnome-podcasts: fix build with meson 0.61
2022-03-23 13:52:57 +00:00
markuskowa
3095b43655
Merge pull request #165368 from sikmir/gnuastro
gnuastro: init at 0.17
2022-03-23 13:04:04 +01:00
Sandro
14ac231936
Merge pull request #165145 from OPNA2608/update/corrscope 2022-03-23 12:20:04 +01:00
Bobby Rong
adc5c392f4
gnome-podcasts: fix build with meson 0.61 2022-03-23 19:10:59 +08:00
Sandro
568a402fc4
Merge pull request #165273 from alyssais/cgit-pink-1.3.0 2022-03-23 10:41:35 +01:00
K900
ddcca20594
n8n: 0.168.1 → 0.169.0 (#165066)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-23 08:19:10 +01:00
OPNA2608
0880b7eae1 corrscope: 0.7.1 -> 0.8.0 2022-03-23 08:14:17 +01:00
Bernardo Meurer
02ec7d6673
Merge pull request #165350 from mweinelt/firefox
firefox{,-bin}: 98.0.1 -> 98.0.2
2022-03-22 22:14:24 -07:00
github-actions[bot]
247c94fc6a terraform-providers: update 2022-03-23 2022-03-23 15:09:54 +10:00
Sandro
8f0607cab8
Merge pull request #165311 from tfmoraes/zettlr-2.2.4 2022-03-23 05:52:30 +01:00
Francesco Gazzetta
f40327ce40
hut: init at unstable-2022-03-02 (#162663)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-23 05:51:47 +01:00
Chuang Zhu
e9c91a137a
gotktrix: init at 0.1.1 (#162571)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-23 05:50:12 +01:00
Nikolay Korotkiy
d9d3fe9b7c
gnuastro: init at 0.17 2022-03-23 07:37:18 +03:00
Sandro
7c641c7a5d
Merge pull request #165351 from babbaj/gpu-screen-recorder 2022-03-23 05:35:55 +01:00
Sandro
916acdbcf6
Merge pull request #165203 from dan4ik605743/tonelib_jam_bump 2022-03-23 05:02:19 +01:00
Sandro
fdf869c75c
Merge pull request #165202 from dan4ik605743/tonelib_gfx_bump 2022-03-23 05:01:35 +01:00
Sandro
47102eca11
Merge pull request #165192 from IvarWithoutBones/init/goldberg 2022-03-23 05:00:31 +01:00
Sandro
aeadc86174
Merge pull request #165143 from andresilva/andre/polkadot-0.9.18 2022-03-23 04:55:33 +01:00
Sandro
2abe471a5d
Merge pull request #165208 from r-ryantm/auto-update/docker-slim 2022-03-23 04:53:13 +01:00
Sandro
fb9e9db256
Merge pull request #165209 from dan4ik605743/yandex-bump 2022-03-23 04:53:03 +01:00
Sandro
7e908a4c0e
Merge pull request #165240 from peri4n/master 2022-03-23 04:30:35 +01:00