Commit Graph

56 Commits

Author SHA1 Message Date
Karun Sandhu
586a9433b7
ente-auth: fix icon path 2024-11-01 16:21:55 +01:00
Sefa Eyeoglu
3deb4e1825
envision-unwrapped: 0-unstable-2024-09-28 -> 0-unstable-2024-10-20; envision: update dependency list and extraInstallCommands (#349917) 2024-11-01 12:16:34 +01:00
Gavin John
422081d2ea
envision-unwrapped: Remove Cargo.lock 2024-10-27 19:44:00 -07:00
Gavin John
42a952fc7d
envision: Remove specific boost version 2024-10-27 19:43:01 -07:00
Gavin John
83576343f9
envision-unwrapped: 0-0-unstable-2024-09-28 -> unstable-2024-10-20 2024-10-27 19:42:33 -07:00
Gavin John
7dd8cf23a0
envision: simplify extraInstallCommands 2024-10-27 19:42:31 -07:00
Gavin John
b44ce2644a
envision: Depend on host libc instead of glibc 2024-10-27 19:42:30 -07:00
Gavin John
8fb644d14a
envision: Piggy-back off of WiVRn 2024-10-27 19:42:28 -07:00
github-actions[bot]
8164a7aa6d
Merge master into staging-next 2024-10-21 00:14:52 +00:00
Luke Granger-Brown
fe52658f68
envoy: 1.31.2 -> 1.32.0 (#349028) 2024-10-21 00:41:48 +01:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes 2024-10-19 23:50:41 +02:00
Luke Granger-Brown
cb5946cd93 envoy: fix up Rust
Envoy 1.32 has added some more dependencies on rules_rust bits, so we
need to support that now.

In particular, for some reason, we always fail with a message about
needing repinning, so we repin during the IFD phase, but we need to
point rules_rust at the nixpkgs Rust toolchain, make it build the
cargo-bazel tool (because the one in nixpkgs is the wrong version), and
then clean up afterwards.
2024-10-19 22:48:12 +01:00
Paul Meyer
b479fae22e envoy: 1.31.2 -> 1.32.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-19 18:37:12 +01:00
K900
894462661c Merge branch 'master' into staging-next 2024-10-19 09:09:13 +03:00
Gavin John
537028927a
envision: Fix WMR build 2024-10-16 10:12:39 -07:00
Jan Tojnar
acf8f35b80
entangle: Fix build with glib 2.82
https://hydra.nixos.org/build/274565015/nixlog/1

`pcre` is no longer needed as the comment longer applies.

`glib-2.0.pc` now has `libsysprof-capture-4` in `Requires.private` field.
Normally, this does not matter since we patch our `pkg-config` to ignore that
outside of static builds but `entangle` was using `pkgconf`, which is not patched.

Let’s switch to standard `pkg-config`.
This will also allow us to clean some more dependencies.

Unfortunately, this also reveals issue with an underspecified `gio-unix-2.0` dependency so we need to fix that.
2024-10-14 20:54:20 +08:00
Fabián Heredia Montiel
ccec93c1c7 treewide: replace webkitgtk to webkitgtk_4_0
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix

webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06:00
Peder Bergebakken Sundt
cb3226fd0b
entangle: fix build (#344986) 2024-10-06 02:55:58 +02:00
Peder Bergebakken Sundt
1c52242827
treewide: fix desktopItems (#345778) 2024-10-05 15:51:58 +02:00
Gavin John
f650f622a5
envision-unwrapped: 0-unstable-2024-09-21 -> 0-unstable-2024-09-28 2024-10-02 05:38:55 +00:00
h7x4
1dc5de0509
ente-auth: fix desktopItems 2024-10-01 23:07:02 +02:00
h7x4
9c0783332a
ente-auth: init at 4.0.2 (#339059) 2024-10-01 19:35:43 +02:00
Niklas Korz
fcea60c49c ente-auth: init at 4.0.2 2024-10-01 17:20:37 +02:00
seth
a678b77f9b
en-croissant: use cargo-tauri.hook 2024-09-30 20:14:38 -04:00
Alexis Hildebrandt
61e7e2e965 envio: add manpage, reformat using nixfmt-rfc-style 2024-09-30 15:05:43 +02:00
R. Ryantm
320dac95fb envio: 0.5.1 -> 0.6.1 2024-09-30 15:04:46 +02:00
wxt
7db7e2f7a7
entangle: fix build 2024-09-28 09:53:49 +08:00
wxt
062aaf4d90
entangle: move to by-name; nixfmt 2024-09-28 09:40:24 +08:00
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
R. Ryantm
6c666cd5de envision-unwrapped: 0-unstable-2024-09-09 -> 0-unstable-2024-09-21 2024-09-21 19:59:12 +00:00
Adam Stephens
0cfb8d3f7b
envoy: 1.31.1 -> 1.31.2
https://github.com/envoyproxy/envoy/releases/tag/v1.31.2

CVE-2024-45807: oghttp2 crash on OnBeginHeadersForStream
CVE-2024-45808: Malicious log injection via access logs
CVE-2024-45806: Potential manipulate x-envoy headers from external sources
CVE-2024-45809: Jwt filter crash in the clear route cache with remote JWKs
CVE-2024-45810: Envoy crashes for LocalReply in http async client
2024-09-20 08:42:08 -04:00
Bobby Rong
9052a2df9d
enter-tex: 3.46.0 → 3.47.0, renamed from gnome-latex
https://gitlab.gnome.org/swilmet/enter-tex/-/compare/3.46.0...3.47.0

"3.47.alpha" is used for unstable releases, so I will consider this stable.
2024-09-19 00:14:59 +08:00
Adam Stephens
00e9c6bafc
envoy: move to by-name 2024-09-15 08:46:18 -04: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
TomaSajt
1bb6b1cabe
en-croissant: init at 0.11.1 2024-09-13 00:41:31 +02:00
R. Ryantm
249b7bd0a0 envision-unwrapped: 0-unstable-2024-09-06 -> 0-unstable-2024-09-09 2024-09-09 10:17:26 +00:00
Sefa Eyeoglu
764f7c1011
envision-unwrapped: 0-unstable-2024-07-03 -> 0-unstable-2024-09-06
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-07 16:47:12 +02:00
Sefa Eyeoglu
597b2976e7
envision-unwrapped: fix update script
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-07 16:47:12 +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
Julius Michaelis
6a9beaf893 treewide: skip generating shell completions using $out/bin/… when cross compiling
This focuses on Rust packages, since the most commonly used argument
parser library (clap/structopt) makes the following pattern natural and
thus common:

  postInstall = ''
    installShellCompletion --cmd foo \
      --bash <($out/bin/foo completion bash) \
      …

This commit just guards those with

lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)

splitting the string where unrelated actions are performed.
2024-08-04 10:50:48 +09:00
R. Ryantm
ef6a5b71ea envision-unwrapped: 0-unstable-2024-06-25 -> 0-unstable-2024-07-03 2024-07-15 05:43:18 +00:00
Gavin John
b9d225182c envision: init at 0-unstable-2024-06-25 2024-07-01 21:53:05 +00:00
Linus Heckemann
e5adf0b547 maintainers: drop lheckemann 2024-06-21 15:54:54 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Azat Bahawi
f0e9b901ca
Merge pull request #309018 from azahi/endlessh-go-update
endlessh-go: 20230625-3 -> 2024.0119.1
2024-05-12 20:09:09 +03:00
Charles Hall
20c5b20d0c
engage: update urls 2024-05-09 20:19:24 -07:00
Charles Hall
aca7c0eb8f
engage: use fetchFromGitLab
The aforementioned problems with it were fixed and this works now.
2024-05-09 20:19:24 -07:00
Azat Bahawi
6a67984ae0
endlessh-go: 20230625-3 -> 2024.0119.1 2024-05-04 13:23:04 +03:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
5764e7e457 envio: 0.5.0 -> 0.5.1 2024-02-17 06:26:14 +00:00