Commit Graph

442 Commits

Author SHA1 Message Date
R. Ryantm
7828be245b jetty: 12.1.11 -> 12.1.12 2026-08-15 02:05:33 +02:00
Sandro
84ea47c5a8 jetring: init at 0.32; debian-archive-keyring: init at 2025.1 (#536708) 2026-08-13 15:59:57 +00:00
Fabián Heredia Montiel
6b5e5b7a66 jetty_11: remove (#549103) 2026-08-13 03:55:42 +00:00
R. Ryantm
db64793d70 jetbrains-toolbox: 3.6.3.86383 -> 3.6.4.86641 2026-08-12 17:53:29 +00:00
whispers
c7404c9232 libappindicator-gtk3: make alias for libappindicator 2026-08-10 23:03:31 -04:00
Peder Bergebakken Sundt
db9a2b086c appimageTools: warn on deprecated type-specific aliases (#546396) 2026-08-08 21:18:59 +00:00
Ben Siraphob
9328e894fd pkgs/by-name: fix typos (#549386) 2026-08-07 19:02:08 +00:00
Skye Soss
40a1358515 jetring: init at 0.32 2026-08-06 08:41:20 -05:00
Bjørn Forsman
b73c8df001 jenkins: 2.568.1 -> 2.568.2 (#549585) 2026-08-06 07:03:37 +00:00
Donovan Glover
5094a17ab1 jellyfin-desktop: align darwin executable name with mainProgram (#549480) 2026-08-05 22:40:38 +00:00
Ben Siraphob
5506449838 pkgs/by-name: fix typos
Assisted-by: Claude Code (claude-opus-5)
2026-08-05 09:56:33 -07:00
Felix Singer
a5d20bef56 jenkins: 2.568.1 -> 2.568.2
Fixes following CVEs:

  * CVE-2026-70426
  * CVE-2026-70427
  * CVE-2026-70428
  * CVE-2026-70429
  * CVE-2026-70430

Signed-off-by: Felix Singer <felixsinger@posteo.net>
2026-08-05 18:31:45 +02:00
Rafael Irgolic
75e8f9dece jellyfin-desktop: align darwin executable name with mainProgram 2026-08-05 09:50:47 +00:00
Anthony Roussel
c106c5982e jetty: migrate to pkgs/by-name
Signed-off-by: Anthony Roussel <anthony@roussel.dev>
2026-08-05 10:03:39 +02:00
Felix Singer
66b1c22b1d jenkins: Enable strictDeps and __structuredAttrs
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2026-08-05 05:51:53 +02:00
R. Ryantm
c9dece6814 jetbrains-toolbox: 3.6.2.85969 -> 3.6.3.86383 2026-08-04 01:43:59 +00:00
bitbloxhub
c831bab4ac appimageTools: warn on deprecated type-specific aliases
Also migrates away from them with these commands, using ast-grep 0.43.0
with these commands in bash (assisted by ChatGPT):
```bash
for old in extractType1 extractType2; do
  ast-grep \
    --lang nix \
    --pattern "\$TOOLS.$old" \
    --rewrite '$TOOLS.extract' \
    --update-all \
    pkgs
done

ast-grep \
  --lang nix \
  --pattern '$TOOLS.wrapType1' \
  --rewrite '$TOOLS.wrapType2' \
  --update-all \
  pkgs
```

Assisted-by: GPT-5.6-Sol Medium via ChatGPT
2026-07-30 00:21:21 +00:00
Sandro
ff424efb82 jemalloc: add patch to fix build under gcc 16 (#537381) 2026-07-26 12:00:10 +00:00
Sandro
c203d45f68 jellyfin-rpc: 1.3.4 -> 1.3.5 (#511983) 2026-07-23 19:44:05 +00:00
R. Ryantm
44c6542628 jellyfin-rpc: 1.3.4 -> 1.3.5 2026-07-22 22:07:25 +02:00
whispers
f5248277bd jemalloc: add patch to fix build under gcc 16
jemalloc used the nonstandard `std::__throw_bad_alloc`, which is no
longer visible in GCC 16. this upstream patch makes it conditional on
exceptions and defers to either `throw std::bad_alloc()` or
`std::terminate` as appropriate, and fixes the build.
2026-07-20 17:49:31 -04:00
nixpkgs-ci[bot]
167fd5c8c0 Merge master into staging-next 2026-07-17 00:32:06 +00:00
R. Ryantm
fee76ef093 jetbrains-toolbox: 3.6.1.85592 -> 3.6.2.85969 2026-07-16 18:58:52 +00:00
Michael Daniels
dd7af89e2f Merge branch 'master' into staging-next 2026-07-15 19:33:27 -04:00
Nick Cao
766b544da3 jellyfin-tui: 1.5.1 -> 1.5.2 (#542090) 2026-07-15 19:33:22 +00:00
K900
45ae10c84d Merge remote-tracking branch 'origin/master' into staging-next 2026-07-15 10:52:37 +03:00
R. Ryantm
7e220b052b jellyfin-tui: 1.5.1 -> 1.5.2 2026-07-15 05:54:16 +00:00
Emily
fdb820602b treewide: drop simple x86_64-darwin mentions
To reproduce:

    $ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
        -- scan --update-all --inline-rules '
          id: nix-x86_64-darwin
          language: nix
          rule:
            any:
              - pattern: "\"x86_64-darwin\""
                kind: list_expression > string_expression
              - pattern:
                  context: "{ \"x86_64-darwin\" = $EXPR; }"
                  selector: binding
              - pattern:
                  context: "{ x86_64-darwin = $EXPR; }"
                  selector: binding
          fix:
            template: ""
        ' pkgs
    $ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
        -- scan --update-all --inline-rules '
          id: json-first-x86_64-darwin
          language: json
          rule:
            kind: object > pair:nth-child(1)
            has:
              pattern: "\"x86_64-darwin\""
              field: key
          fix:
            template: ""
            expandEnd: { regex: "," }
        ' pkgs
    $ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
        -- scan --update-all --inline-rules '
          id: json-x86_64-darwin
          language: json
          rule:
            kind: object > pair
            has:
              pattern: "\"x86_64-darwin\""
              field: key
          fix:
            template: ""
            expandStart: { regex: "," }
        ' pkgs
    $ git restore pkgs/by-name/om/omnix/package.nix
    $ git diff --name-only -z \
        | nix shell nixpkgs/3b32825de172d0bc85664f495edb096b10862524#gnused \
            -c xargs -0 sed -i '/^$/N; /^\n\? \+$/d'
    $ treefmt
2026-07-15 03:58:16 +01:00
Emily
de7a47fbf9 jemalloc: skip extent test with profiling enabled (#540203) 2026-07-13 19:33:20 +00:00
nixpkgs-ci[bot]
c45ba81144 Merge staging-next into staging 2026-07-13 12:50:29 +00:00
Felix Singer
ccfaa326e0 jenkins: 2.555.3 -> 2.568.1
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2026-07-12 20:53:49 +02:00
Ihar Hrachyshka
95b1a21908 jemalloc: skip extent test with profiling enabled
This fixes rust-jemalloc-sys build on darwin.

Linux builds pass only when overcommit is enabled in kernel, so it's
better to disable it for both platforms.

See: https://github.com/jemalloc/jemalloc/pull/2954

Assisted-by: Codex gpt-5.5 xhigh
2026-07-10 00:22:06 -04:00
K900
b0b1fcd402 Merge remote-tracking branch 'origin/staging-next' into staging 2026-07-09 08:54:20 +03:00
nixpkgs-ci[bot]
8d44c947bc jetbrains-toolbox: 3.5.0.84344 -> 3.6.1.85592 (#539251) 2026-07-08 21:11:31 +00:00
nixpkgs-ci[bot]
2460cec5c9 Merge staging-next into staging 2026-07-07 18:42:08 +00:00
nixpkgs-ci[bot]
f255ed405b Merge master into staging-next 2026-07-07 18:41:28 +00:00
nixpkgs-ci[bot]
baa73928a2 jellyfin-tui: 1.5.0 -> 1.5.1 (#538737) 2026-07-07 13:14:59 +00:00
R. Ryantm
b114624aeb jetbrains-toolbox: 3.5.0.84344 -> 3.6.1.85592 2026-07-07 12:10:57 +00:00
nixpkgs-ci[bot]
82c2d18f05 Merge staging-next into staging 2026-07-06 18:39:46 +00:00
nixpkgs-ci[bot]
f185090602 Merge master into staging-next 2026-07-06 18:39:05 +00:00
Bjørn Forsman
384f4d646e jellyfin-desktop: fix video playback (#536760) 2026-07-06 17:03:54 +00:00
nixpkgs-ci[bot]
f5332861db Merge staging-next into staging 2026-07-06 00:39:08 +00:00
K900
9430bbde0c Merge remote-tracking branch 'origin/master' into staging-next 2026-07-05 21:29:53 +03:00
R. Ryantm
1f8d45d510 jellyfin-tui: 1.5.0 -> 1.5.1 2026-07-05 17:31:56 +00:00
Sandro Jäckel
1260e09ca5 jellyfin-mpv-shim: 2.9.0 -> 2.10.0, minor cleanup
Changelog: https://github.com/jellyfin/jellyfin-mpv-shim/releases/tag/v2.10.0
Diff: https://github.com/jellyfin/jellyfin-mpv-shim/compare/v2.9.0...v2.10.0
2026-07-05 17:07:39 +02:00
nixpkgs-ci[bot]
c4b827fa89 Merge staging-next into staging 2026-07-05 07:07:52 +00:00
Leona Maroni
2278d8e20e jetbrains-mono: use python 3.13 gftools to fix build
'fs' is unsupported on Python 3.14 which breaks 'gftools' on 3.14.
2026-07-04 09:14:20 +02:00
Emily
af92041495 jemalloc: enable heap profiling by default (#528496) 2026-07-02 13:41:32 +00:00
Cathal Mullan
d1e81cb2d5 jemalloc: enable heap profiling by default 2026-07-01 18:22:32 +01:00
Bjørn Forsman
52d502602a jellyfin-desktop: fix video playback
Set QTWEBENGINE_FORCE_USE_GBM to 0 to fix/work around a severe video
playback bug.

The fix is copied from
https://github.com/NixOS/nixpkgs/issues/519073#issuecomment-4434887630

Fixes https://github.com/nixos/nixpkgs/issues/519073 ("jellyfin-desktop: video no longer plays")
2026-06-29 22:27:53 +02:00