R. Ryantm
b35ff61cd7
xbyak: 7.38 -> 7.40
2026-08-16 11:36:33 +00:00
Peder Bergebakken Sundt
b879a308e9
xbyak: 7.37.6 -> 7.38 ( #548979 )
2026-08-12 16:58:20 +00:00
7c6f434c
e8a7941fb7
xboard: 4.9.1 -> 4.9.1-unstable-2026-08-03
...
Switch from gtk2 to gtk3
Upstream no longer does releases, but development is active
2026-08-05 00:08:57 +02:00
Ryan Omasta
f0d79cbd3f
xbyak: 7.37.6 -> 7.38
2026-08-03 18:24:55 -06:00
R. Ryantm
20f033c823
xbyak: 7.37.5 -> 7.37.6
2026-07-29 12:34:24 +00:00
R. Ryantm
92a536dcfe
xbyak: 7.37.4 -> 7.37.5
2026-07-14 12:30:47 +00:00
R. Ryantm
890335c2cc
xbyak: 7.36.2 -> 7.37.4
2026-06-22 20:28:56 +00:00
Clément
5d26766cbf
treewide: add missing meta.homepage with source git repository
...
Added homepage where missing, where the sources are pulled from:
- https://github.com
- https://git.sr.ht
- https://gitlab.com
- https://invent.kde.org
- https://codeberg.org
- https://gitlab.gnome.org
- https://gitlab.freedesktop.org
- https://git.FreeBSD.org
- https://salsa.debian.org
- https://git.tvdr.de
- https://git.suckless.org
2026-06-01 23:40:52 +02:00
Thomas Butter
e7048ced44
xbase: add tbutter as maintainer
2026-05-23 19:08:31 +00:00
Thomas Butter
4a1111f841
xbase: unbreak
2026-05-23 19:08:16 +00:00
Ryan Omasta
bf216b7bc5
xbyak: 7.36 -> 7.36.2
2026-04-18 18:58:22 -06:00
Benjamin Staffin
4f8b2af3b1
xbindkeys-config: drop ( #511220 )
2026-04-19 00:29:36 +00:00
Xiangyan Sun
f43a91afea
xbindkeys-config: drop
2026-04-18 12:47:30 -07:00
Peder Bergebakken Sundt
e7625850ff
xbps: 0.60.6 -> 0.60.7 ( #488881 )
2026-04-15 00:47:37 +00:00
R. Ryantm
4fbe58eed1
xbyak: 7.35.4 -> 7.36
2026-04-14 13:07:22 +00:00
R. Ryantm
42ffad04d6
xbyak: 7.35.3 -> 7.35.4
2026-03-30 12:28:42 +00:00
R. Ryantm
2e75f6bee7
xbyak: 7.34.1 -> 7.35.3
2026-03-11 15:10:35 +00:00
R. Ryantm
449f8139cd
xbyak: 7.33.3 -> 7.34.1
2026-03-03 12:44:37 +00:00
dish
3b196fe9ea
xbill: move icon to spec-compliant location ( #494655 )
2026-03-01 17:52:10 +00:00
Gergő Gutyina
b25f654508
treewide: move NIX_CFLAGS_LINK vars into env for structuredAttrs ( #492176 )
2026-02-28 01:03:38 +00:00
pancaek
5c843161c2
xbill: move icon to spec-compliant location
2026-02-27 12:13:58 -08:00
R. Ryantm
378feafac6
xbyak: 7.31 -> 7.33.3
2026-02-21 05:20:44 +00:00
Stefan Frijters
9817b20b4c
xbill: move NIX_CFLAGS_LINK vars into env for structuredAttrs
2026-02-19 18:05:06 +01:00
R. Ryantm
2b1c8c0f90
xbps: 0.60.6 -> 0.60.7
2026-02-09 21:56:32 +00:00
Nick Cao
9ab9eeb2d3
xbyak: 7.30 -> 7.31 ( #487612 )
2026-02-09 21:14:17 +00:00
quantenzitrone
626f23ce26
various: switch packages to use finalAttrs
...
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set files (rg --files-with-matches -F 'stdenv.mkDerivation rec {' $scope | sort -u)
for file in $files
echo $file
sd -F 'stdenv.mkDerivation rec {' 'stdenv.mkDerivation (finalAttrs: {' $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
2026-02-07 09:59:05 +01:00
R. Ryantm
7a51c27fe4
xbyak: 7.30 -> 7.31
2026-02-06 12:33:03 +00:00
quantenzitrone
ace8e154a1
various: rename references from libXt to libxt
...
this shouldn't create any rebuilds
2026-02-06 00:29:25 +01:00
quantenzitrone
f0de96be2c
various: rename references from libXpm to libxpm
...
this shouldn't create any rebuilds
2026-02-06 00:26:01 +01:00
quantenzitrone
b87857cea9
various: rename references from libXmu to libxmu
...
this shouldn't create any rebuilds
2026-02-06 00:26:00 +01:00
quantenzitrone
77837f424c
various: rename references from libXi to libxi
...
this shouldn't create any rebuilds
2026-02-06 00:25:56 +01:00
quantenzitrone
543572a942
various: rename references from libXfixes to libxfixes
...
this shouldn't create any rebuilds
2026-02-06 00:25:40 +01:00
quantenzitrone
f67b5966bb
various: rename references from libXext to libxext
...
this shouldn't create any rebuilds
2026-02-06 00:25:36 +01:00
quantenzitrone
070e26c604
various: rename references from libXaw to libxaw
...
this shouldn't create any rebuilds
2026-02-06 00:24:44 +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
Jo
026a500d5c
various: rename references and deprecate alias ( #486994 )
2026-02-05 20:31:22 +00:00
Gergő Gutyina
1b9d1caaff
various: fix pname misuse in urls ( #483962 )
2026-02-05 10:12:27 +00:00
quantenzitrone
9c8e96055a
various: fix pname misuse in urls
2026-02-05 01:51:59 +01:00
quantenzitrone
03c297aea5
libSM: rename references and deprecate alias
...
this shouldn't create any rebuilds
2026-02-04 22:59:02 +01:00
quantenzitrone
bf63af1851
libICE: rename references and deprecate alias
...
this shouldn't create any rebuilds
2026-02-04 22:59:00 +01:00
quantenzitrone
0f3f3b3e2f
xbindkeys-config: move to pkgs/by-name
...
this shouldn't create any rebuilds
2026-02-01 22:40:41 +01:00
quantenzitrone
6b61249106
various: switch to finalAttrs pattern
...
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
Ihar Hrachyshka
c539fa85e3
treewide: remove remaining 'with [a-zA-Z]*lib;' from pkgs
...
Partial #208242
2026-01-06 20:47:21 -05:00
Michael Daniels
9a04427f2c
maintainers: remove dtzWill
...
Totally inactive on GitHub since August 2024.
2026-01-01 12:33:41 -05:00
Ihar Hrachyshka
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
Matt Sturgeon
c02269b8b9
xbps: 0.59.2 -> 0.60.6 ( #438020 )
2025-12-08 09:50:06 +00:00
kyehn
d94119f94e
xbps: 0.60.5 -> 0.60.6
...
Diff: https://github.com/void-linux/xbps/compare/0.60.5...0.60.6
2025-11-22 02:11:58 +00:00
jopejoe1
adc1506b97
{{view,list}res,smproxy,tab-window-manager,xauth,xbacklight}: refactor and move to pkgs/by-name from xorg namespace ( #435981 )
2025-09-10 10:39:51 +02:00
quantenzitrone
5c340597a9
xbacklight: refactor and move to pkgs/by-name from xorg namespace
2025-09-08 22:48:54 +02:00
R. Ryantm
1f4d80da57
xbyak: 7.29.2 -> 7.30
2025-09-05 00:15:45 +00:00