41 Commits
Author SHA1 Message Date
R. Ryantm 32d8b8ee6d vdrPlugins.softhddevice: 2.4.8 -> 2.5.0 2026-06-25 18:46:12 +00:00
R. Ryantm b2f7afb7c2 vdrPlugins.softhddevice: 2.4.6 -> 2.4.8 2026-02-20 18:37:14 +00:00
quantenzitrone 866aa37ba3 xcbutilwm: rename references and deprecate alias
this shouldn't create any rebuilds
2026-02-04 22:58:46 +01:00
quantenzitrone 710fcd2bc5 xorgserver: rename references and deprecate alias
this shouldn't create any rebuilds
2026-02-04 22:56:59 +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
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00
R. Ryantm a96d5a3b0b vdrPlugins.softhddevice: 2.4.5 -> 2.4.6 2025-08-25 18:46:26 +00:00
Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04:00
Pol Dellaiera 65a333600d treewide: replace rev with tag 2025-04-07 16:57:22 +02:00
R. Ryantm 19d8da538d vdrPlugins.softhddevice: 2.4.4 -> 2.4.5 2025-03-29 12:38:46 +00:00
R. Ryantm e8ac482ec7 vdrPlugins.softhddevice: 2.4.3 -> 2.4.4 2025-02-15 22:27:52 +00:00
R. Ryantm aab32ab499 vdrPlugins.softhddevice: 2.4.2 -> 2.4.3 2025-02-02 02:39:39 +00:00
R. Ryantm 7ee444227b vdrPlugins.softhddevice: 2.4.1 -> 2.4.2 2025-01-19 15:08:27 +00:00
R. Ryantm a1cfcf8cf1 vdrPlugins.softhddevice: 2.4.0 -> 2.4.1 2024-12-26 08:16:31 +00:00
R. Ryantm 5bc4813065 vdrPlugins.softhddevice: 2.3.8 -> 2.4.0 2024-12-15 15:14:23 +00:00
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 https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
R. Ryantm 86959bc989 vdrPlugins.softhddevice: 2.3.7 -> 2.3.8 2024-09-23 16:56:16 +00:00
R. Ryantm 54da69fc9a vdrPlugins.softhddevice: 2.3.6 -> 2.3.7 2024-08-07 06:24:26 +00:00
R. Ryantm 0c7b6c65b9 vdrPlugins.softhddevice: 2.3.5 -> 2.3.6 2024-07-25 19:18:07 +00:00
R. Ryantm 85fbe210ba vdrPlugins.softhddevice: 2.3.4 -> 2.3.5 2024-07-16 08:49:06 +00:00
R. Ryantm 76d5eb24da vdrPlugins.softhddevice: 2.3.3 -> 2.3.4 2024-07-05 16:05:49 +00:00
R. Ryantm 4e729ca6ab vdrPlugins.softhddevice: 2.3.2 -> 2.3.3 2024-06-10 12:05:32 +00:00
R. Ryantm 57433b2d0b vdrPlugins.softhddevice: 2.3.1 -> 2.3.2 2024-06-04 17:17:50 +00:00
R. Ryantm 0502412807 vdrPlugins.softhddevice: 2.3.0 -> 2.3.1 2024-05-18 15:48:37 +00:00
R. Ryantm da633c2927 vdrPlugins.softhddevice: 2.2.0 -> 2.3.0 2024-05-11 02:55:07 +00:00
R. Ryantm ea035e6964 vdrPlugins.softhddevice: 2.1.2 -> 2.2.0 2024-05-01 15:53:45 +00:00
R. Ryantm b2699f7ea6 vdrPlugins.softhddevice: 2.1.1 -> 2.1.2 2024-03-16 14:43:48 +00:00
R. Ryantm aef5e138b1 vdrPlugins.softhddevice: 2.0.9 -> 2.1.1 2024-02-24 09:35:23 +00:00
R. Ryantm 2300905b7c vdrPlugins.softhddevice: 2.0.7 -> 2.0.9 2024-01-08 06:43:40 +00:00
Christian Kögler 37fef59ab4 vdrPlugins.softhddevice: 2.0.6 -> 2.0.7 2023-12-30 22:00:04 +01:00
R. Ryantm 34e31e3125 vdrPlugins.softhddevice: 1.12.5 -> 2.0.6 2023-11-16 03:55:51 +00:00
Christian Kögler c624a4380e vdrPlugings.softhddevice: 1.12.1 -> 1.12.5 2023-11-05 14:32:51 +01:00
R. Ryantm f225dc96e8 vdrPlugins.softhddevice: 1.11.2 -> 1.12.1 2023-09-05 14:22:04 +00:00
R. Ryantm 5663dc29dc vdrPlugins.softhddevice: 1.11.1 -> 1.11.2 2023-08-10 04:32:02 +00:00
Christian Kögler dc617c6623 vdrPlugins.softhddevice: 1.10.3 -> 1.11.1 2023-07-29 14:03:56 +02:00
R. Ryantm b75c5aea9a vdrPlugins.softhddevice: 1.9.7 -> 1.10.3 2023-07-10 06:43:57 +00:00
Christian Kögler 0214f60bef vdr-softhddevice: 1.9.3 -> 1.9.7 2023-02-12 08:50:34 +01:00
Christian Kögler b6c1fa2623 vdrPlugins.softhddevice: 1.9.2 -> 1.9.3 2022-10-14 22:55:42 +02:00
Christian Kögler 59bb395f1c vdrPlugins.softhddevice: 1.9.0 -> 1.9.2 2022-10-03 10:57:58 +02:00
Christian Kögler 62c7443beb vdr: Set platform to linux 2022-10-03 09:46:19 +02:00
Christian Kögler 45c07350c7 vdrPlugins.softhddevice: init ad 1.9.0 2022-08-18 22:46:44 +02:00