Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
John Titor
22d8492295
google-chrome: 128.0.6613.138 -> 129.0.6668.59 (Darwin)
...
update script works now, yay!
2024-09-22 23:19:54 +05:30
John Titor
bc4914bcf1
google-chrome: fix update script
...
Chrome uses partial rollout for Darwin and Windows
This is represented by `fractionGroup` and `fraction`.
0.25 means 25% of users, 0.5 means 50% of users and so on.
Partial rollouts aren't done on linux, and so `fraction` and `fractionalGroup` is always 1 for it.
Here we add some additional parameters to chrome version history api endpoint, to get the latest version, sort the versions in descending order.
These parameters are redundant on Linux but kept anyway.
See https://github.com/NixOS/nixpkgs/pull/343552#issuecomment-2366799267
Docs: https://developer.chrome.com/docs/web-platform/versionhistory/reference#filter
2024-09-22 23:19:09 +05:30
John Titor
0c6b57f796
google-chrome: 128.0.6613.137 -> 129.0.6668.58
2024-09-22 00:36:27 +05:30
Niko Cantero
489ff23b80
goofcord: 1.6.0 -> 1.7.0
2024-09-19 20:16:52 -04:00
Niko Cantero
55e6535e4e
maintainers: rename nyanbinary to nyabinary
2024-09-19 15:04:36 -04:00
Lin Xianyi
2f2acb7895
gotenberg: add meta.mainProgram
2024-09-19 00:20:15 +08:00
Anderson Torres
f0e64ce16f
treewide: migrate packages maintained by AndersonTorres to by-name
...
Manual migration for the sake of by-name migration is no longer discouraged
since #340235 .
2024-09-16 14:26:47 -03:00
Aleksana
0465a01b69
pkgs/by-name: rewrite hashes in SRI format ( #341924 )
2024-09-15 19:56:06 +08:00
Aleksana
497239b401
gossip: add missing dependencies ( #341182 )
2024-09-15 17:24:43 +08:00
nicoo
2641d97cbf
pkgs/by-name: Convert hashes to SRI format
...
Reproduction script:
# Bulk rewrite
./maintainers/scripts/sha-to-sri.py pkgs/by-name
# Revert some packages which will need manual intervention
for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
git checkout -- "pkgs/by-name/${n:0:2}/${n}"
done
2024-09-15 11:24:31 +02:00
R. Ryantm
16b85ae6ad
gowall: 0.1.7 -> 0.1.8
2024-09-13 15:07:00 +00:00
Peder Bergebakken Sundt
952ef22e19
got: 0.102 -> 0.103 ( #341327 )
2024-09-13 03:39:43 +02:00
Moritz Sanft
fa7001de6d
gossip: format
2024-09-12 14:41:09 +02:00
Moritz Sanft
96509bec47
gossip: add missing dependencies
2024-09-12 14:40:53 +02:00
John Titor
d1ee2bde33
google-chrome: 128.0.6613.113 -> 128.0.6613.137
2024-09-12 16:57:32 +05:30
casaca24
ee0753f986
got: 0.102 -> 0.103
2024-09-12 01:12:17 -06:00
Nick Cao
7828941b76
gopls: 0.16.1 -> 0.16.2 ( #341037 )
2024-09-11 08:11:13 -04:00
Sandro Jäckel
128fd81004
gopls: 0.16.1 -> 0.16.2
...
Diff: https://github.com/golang/tools/compare/gopls/v0.16.1...gopls/v0.16.2
Changelog: https://github.com/golang/tools/releases/tag/gopls/v0.16.2
2024-09-10 17:24:51 +02:00
R. Ryantm
d8401340c1
gogup: 0.27.4 -> 0.27.5
2024-09-10 14:06:08 +00:00
Paul Meyer
1bd94f17f9
goat: unstable-2022-08-15 -> 0-unstable-2024-07-31 ( #338137 )
2024-09-09 09:11:10 +02:00
Jon Seager
827cc913f1
google-chrome: fix makeWrapper invocation
2024-09-05 09:12:29 +01:00
Farid Zakaria
19bd18f235
google-chrome: disable update notification
...
Add default commandLineArgs that disable update notification.
We can't update through the update mechanism so just disable by default
the notification.
2024-09-05 01:10:24 +05:30
John Titor
b9f1e80814
google-chrome: 128.0.6613.84 -> 128.0.6613.113
2024-09-02 16:05:03 +00:00
R. Ryantm
4922cf0769
go-camo: 2.5.1 -> 2.6.0
2024-09-01 01:23:13 +00:00
Paul Meyer
1eaba9381c
goat: unstable-2022-08-15 -> 0-unstable-2024-07-31
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-08-29 10:50:06 +02:00
TomaSajt
ba8d750a41
goofcord: use electron.dist
2024-08-27 21:37:15 +02:00
Emily
1faba3c1e9
maintainers: remove superherointj ( #337552 )
2024-08-27 01:08:06 +01:00
superherointj
7354bda208
maintainers: remove superherointj
2024-08-26 17:50:54 -03:00
R. Ryantm
7184afdba5
goflow2: 2.2.0 -> 2.2.1
2024-08-26 06:54:46 +00:00
Fabián Heredia Montiel
1c506133f0
Merge pull request #336303 from r-ryantm/auto-update/gotree
...
gotree: 1.2.0 -> 1.4.1
2024-08-24 11:06:01 -06:00
Thomas Gerbet
e57b3fa559
google-chrome: 127.0.6533.119 -> 128.0.6613.84/128.0.6613.85
...
https://chromereleases.googleblog.com/2024/08/stable-channel-update-for-desktop_21.html
Fixes:
* CVE-2024-7964
* CVE-2024-7965
* CVE-2024-7966
* CVE-2024-7967
* CVE-2024-7968
* CVE-2024-7969
* CVE-2024-7971
* CVE-2024-7972
* CVE-2024-7973
* CVE-2024-7974
* CVE-2024-7975
* CVE-2024-7976
* CVE-2024-7977
* CVE-2024-7978
* CVE-2024-7979
* CVE-2024-7980
* CVE-2024-7981
* CVE-2024-8033
* CVE-2024-8034
* CVE-2024-8035
2024-08-22 22:40:16 +02:00
R. Ryantm
d33349ca85
gotree: 1.2.0 -> 1.4.1
2024-08-21 10:33:50 +00:00
Weijia Wang
e1a862da5b
Merge pull request #333243 from r-ryantm/auto-update/gotenberg
...
gotenberg: 8.8.1 -> 8.9.1
2024-08-21 02:07:58 +02:00
Peder Bergebakken Sundt
fcdecc256a
treewide: change ${pname}
to string literal ( #336172 )
...
* adwaita-icon-theme: change `${pname}` to string literal
* alp: change `${pname}` to string literal
* alsa-oss: change `${pname}` to string literal
* alsa-plugins: change `${pname}` to string literal
* alsa-ucm-conf: change `${pname}` to string literal
* alsa-utils: change `${pname}` to string literal
* anyrun: change `${pname}` to string literal
* assemblyscript: change `${pname}` to string literal
* audiobookshelf: change `${pname}` to string literal
* baobab: change `${pname}` to string literal
* braa: change `${pname}` to string literal
* brill: change `${pname}` to string literal
* centrifugo: change `${pname}` to string literal
* cheese: change `${pname}` to string literal
* cljfmt: change `${pname}` to string literal
* coppwr: change `${pname}` to string literal
* cosmic-edit: change `${pname}` to string literal
* cosmic-files: change `${pname}` to string literal
* cosmic-store: change `${pname}` to string literal
* cosmic-term: change `${pname}` to string literal
* crate2nix: change `${pname}` to string literal
* cups-kyocera-3500-4500: change `${pname}` to string literal
* dbqn: change `${pname}` to string literal
* dconf-editor: change `${pname}` to string literal
* devhelp: change `${pname}` to string literal
* dmarc-report-converter: change `${pname}` to string literal
* engage: change `${pname}` to string literal
* eog: change `${pname}` to string literal
* evolution-data-server-gtk4: change `${pname}` to string literal
* find-billy: change `${pname}` to string literal
* firefly-iii: change `${pname}` to string literal
* fuchsia-cursor: change `${pname}` to string literal
* geary: change `${pname}` to string literal
* ghex: change `${pname}` to string literal
* gitg: change `${pname}` to string literal
* glasskube: change `${pname}` to string literal
* gnome.gnome-autoar: change `${pname}` to string literal
* gnome.gnome-calculator: change `${pname}` to string literal
* gnome.gnome-calendar: change `${pname}` to string literal
* gnome.gnome-common: change `${pname}` to string literal
* gnome.gnome-dictionary: change `${pname}` to string literal
* gnome.gnome-disk-utility: change `${pname}` to string literal
* gnome.gnome-font-viewer: change `${pname}` to string literal
* gnome.gnome-keyring: change `${pname}` to string literal
* gnome.gnome-screenshot: change `${pname}` to string literal
* gnome.gnome-system-monitor: change `${pname}` to string literal
* gnome.seahorse: change `${pname}` to string literal
* gnome.simple-scan: change `${pname}` to string literal
* gnome.sushi: change `${pname}` to string literal
* gnome.totem: change `${pname}` to string literal
* gnome.yelp: change `${pname}` to string literal
* gnome.yelp-xsl: change `${pname}` to string literal
* gnucap-full: change `${pname}` to string literal
* goredo: change `${pname}` to string literal
* guile-semver: change `${pname}` to string literal
* halo: change `${pname}` to string literal
* intiface-central: change `${pname}` to string literal
* intune-portal: change `${pname}` to string literal
* iscc: change `${pname}` to string literal
* jetbrains-toolbox: change `${pname}` to string literal
* jnr-posix: change `${pname}` to string literal
* keymapp: change `${pname}` to string literal
* libation: change `${pname}` to string literal
* libeduvpn-common: change `${pname}` to string literal
* libmamba: change `${pname}` to string literal
* littlefs-fuse: change `${pname}` to string literal
* logseq: change `${pname}` to string literal
* lxgw-wenkai-tc: change `${pname}` to string literal
* microsoft-identity-broker: change `${pname}` to string literal
* minetest-mapserver: change `${pname}` to string literal
* msalsdk-dbusclient: change `${pname}` to string literal
* neverest: change `${pname}` to string literal
* nf-test: change `${pname}` to string literal
* numbat: change `${pname}` to string literal
* pdf2odt: change `${pname}` to string literal
* plemoljp: change `${pname}` to string literal
* plemoljp-hs: change `${pname}` to string literal
* plemoljp-nf: change `${pname}` to string literal
* pocket-updater-utility: change `${pname}` to string literal
* proto: change `${pname}` to string literal
* pw3270: change `${pname}` to string literal
* ratchet: change `${pname}` to string literal
* read-it-later: change `${pname}` to string literal
* redmine: change `${pname}` to string literal
* regina: change `${pname}` to string literal
* regripper: change `${pname}` to string literal
* revolt-desktop: change `${pname}` to string literal
* rs: change `${pname}` to string literal
* signaturepdf: change `${pname}` to string literal
* sonarlint-ls: change `${pname}` to string literal
* srgn: change `${pname}` to string literal
* stackit-cli: change `${pname}` to string literal
* substudy: change `${pname}` to string literal
* swayosd: change `${pname}` to string literal
* synthesia: change `${pname}` to string literal
* tarlz: change `${pname}` to string literal
* termcap: change `${pname}` to string literal
* tinycompress: change `${pname}` to string literal
* tracexec: change `${pname}` to string literal
* treefmt2: change `${pname}` to string literal
* udev-gothic: change `${pname}` to string literal
* udev-gothic-nf: change `${pname}` to string literal
* vvvvvv: change `${pname}` to string literal
* yggdrasil: change `${pname}` to string literal
* zsync: change `${pname}` to string literal
2024-08-20 15:56:55 -07:00
Paul Meyer
98f1796d19
Merge pull request #335746 from katexochen/gofumpt/0-7-0
...
gofumpt: 0.6.0 -> 0.7.0
2024-08-20 16:02:03 +02:00
Nick Cao
4e256aa9da
Merge pull request #335813 from r-ryantm/auto-update/goflow2
...
goflow2: 2.1.5 -> 2.2.0
2024-08-19 16:45:24 -04:00
R. Ryantm
6270475c59
goflow2: 2.1.5 -> 2.2.0
2024-08-19 13:16:16 +00:00
Paul Meyer
b79285900b
gofumpt: 0.6.0 -> 0.7.0
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-08-19 08:29:18 +02:00
Jon Seager
0918581d67
Merge pull request #335680 from JohnRTitor/google-chrome
2024-08-19 07:08:56 +01:00
John Titor
37e9028254
google-chrome: 127.0.6533.99 -> 127.0.6533.119
2024-08-18 20:53:28 +00:00
Peder Bergebakken Sundt
e471916645
treewide: passthru nixos test ( #334491 )
2024-08-18 00:29:43 +02:00
Donovan Glover
0e1845968b
Merge pull request #334920 from afh/update-got
...
got: 0.101 -> 0.102
2024-08-17 14:43:14 +00:00
Emily Trau
cddd7b164c
Merge pull request #335346 from r-ryantm/auto-update/gowall
...
gowall: 0.1.6 -> 0.1.7
2024-08-17 22:08:13 +10:00
R. Ryantm
d016d37f4d
gowall: 0.1.6 -> 0.1.7
2024-08-17 11:08:49 +00:00
Schweber
e33ab01f8d
godot_4: add wayland support
2024-08-17 12:17:27 +02:00
superherointj
eaf27a2f3b
godot_4: 4.2.2-stable -> 4.3-stable
...
https://github.com/godotengine/godot/releases/tag/4.3-stable
2024-08-15 17:25:50 -03:00
superherointj
26eb674c5d
godot_4: fix cross compilation
...
Co-authored-by: Anderson Torres
2024-08-15 17:00:37 -03:00
superherointj
1747d9a68b
godot_4: migrate to pkgs/by-name
2024-08-15 16:59:37 -03:00
Alexis Hildebrandt
6ac1b21e04
got: 0.101 -> 0.102
2024-08-15 19:57:23 +02:00