Commit Graph

47 Commits

Author SHA1 Message Date
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Thomas Gerbet
b53f626e0c
jenkins: 2.462.3 -> 2.479.2 (#360869)
Fixes CVE-2024-47855.
https://www.jenkins.io/security/advisory/2024-11-27/#SECURITY-3463

Changelog:
https://www.jenkins.io/changelog-stable/#v2.479.2
2024-12-09 23:57:39 -05:00
Robert Schütz
bf1799238e
jellyfin-ffmpeg: 7.0.2-5 -> 7.0.2-7 (#360761) 2024-12-08 16:20:44 -08:00
Austin Horstman
f54975f3d3
jellyfin{,-web}: 10.10.1 → 10.10.2 → 10.10.3 (#356897) 2024-12-01 07:42:12 -06:00
R. Ryantm
f00cf45141 jellyfin-ffmpeg: 7.0.2-5 -> 7.0.2-7 2024-12-01 12:47:18 +00:00
Vika
8171128674 jellyfin{,-web}: 10.10.2 → 10.10.3 2024-11-22 22:27:38 +03:00
liberodark
af2057249e jekyll: move by-name 2024-11-21 10:19:15 +01:00
Vika
4545329a81 jellyfin{,-web}: 10.10.1 → 10.10.2
Resolves #356716
2024-11-19 13:32:27 +03:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Austin Horstman
8285855799
jellyfin-web: assert matching jellyfin version 2024-11-07 15:38:07 -06:00
Austin Horstman
b6ea4f466c
jellyfin-web: 10.10.0 -> 10.10.1 2024-11-07 15:37:34 -06:00
Austin Horstman
13d1089f5a
jellyfin: 10.10.0 -> 10.10.1 2024-11-07 15:37:34 -06:00
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
Gaétan Lepage
391e55c23b
jellyfin-web: switch to apple-sdk_11 (#352923) 2024-11-07 00:56:45 +01:00
Aleksana
7a883deda1
jellyfin-rpc: init at 1.3.0 (#349628) 2024-11-06 12:22:53 +08:00
ners
a614e9006e
jetbrains-toolbox: 2.4.1.32573 -> 2.5.1.34629 2024-11-05 08:17:20 +00:00
ners
1ca7aa2333
jetbrains-toolbox: add update script 2024-11-05 09:16:52 +01:00
Robert Schütz
14fc87c2ab
jellyfin: 10.9.11 -> 10.10.0 (#351966) 2024-11-01 22:30:48 -07:00
Austin Horstman
42412a0dba
jellyfin-web: switch to apple-sdk_11 2024-11-01 11:54:41 -05:00
Robert Schütz
bf8b641d2d jellyfin: 10.9.11 -> 10.10.0
https://jellyfin.org/posts/jellyfin-release-10.10.0
2024-10-28 12:50:36 -07:00
seth
408a0a97c0
jellyfin-rpc: init at 1.3.0 2024-10-18 16:36:29 -04:00
Emily
81c3d76c5e jextract: pin JDK 23, mark as broken 2024-09-26 16:46:04 +01: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
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
Jonas Heinrich
9e4ad8fa9b jellyfin: 10.9.10 -> 10.9.11 2024-09-12 09:27:31 +00:00
Jonas Heinrich
3945cdd2be jellyfin-web: 10.9.10 -> 10.9.11 2024-09-12 09:27:19 +00:00
Mats
b691f9cac2 jellyfin: 10.9.7 -> 10.9.10 2024-08-25 16:48:30 +02:00
Mats
7db697aa32 jellyfin-web: 10.9.7 -> 10.9.10 2024-08-25 16:48:30 +02:00
Leona Maroni
afebc04d76
Merge pull request #328495 from r-ryantm/auto-update/jetbrains-toolbox
jetbrains-toolbox: 2.4.0.32175 -> 2.4.1.32573
2024-08-23 14:33:52 +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
R. Ryantm
d0065cf5f4 jetbrains-toolbox: 2.4.0.32175 -> 2.4.1.32573 2024-07-19 17:47:20 +00:00
chayleaf
6d513fb246
jextract-21: convert to gradle setup hook 2024-07-12 21:36:18 +07:00
chayleaf
f9c2c4a8be
jextract: convert to gradle setup hook 2024-07-12 21:36:18 +07:00
Ariel Hernandez Musa
f338689ca5 jetbrains-toolbox: 2.3.2.31487 -> 2.4.0.32175 2024-07-05 19:04:38 -03:00
Jonas Heinrich
7ddbb4a9c1 jellyfin-web: 10.9.6 -> 10.9.7 2024-06-27 10:02:33 +02:00
Jonas Heinrich
5fdf534b0c jellyfin: 10.9.6 -> 10.9.7 2024-06-27 10:02:03 +02:00
K900
8e4c724f83 jellyfin: fix makeWrapperArgs after #313005 2024-06-18 11:13:04 +03:00
Minijackson
2fa82b71c1
jellyfin: move to pkgs/by-name 2024-06-10 20:30:21 +02:00
Minijackson
b71cba0165
jellyfin-web: move to pkgs/by-name 2024-06-10 20:28:35 +02:00
Weijia Wang
22374b27d9
Merge pull request #317083 from r-ryantm/auto-update/jetbrains-toolbox
jetbrains-toolbox: 2.3.1.31116 -> 2.3.2.31487
2024-06-10 19:51:00 +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
R. Ryantm
4809b3b39e jetbrains-toolbox: 2.3.1.31116 -> 2.3.2.31487 2024-06-04 03:39:36 +00:00
Martino Fontana
6e465f4550 treewide: fix use of extraPkgs in AppImages
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;`
This caused some packages to be listed twice.

Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`).
Remove inclusions of `bash`, since `bashInteractive` is already present by default.
2024-05-13 20:35:07 +02:00
R. Ryantm
eb66c23a70 jetbrains-toolbox: 2.2.3.20090 -> 2.3.1.31116 2024-05-01 06:36:06 +00:00
Peder Bergebakken Sundt
985aa8174d treewide: unbreak appimageTools.wrapType2 builds
`appimageTools.wrapType2` no longer creates a binary `$out/bin/${name}` if `pname` and `version` is provided.
Derivations that have worked around this behavior with a `mv $out/bin/{${name},${pname}}` broke as a result.
This should fix most instances.

contex: #271071
2024-04-24 15:26:52 +02:00
Pol Dellaiera
8484ed14b7 jetbrains-toolbox: move to pkgs/by-name 2024-04-02 21:15:08 +02:00
José Luis Lafuente
47fe73f5b6
jextract: unstable-2023-11-27 -> unstable-2024-03-13
Closes #293102
2024-03-26 15:08:30 +01:00