Boris Nagaev
9041124d99
lnd: 0.21.0-beta -> 0.21.1-beta
2026-07-01 01:07:35 -05:00
ekzyis
cd9338cc44
lnd: 0.20.1-beta -> 0.21.0-beta
2026-06-16 00:09:46 +02:00
Harinn
61ccc33e3b
lnx: unstable-2022-06-25 -> 0.9.0-master
2026-05-05 18:29:21 +07:00
Harinn
69eecf1846
lnx: switch to finalAttrs
2026-05-05 18:18:22 +07:00
Guillaume Girol
30ebbc660f
lnav: 0.13.2 -> 0.14.0
2026-04-15 12:00:00 +00:00
Yujonpradhananga
8aa691bf3d
pdf-cli: rename from lnreader
2026-03-31 21:37:27 +05:45
Fernando Rodrigues
aa748592af
lnreader: init at 1.0 ( #490109 )
2026-02-16 03:08:53 +00:00
Yujonpradhananga
065f20904f
lnreader: init at 1.0
2026-02-14 11:15:49 +05:45
Boris Nagaev
e6b159df41
lnd: 0.20.0 -> 0.20.1
2026-02-13 13:54:40 -05:00
Fernando Rodrigues
693e12715a
various: switch buildGoModule packages to use finalAttrs ( #487704 )
2026-02-07 09:35:52 +00: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
9380e05c3c
various: switch buildGoModule 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 buildGoModule
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
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $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:28:59 +01:00
Pavol Rusnak
9232346b34
lnd: 0.19.3 -> 0.20.0, set CGO_ENABLED=0 ( #476358 )
2026-02-02 09:17:15 +00:00
Doron Behar
df57a97f9b
lnav: split man output
2026-01-30 15:08:02 +02: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
Boris Nagaev
bcc9cf0156
lnd: set CGO_ENABLED=0
...
Sync it with how upstream is built for release:
https://github.com/lightningnetwork/lnd/blob/v0.20.0-beta/scripts/release.sh#L208
2026-01-02 15:05:47 -05:00
Boris Nagaev
f783b96a7b
lnd: 0.19.3 -> 0.20.0
2026-01-02 15:03:02 -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
Bruno Bigras
0f798216ae
lnav: 0.13.1 -> 0.13.2
2025-09-19 14:45:50 -04:00
Bruno Bigras
d31e89d3ee
lnav: 0.13.0 -> 0.13.1
2025-09-09 14:40:42 -04:00
Erik Arvstedt
56426e1a0c
lnd: 0.19.2-beta -> 0.19.3-beta
...
Diff: https://github.com/lightningnetwork/lnd/compare/v0.19.2-beta...v0.19.3-beta
2025-08-24 16:34:55 +02:00
mivorasu
7096ad75f3
lnav: 0.12.4 -> 0.13.0
2025-07-27 15:34:39 +08:00
Aleksana
9c8d70e8be
treewide: prefix unstable versions with 0-unstable ( #428516 )
2025-07-26 19:55:32 +08:00
mivorasu
7cf77aa671
treewide: prefix unstable versions with 0-unstable
2025-07-26 10:19:34 +00:00
TomaSajt
398b16e16c
treewide: remove useFetchCargoVendor usages
2025-07-26 11:39:35 +02:00
Wolfgang Walther
5a0711127c
treewide: run nixfmt 1.0.0
2025-07-24 13:55:40 +02:00
mivorasu
0dad56ce95
treewide: conform descriptions to the standards
2025-07-22 22:07:20 +00:00
mivorasu
1e377fedf7
treewide: strip trailing punctuation from description strings
2025-07-22 19:09:42 +00:00
Brian Lee
e3e2b7b401
lnd: 0.19.1 -> 0.19.2
2025-07-16 09:47:30 -07:00
Wolfgang Walther
ef481bfb2b
maintainers: drop d-xo
...
No activity for at least this year (2025), possibly up to a year (mid
2024).
2025-07-11 22:47:09 +02:00
TomaSajt
85a0954aa8
pkgs/by-name/{i,j,k,l}*: migrate to format = "pyproject"
2025-07-09 18:10:51 +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
nixpkgs-ci[bot]
2885d7583c
Merge master into staging-next
2025-06-12 00:17:36 +00:00
Brian Lee
6aca67543a
lnd: 0.19.0 -> 0.19.1
2025-06-11 13:36:22 -07:00
nixpkgs-ci[bot]
37e4b858c8
Merge master into staging-next
2025-06-09 00:18:38 +00:00
Sandro
0336501039
lnav: fix running in tmux ( #410901 )
2025-06-08 22:26:39 +02:00
Zitrone
cce1cc10f5
lndir: refactor and move to pkgs/by-name from xorg namespace
2025-06-06 21:56:40 +02:00
Peder Bergebakken Sundt
c4f02ff31e
treewide: substitute pname for strings
2025-05-29 17:04:28 +02:00
Guillaume Girol
511c01740c
lnav: fix running in tmux
2025-05-25 12:00:00 +00:00
Brian Lee
4a1b7155e8
lnd: 0.18.5 -> 0.19.0
2025-05-23 23:40:55 -07:00
Leah Amelia Chen
4f64e094ff
lngen: fix build with GHC >=9.8.1
...
ZHF #403336
2025-05-18 01:04:30 +02:00
awwpotato
509efdedbd
treewide: move to by-name
2025-05-05 08:49:04 -07:00
Guillaume Girol
27aca32b28
lnav: fix cross
...
the autoconf build system does not pass --target to cargo when compiling
the rust-based prql support into lnav, so cross compilation fails.
2025-04-04 12:00:00 +00:00
emaryn
5b59c0e893
lnav: 0.12.3 -> 0.12.4
2025-04-01 03:30:27 +08:00
Peder Bergebakken Sundt
e171199c50
treewide: replace stdenv.is with stdenv.hostPlatform.is
2025-03-26 23:14:22 +01:00
Brian Lee
9b8f134668
lnd: 0.18.4 -> 0.18.5
2025-02-12 09:39:41 -08:00
Brian Lee
8e44f7b61c
lnd: add maintainer
2025-02-12 09:21:26 -08:00
Peder Bergebakken Sundt
0cd04d3036
treewide: migrate fetchgit rev = "refs/tags/..." to tag
2025-01-04 00:19:17 +01:00
Austin Horstman
7b2e42fffd
treewide: unpin apple-sdk_11 j-m
2025-01-02 21:36:18 -06:00
Brian Lee
4494998307
lnd: 0.18.3 -> 0.18.4
2024-12-26 16:08:40 -08:00