Commit graph

9729 commits

Author SHA1 Message Date
nixpkgs-ci[bot]
c156b12ce6
Merge master into staging-next 2026-02-18 08:55:55 +00:00
quantenzitrone
6cb35dbf04
adwaita-qt: refactor and move to pkgs/by-name
this shouldn't create any rebuilds
2026-02-18 06:12:03 +01:00
K900
15a6983bd3 Merge remote-tracking branch 'origin/master' into staging-next 2026-02-11 21:30:26 +03:00
R. Ryantm
0439b48d0a constructium: 2025-09-01 -> 2026-02-08 2026-02-09 00:48:14 +00:00
sternenseemann
3c04c957b1 Merge haskell-updates PR #485516 into staging 2026-02-08 14:12:07 +01:00
nixpkgs-ci[bot]
8d50540af5
Merge e0658cba20 into haskell-updates 2026-02-08 00:35:29 +00:00
K900
b0d1142ec0 Merge remote-tracking branch 'origin/staging-next' into staging 2026-02-07 10:04:58 +03:00
nixpkgs-ci[bot]
5cc54eb434
Merge df1c5949df into haskell-updates 2026-02-07 00:27:00 +00:00
Hythera
97e97d1f37
tex-gyre-math.*: set pname 2026-02-06 21:20:43 +01:00
K900
3c4102eef4 Merge remote-tracking branch 'origin/staging-next' into staging 2026-02-06 15:58:23 +03:00
nixpkgs-ci[bot]
36b96717b4
Merge d96e0ef24c into haskell-updates 2026-02-06 00:26:39 +00:00
Martin Weinelt
743484c326
Merge remote-tracking branch 'origin/staging-next' into staging 2026-02-06 01:21:57 +01:00
quantenzitrone
2963d88708
various: rename references from libXdmcp to libxdmcp
this shouldn't create any rebuilds
2026-02-06 00:24:47 +01:00
quantenzitrone
239fcc219c
various: rename references from libXau to libxau
this shouldn't create any rebuilds
2026-02-06 00:24:43 +01:00
quantenzitrone
55280fa564
various: rename references from libX11 to libx11
this shouldn't create any rebuilds
2026-02-06 00:24:34 +01:00
nixpkgs-ci[bot]
9132d7ac3d
Merge 4a65905b70 into haskell-updates 2026-02-05 00:28:31 +00:00
quantenzitrone
d118fe0cf8
libpthreadstubs: rename references and deprecate alias
this shouldn't create any rebuilds
2026-02-04 22:59:01 +01:00
nixpkgs-ci[bot]
aba80eebd4
Merge staging-next into staging 2026-02-04 12:12:09 +00:00
nixpkgs-ci[bot]
c223df8214
Merge e7c3209de1 into haskell-updates 2026-02-03 00:29:14 +00:00
nixpkgs-ci[bot]
e4f237344f
Merge master into staging-nixos 2026-02-03 00:25:27 +00:00
nixpkgs-ci[bot]
f87d02ce0c
Merge staging-next into staging 2026-02-03 00:24:47 +00:00
Jo
740b1a2f15
tex-gyre.*: set pname (#486256) 2026-02-02 22:59:37 +00:00
Hythera
9b4db66cf6
tex-gyre.*: set pname 2026-02-02 13:08:18 +01:00
quantenzitrone
5394d89bb1
gruppled-{black,white}-lite-cursors: refactor & move to pkgs/by-name
since this changes the pname this unfortunately creates 2 rebuilds
2026-02-02 03:13:05 +01:00
quantenzitrone
a45bda03ad
gruppled-{black,white}-cursors: refactor & move to pkgs/by-name
since this changes the pname this unfortunately creates 2 rebuilds
2026-02-02 03:13:03 +01:00
Jo
f3f29eb25c
nixos-artwork.wallpapers.*: set pname and version (#482982) 2026-02-01 12:51:08 +00:00
sternenseemann
c1025b82b3 haskellPackages: stackage LTS 24.27 -> LTS 24.29
all-cabal-hashes: 2026-01-10T16:06:01Z -> 2026-01-30T20:25:58Z

(generated by maintainers/scripts/haskell/update-package-set.sh)

- Bump version for underscore packages (what4 and os-string).
- Break infinite recursion introduced by async starting to depend on
  unordered-containers. The only test deps involved in the infinite
  recursion are those of unordered-containers and nothunks. I've decided
  to sacrifice the test suite of nothunks.
2026-01-31 01:36:06 +01:00
sternenseemann
471bed913e
haskellPackages: stackage LTS 24.26 -> LTS 24.27 (#478767) 2026-01-30 20:59:00 +00:00
jopejoe1
861cc18033 nixos-artwork.wallpapers.*: set pname and version 2026-01-30 18:52:35 +01:00
Jo
07629fea7e
docbook_sgml_dtd_{31,41}: set pname and version instead of name (#484201) 2026-01-27 22:34:22 +00:00
nixpkgs-ci[bot]
ea727bb817
Merge 691a69afc8 into haskell-updates 2026-01-27 00:25:52 +00:00
jopejoe1
a9e4e2bc52 docbook_sgml_dtd_{31,41}: set pname and version instead of name 2026-01-26 23:44:04 +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 Daniels
3378ed55e9
Merge "$(git merge-base master staging)" (565e0c1f0f) into haskell-updates 2026-01-23 20:01:43 -05:00
Malte Ott
733406c07f
all-cabal-hashes: set pname and version (#482573) 2026-01-23 08:49:36 +00:00
jopejoe1
44177dd389 all-cabal-hashes: set pname and version 2026-01-22 08:04:55 +01:00
nixpkgs-ci[bot]
aa220955e8
Merge master into staging-next 2026-01-22 00:19:52 +00:00
Wolfgang Walther
af34bc65da
sourceHanPackages: move packages to toplevel only (#437190) 2026-01-21 18:54:25 +00:00
nixpkgs-ci[bot]
b29b652c51
Merge d6bc8a1403 into haskell-updates 2026-01-15 00:22:28 +00:00
nixpkgs-ci[bot]
473908d181
Merge master into staging-next 2026-01-15 00:18:13 +00:00
Felix Bühler
c9815a39ec
docbook_xml*: fix source not found (#477039) 2026-01-14 20:26:50 +00:00
Nadeŭka
6dac5dab0f
docbook_xml*: fix source not found 2026-01-14 23:04:03 +03:00
Wolfgang Walther
e88261e3ec
haskellPackages: stackage LTS 24.26 -> LTS 24.27
all-cabal-hashes: 2025-12-30T09:01:27Z -> 2026-01-10T16:06:01Z

(generated by maintainers/scripts/haskell/update-package-set.sh)
2026-01-10 17:24:01 +01:00
nixpkgs-ci[bot]
e2ffc6286c
Merge a5d7ac11b6 into haskell-updates 2026-01-08 00:24:10 +00:00
Stzx
3ba8eac1e8
maple-mono: 7.6 -> 7.9 2026-01-05 20:10:04 +08:00
sternenseemann
b15073a085 haskellPackages: stackage LTS 24.25 -> LTS 24.26
all-cabal-hashes: 2025-12-26T08:56:01Z -> 2025-12-30T09:01:27Z

(generated by maintainers/scripts/haskell/update-package-set.sh)
2025-12-30 11:39:23 +01:00
sternenseemann
163916b873 haskellPackages: stackage LTS 24.23 -> LTS 24.25
all-cabal-hashes: 2025-12-14T11:19:11Z -> 2025-12-26T08:56:01Z

(generated by maintainers/scripts/haskell/update-package-set.sh)
2025-12-26 12:05:28 +01:00
Wolfgang Walther
a2f4624ff3
haskellPackages: hackage 2025-12-11T06:37:31Z -> 2025-12-14T11:19:11Z
all-cabal-hashes: 2025-12-11T06:37:31Z -> 2025-12-14T11:19:11Z

(generated by maintainers/scripts/haskell/update-package-set.sh)
2025-12-14 14:05:08 +01:00
Wolfgang Walther
6ba385238d
haskellPackages: stackage LTS 24.22 -> LTS 24.23
all-cabal-hashes: 2025-12-03T17:29:30Z -> 2025-12-11T06:37:31Z

(generated by maintainers/scripts/haskell/update-package-set.sh)
2025-12-11 10:07:19 +01:00
Wolfgang Walther
f0f1f0c27d
Merge commit 'af6d3ec4ba' into haskell-updates 2025-12-10 18:48:52 +01:00