Rine Amakawa
55bde77ad5
ayugram-desktop: 6.7.8 -> 7.0.9
...
Diff: https://github.com/AyuGram/AyuGramDesktop/compare/v6.7.8...v7.0.9
Changelog: https://github.com/AyuGram/AyuGramDesktop/releases/tag/v7.0.9
2026-08-11 11:05:13 +09:00
Martin Weinelt
7a3aa95b7b
ayu-theme-gtk: remove
...
Depends on gtk-engine-murrine, which is being removed from nixpkgs.
2026-07-30 01:19:26 +02:00
Cosima Neidahl
eefb8869f5
ayatana-indicator-session: Switch to lomiri-qt6 attrset ( #533734 )
2026-06-27 17:30:44 +00:00
Cosima Neidahl
dc34ddb216
ayatana-indicator-power: Switch to lomiri-qt6 attrset ( #533621 )
2026-06-27 17:21:02 +00:00
Doron Behar
4b4294732f
ayatana-webmail: 24.5.17 -> 26.6.13 ( #533553 )
2026-06-21 10:44:29 +00:00
OPNA2608
3069c6b6bf
ayatana-indicator-session: Switch to lomiri-qt6 attrset
...
Doesn't use Qt, so would-be no-op (cmake-extras includes paths to Qt, so still a rebuild).
2026-06-20 22:50:05 +02:00
Cosima Neidahl
edf0baa8b1
ayatana-indicator-session: 24.5.1 -> 26.6.1 ( #532157 )
2026-06-20 20:07:28 +00:00
Cosima Neidahl
f28f8157d7
ayatana-indicator-sound: 24.5.2 -> 24.5.3 ( #532156 )
2026-06-20 14:02:51 +00:00
OPNA2608
ae057ea14d
ayatana-indicator-power: Switch to lomiri-qt6 attrset
...
Doesn't use Qt, so would-be no-op (cmake-extras includes paths to Qt, so still a rebuild).
2026-06-20 15:29:13 +02:00
Cosima Neidahl
565bc5214d
ayatana-indicator-power: 24.5.2 -> 26.6.0 ( #532153 )
2026-06-20 13:14:11 +00:00
R. Ryantm
61728b04c7
ayatana-webmail: 24.5.17 -> 26.6.13
2026-06-20 09:21:27 +00:00
OPNA2608
916830084c
ayatana-indicator-session: 24.5.1 -> 26.6.1
2026-06-16 03:33:13 +02:00
OPNA2608
61f7659170
ayatana-indicator-sound: 24.5.2 -> 24.5.3
2026-06-16 03:19:45 +02:00
OPNA2608
b9b2c08ac4
ayatana-indicator-power: 24.5.2 -> 26.6.0
2026-06-16 03:03:53 +02:00
fliiiix
bd25224615
ayatana-indicator-display: 24.5.2 -> 26.6.0
2026-06-15 18:16:23 +02:00
R. Ryantm
c1a234f37d
ayatana-indicator-datetime: 25.4.0 -> 26.6.0
...
Co-authored-by: OPNA2608 <opna2608@protonmail.com >
2026-06-13 12:16:47 +02:00
fliiiix
e42a1fcc6c
ayatana-indicator-display: Fix for cppcheck 2.21.0
2026-06-09 17:48:01 +02:00
Sizhe Zhao
f124d8254f
ayugram-desktop: fix build on darwin
2026-05-11 21:31:40 +08:00
K900
e8c3e414a6
telegram-desktop: 6.7.8 -> 6.8.0, _64gram: 1.2.0 -> 1.2.1, ayugram-desktop: 6.3.10 -> 6.7.8 ( #517807 )
2026-05-10 03:38:16 +00:00
K900
59ac5638f0
treewide: hide KF5
2026-05-08 09:34:21 +03:00
K900
b55208305d
treewide: switch to KF6 version of extra-cmake-modules
2026-05-08 09:29:04 +03:00
Nick Cao
98e1d4139a
ayugram-desktop: 6.3.10 -> 6.7.8
...
Diff: https://github.com/AyuGram/AyuGramDesktop/compare/v6.3.10...v6.7.8
Changelog: https://github.com/AyuGram/AyuGramDesktop/releases/tag/v6.7.8
2026-05-07 16:59:28 -04:00
nixpkgs-ci[bot]
350adb370d
Merge staging-next into staging
2026-03-31 18:20:54 +00:00
OPNA2608
261719a2d4
{libsForQt5.libqtdbustest,libsForQt5.libqtdbusmock}: Rename from {libqtdbustest,libqtdbusmock}
...
For future Qt6 builds of these, to be used in Qt6 Lomiri builds.
2026-03-26 21:54:53 +01:00
Victor Engmark
c4f5dfad0d
treewide: Remove continuation escape at end of commands
...
To avoid confusion and spurious newlines in the output.
Found by searching for a backslash followed by a newline, some
indentation, and then the end of multi-line string marker, using the
following extended regex:
```regex
\\\n +'';
```
2026-03-17 16:47:55 +01:00
pancaek
fdf5f18d10
various: remove references to mate scope
2026-02-10 23:56:53 +08:00
quantenzitrone
18dc8a95fb
various: switch buildPythonApplication 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 builder buildPythonApplication
set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)
for file in $files
echo $file
sd -F "$builder rec {" "$builder (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
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# combinations
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
sd -F 'inherit version pname;' 'inherit (finalAttrs) version pname;' $file
sd -F 'inherit pname version;' 'inherit (finalAttrs) pname version;' $file
sd -F 'inherit pname src version;' 'inherit (finalAttrs) pname src version;' $file
sd -F 'inherit pname version src;' 'inherit (finalAttrs) pname version src;' $file
sd -F 'inherit src pname version;' 'inherit (finalAttrs) src pname version;' $file
sd -F 'inherit src version pname;' 'inherit (finalAttrs) src version pname;' $file
sd -F 'inherit version pname src;' 'inherit (finalAttrs) version pname src;' $file
sd -F 'inherit version src pname;' 'inherit (finalAttrs) version src pname;' $file
# other
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'nativeBuildInputs}' 'finalAttrs.nativeBuildInputs}' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'propagatedBuildInputs}' 'finalAttrs.propagatedBuildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'makePythonPath dependencies' 'makePythonPath finalAttrs.dependencies' $file
sd -F 'makePythonPath propagatedBuildInputs' 'makePythonPath finalAttrs.propagatedBuildInputs' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'runtimeDeps}' 'finalAttrs.runtimeDeps}' $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
# 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 10:06:06 +01:00
quantenzitrone
6b61249106
various: switch to finalAttrs pattern
...
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
Michael Daniels
075e8c2c4f
treewide: change 'format = "pyproject";' to 'pyproject = true;'
...
This is almost all find-and-replace.
I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix
A few files have not been changed in this PR because they would cause rebuilds.
This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00
Tom van Dijk
ec9ac151ed
ayugram-desktop: 6.2.4 -> 6.3.10
...
Changelog: https://github.com/AyuGram/AyuGramDesktop/releases/tag/v6.3.10
2026-01-08 23:02:18 +01: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
Guanran Wang
c209b9bf5e
ayugram-desktop: 5.16.3 -> 6.2.4
2025-11-06 15:41:36 +08:00
ccicnce113424
60d03335e8
ayugram-desktop: fix build with qt 6.10
2025-10-23 20:16:32 +08:00
Wolfgang Walther
91a8fee3aa
treewide: remove redundant parentheses
...
Auto-fixed by nixf-diagnose.
2025-10-05 10:52:03 +02:00
Wolfgang Walther
c283f32d29
treewide: remove unused with
...
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00
NAHO
c8d4dabc43
pkgs: remove optional builtins prefixes from prelude functions
...
Remove optional builtins prefixes from prelude functions by running:
builtins=(
abort
baseNameOf
break
derivation
derivationStrict
dirOf
false
fetchGit
fetchMercurial
fetchTarball
fetchTree
fromTOML
import
isNull
map
null
placeholder
removeAttrs
scopedImport
throw
toString
true
)
fd \
--type file \
. \
pkgs \
--exec-batch sed --in-place --regexp-extended "
s/\<builtins\.($(
printf '%s\n' "${builtins[@]}" |
paste --delimiter '|' --serial -
))\>/\1/g
"
nix fmt
2025-10-04 19:02:37 +02:00
Guy Chronister
5ca7c1b072
various: migrate rev to tag
2025-09-30 08:51:32 -05:00
OPNA2608
f03a8caee5
ayatana-indicator-sound: Lengthen timeouts in tests
...
OfBorg please...
2025-08-26 17:10:42 +02:00
nukdokplex
2956a162bf
ayugram-desktop: fix mainProgram
2025-07-31 14:30:45 +05:30
Wolfgang Walther
5a0711127c
treewide: run nixfmt 1.0.0
2025-07-24 13:55:40 +02:00
Tom van Dijk
5a903b8a00
ayugram-desktop: 5.14.3 -> 5.16.3
2025-07-15 22:47:31 +02:00
TomaSajt
11f150163f
pkgs/by-name/{a,b,c,d}*: migrate to format = "pyproject"
2025-07-03 01:11:23 +02:00
Martin Weinelt
ae4a1a485a
treewide: add explicit format attribute for Python packages
...
If a Python package does not come with either `format` or `pyproject` we
consider it a setuptools build, that calls `setup.py` directly, which is
deprecated.
This change, as a first step, migrates a large chunk of these packages to
set setuptools as their explicit format
This is so we can unify the problem space for the next step of the
migration.
2025-07-02 05:56:47 +02:00
OPNA2608
1a6b286b9c
lomiri.lomiri-indicator-datetime: init at 25.4.0
...
ayatana-indicator-datetime, overridden to enable Lomiri features.
2025-06-13 13:49:14 +02:00
OPNA2608
247e70e520
ayatana-indicator-datetime: 24.5.1 -> 25.4.0
...
Turning off Lomiri features in this derivation, because it now results in a different indicator.
2025-06-09 14:49:46 +02:00
liberodark
c6729488de
treewide: remove with lib Part 4
2025-06-07 00:48:50 +02:00
Tom van Dijk
7303eab2fe
ayugram-desktop: 5.12.3 -> 5.14.3
2025-06-03 15:56:21 +02:00
R. Ryantm
997d2680af
ayatana-indicator-display: 24.5.1 -> 24.5.2
2025-05-04 22:13:14 +00:00
OPNA2608
755a6878ba
ayatana-indicator-session: Add lomiri indicator test to passthru.tests
2025-04-26 18:10:43 +02:00
OPNA2608
0a334ecd08
ayatana-indicator-datetime: Add lomiri indicator test to passthru.tests
2025-04-26 18:10:43 +02:00