Commit Graph
937981 Commits
Author SHA1 Message Date
R. Ryantm dfb0b8256c flashmq: 1.24.0 -> 1.25.0 2026-01-25 22:09:48 +00:00
Gergő GutyinaandGitHub 9553a83c4c rauthy: 0.34.0 -> 0.34.1 (#483753) 2026-01-25 22:06:43 +00:00
R. Ryantm b77784296d gitwatch: 0.4 -> 0.5 2026-01-25 22:03:00 +00:00
R. Ryantm c617bd0cd5 nom: 3.1.0 -> 3.1.1 2026-01-25 21:59:55 +00:00
nixpkgs-ci[bot]andGitHub 294d8a8925 roslyn-ls: 5.3.0-2.25604.5 -> 5.4.0-2.26062.9 (#483089) 2026-01-25 21:59:55 +00:00
R. Ryantm 3aa0edb0a4 hjson-go: 4.5.0 -> 4.6.0 2026-01-25 21:59:04 +00:00
R. Ryantm 760009bcb3 ansel: 0-unstable-2026-01-17 -> 0-unstable-2026-01-25 2026-01-25 21:58:47 +00:00
quantenzitrone 3e622a5110 nixos: remove references to the xorg namespace
this only creates the usual nixos module rebuilds
2026-01-25 22:58:40 +01:00
Pol DellaieraandGitHub aa6e0f1bcb phpPackages.composer: 2.9.3 -> 2.9.4 (#483114) 2026-01-25 21:57:00 +00:00
Pol DellaieraandGitHub 39f2864c6d phpExtensions.swoole: 6.0.2 -> 6.1.6 (#457205) 2026-01-25 21:56:40 +00:00
Michael Daniels 3fb23e6837 ci/github-script/reviews: enable typescript 2026-01-25 16:53:07 -05:00
quantenzitrone e967e61d8c nixos/xserver: don't depend on xorg package set for drivers 2026-01-25 22:49:50 +01:00
Doron BeharandGitHub e310f5654c smpq: remove override (#483685) 2026-01-25 21:44:15 +00:00
Gaétan LepageandGitHub ae1272cf08 python3Packages.pytorch-tokenizers: 1.0.1 -> 1.1.0 (#482905) 2026-01-25 21:42:57 +00:00
Gaétan LepageandGitHub e83ffc3656 python3Packages.ducc0: 0.39.1 -> 0.40.0 (#482838) 2026-01-25 21:40:28 +00:00
R. Ryantm b7efda73f7 python3Packages.ghapi: 1.0.9 -> 1.0.10 2026-01-25 21:40:13 +00:00
R. Ryantm 702119d8d5 python3Packages.pyezvizapi: 1.0.4.4 -> 1.0.4.5 2026-01-25 21:40:03 +00:00
R. RyantmandGaetan Lepage 79b2a77cbd python3Packages.pytorch-tokenizers: 1.0.1 -> 1.1.0 2026-01-25 21:34:19 +00:00
Gergő GutyinaandGitHub 6fe5baa920 various: remove by-name overrides (part 3) (#483690) 2026-01-25 21:31:54 +00:00
quantenzitrone 233631a84f treewide: remove references to the xorg namespace in pkgs (manual)
this was done manually, fixing the eval and any remaining stuff of the previous commit

together with the previous commit this shouldn't create any rebuilds
2026-01-25 22:28:14 +01:00
quantenzitrone 7d8132a92c treewide: remove references to the xorg namespace in pkgs (automated)
this creates some eval errors that will be fixed in the next commit

done with the following script:

```fish
\#!/usr/bin/env fish

set packagesjson (nix eval --impure --json --expr '
let
  lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
  name: _:
  if name == "lib" then
    lib
  else if name == "config" then
    { allowAliases = false; }
  else
    name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)

set one (grep '^    [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^  [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)

for arg in $one $two
    set oname $arg
    set nname (echo $packagesjson | jq -r .$oname)

    if test $nname = null
        echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
        continue
    end

    echo $oname "->" $nname

    # replace basic xorg.$name references
    for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
        # special cases
        sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file

        # replace
        sd -F "xorg.$oname" "$nname" $file

        # fixup function arguments

        # prevent duplicate function args
        if grep -E " ($oname|$nname),\$" $file >/dev/null
            continue
        end

        if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg

            if grep ' xorg,$' $file >/dev/null
                sd ' xorg,$' " xorg,
                $nname," $file

            else if grep ' xorg ? .*,$' $file >/dev/null
                sd 'xorg( ? .*),$' "xorg\$1,
                $nname," $file

            else
                sd -F 'xorg,' "$nname,
                xorg," $file
            end

        else # case there is no more xorg..* so we can just replace the function arg
            sd 'xorg(| ? .*),.*$' "$nname," $file
        end
    end
end

nix fmt
```
2026-01-25 22:28:09 +01:00
Michael DanielsandGitHub 96b20a8a0d jetbrains.jdk-no-jcef-17: drop (#478430) 2026-01-25 21:28:05 +00:00
quantenzitrone c7c77c1aee treewide: remove all uses of 'with xorg;' in pkgs
this shouldn't create any rebuilds

this was done manually by grepping for `with xorg` and `with pkgs.xorg`
2026-01-25 22:26:00 +01:00
Gergő GutyinaandGitHub f74bd2b016 gamescope: remove all-packages.nix override (#483747) 2026-01-25 21:23:56 +00:00
ArtturinandGitHub 4054ea2cea luaPackages.wrapLua: Fix the wrapper on cross (#481464) 2026-01-25 21:21:13 +00:00
Lyn fda07bac84 joplin-desktop: simplify plugin build
Fetching plugins as npm dependencies seems to be the default now, while
joplin-plugin-backup is an edge case (is patched and built from source).
2026-01-25 22:20:48 +01:00
AliaksandrandMichael Daniels b19e26917a gwrap: remove alias
Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
2026-01-25 16:15:48 -05:00
Gergő GutyinaandGitHub 6095dea7ef various: remove unused argument overrides (#483746) 2026-01-25 21:13:47 +00:00
Gaétan LepageandGitHub f0bbae0daf maintainers: bridgesense -> saadndm (#483761) 2026-01-25 21:13:22 +00:00
AliaksandrandMichael Daniels f44cfd1f47 g-wrap: remove top-level override 2026-01-25 16:12:19 -05:00
AliaksandrandMichael Daniels 65c67c3fc2 firezone-server: remove top-level override 2026-01-25 16:12:19 -05:00
AliaksandrandMichael Daniels 5589e9dfab eudev: remove top-level override 2026-01-25 16:12:19 -05:00
AliaksandrandMichael Daniels d739b1766a eff: remove top-level override 2026-01-25 16:12:19 -05:00
AliaksandrandMichael Daniels d346c4ef8d dwl: remove top-level override 2026-01-25 16:12:18 -05:00
AliaksandrandMichael Daniels c156640f88 djv: remove top-level override 2026-01-25 16:12:18 -05:00
AliaksandrandMichael Daniels 6df4aaa8b0 dillo: remove top level override 2026-01-25 16:12:18 -05:00
Michael Daniels c717c98bc8 ci/github-script/bot: only look at commit subject when deciding if a package is new/updated 2026-01-25 16:11:24 -05:00
Philip TaronandGitHub f5d93a1e69 workflows/periodic-merge: fix comment syntax (#483727) 2026-01-25 21:11:04 +00:00
Gergő GutyinaandGitHub 17b4b1b7ab various: remove by-name overrides (part 1) (#483681) 2026-01-25 21:06:16 +00:00
Saad Nadeem e39a870f70 maintainers: bridgesense -> saadndm 2026-01-25 16:03:23 -05:00
Jörg Thalheim 87fa6dbd2a lazyworktree: 1.26.2 -> 1.28.0
Diff: https://github.com/chmouel/lazyworktree/compare/v1.26.2...v1.28.0

Changelog: https://github.com/chmouel/lazyworktree/releases/tag/v1.28.0
2026-01-25 22:02:57 +01:00
R. Ryantm 966c24be04 ghostfolio: 2.229.0 -> 2.233.0 2026-01-25 20:55:53 +00:00
YtandGitHub 6ba71cbcab python3Packages.torchtune: skip failing tests on x86_64-linux (#482990) 2026-01-25 20:46:25 +00:00
aoli-alandMichael Daniels 0363fb9c78 jetbrains.jdk-no-jcef-17: drop
Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
2026-01-25 15:43:30 -05:00
Michael DanielsandGitHub 1260a929cf ci: auto add '8.has: package (new)' and '8.has: package (update)' labels (#482478) 2026-01-25 20:37:50 +00:00
Ihar Hrachyshka 04594bc62c ramalama: remove explicit check of mlx-lm availability
It's now available on linux and darwin for both cpu architectures
ramalama package targets.
2026-01-25 15:29:03 -05:00
Ihar Hrachyshka c2facdf896 python3Packages.mlx: enable for x86_64-darwin 2026-01-25 15:29:03 -05:00
Ihar Hrachyshka 1f1f66c30b python3Packages.mlx: remove pybind11 from buildInputs
The package was used to generate bindings before (meaning, it should
have probably belonged to nativeBuildInputs). But it's no longer used
since https://github.com/ml-explore/mlx/pull/839 (included with v0.8.0).
2026-01-25 15:29:03 -05:00
Ihar Hrachyshka 45e266fad1 python3Packages.mlx: remove gguf-tools source checkout from buildInputs
The `gguf-tools` are defined in `let` section to point to a source
checkout, not nixpkgs derivation.

Note: regardless, the tools are not used in runtime. Instead, some files
from the source checkout are statically compiled during the build.
2026-01-25 15:29:03 -05:00
Ihar Hrachyshka fe3ec7768c python3Packages.mlx: use nlohmann_json from nixpkgs 2026-01-25 15:29:00 -05:00