R. Ryantm
92fdff41d6
cloudflared: 2026.7.2 -> 2026.7.3
2026-07-25 04:52:23 +00:00
R. Ryantm
6a7227f26c
cloudflared: 2026.6.1 -> 2026.7.2
2026-07-16 02:06:01 +00:00
R. Ryantm
86b1c47fe1
cloudflared: 2026.6.0 -> 2026.6.1
2026-06-19 20:48:51 +00:00
R. Ryantm
0207c9d3f4
cloudflared: 2026.5.2 -> 2026.6.0
2026-06-10 10:55:55 +00:00
Ryan Omasta
84768b3f75
cloudflared: 2026.5.0 -> 2026.5.2
...
https://github.com/cloudflare/cloudflared/releases/tag/2026.5.2
Diff: https://github.com/cloudflare/cloudflared/compare/2026.5.0...2026.5.2
2026-05-27 16:33:23 -06:00
Ryan Omasta
bcac9dc0e1
cloudflared: 2026.3.0 -> 2026.5.0
...
https://github.com/cloudflare/cloudflared/releases/tag/2026.5.0
Diff: https://github.com/cloudflare/cloudflared/compare/2026.3.0...2026.5.0
2026-05-17 17:34:12 -06:00
Ryan Omasta
c8f552920c
cloudflared: add ryand56 as maintainer
2026-03-16 02:16:41 -06:00
Ryan Omasta
8442bd3d55
cloudflared: 2026.2.0 -> 2026.3.0
...
https://github.com/cloudflare/cloudflared/releases/tag/2026.3.0
Diff: https://github.com/cloudflare/cloudflared/compare/2026.2.0...2026.3.0
2026-03-16 02:16:05 -06:00
Sandro
66b30c0501
cloudflared: 2026.1.2 -> 2026.2.0 ( #488611 )
2026-02-11 16:17:26 +00:00
LuoChen
5796e548d4
cloudflared: 2026.1.2 -> 2026.2.0
2026-02-10 14:59:34 +08:00
hideyosh1
2f293e1fe3
wine: move packages that depend on "wine64" binary to require "wine"
...
according to upstream: "The wine64 loader binary is removed, in favor of
a single wine loader that selects the correct mode based on the binary
being executed. For binaries that have both 32-bit and 64-bit versions
installed, it defaults to 64-bit. The 32-bit version can then be
launched with an explicit path, e.g. wine
c:\\windows\\syswow64\\notepad.exe.",
I have changed all the references to the wine64 binary to only need the
wine binary -- tentative.
2026-02-07 17:03:12 -06: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
R. Ryantm
41a0e8bd1f
cloudflared: 2026.1.1 -> 2026.1.2
2026-01-30 12:22:48 +00:00
R. Ryantm
a2fb31a876
cloudflared: 2025.11.1 -> 2026.1.1
2026-01-23 13:04:49 +00:00
Piper McCorkle
5216a669c8
cloudflared: update metadata with new description & links
2025-11-07 14:42:32 -06:00
Piper McCorkle
c26566b004
cloudflared: fix deprecation warnings for test patches, fix passthru
2025-11-07 14:42:11 -06:00
Piper McCorkle
bfc6a10efb
cloudflared: 2025.10.1 -> 2025.11.1
2025-11-07 14:41:37 -06:00
R. Ryantm
10cf625fb9
cloudflared: 2025.10.0 -> 2025.10.1
2025-11-06 18:56:36 +00:00
R. Ryantm
31f3997835
cloudflared: 2025.9.1 -> 2025.10.0
2025-10-15 16:49:02 +00:00
R. Ryantm
6dfb3e7ea0
cloudflared: 2025.8.1 -> 2025.9.1
2025-09-30 11:49:29 +00:00
R. Ryantm
cb2eae952a
cloudflared: 2025.8.0 -> 2025.8.1
2025-08-28 09:14:56 +00:00
R. Ryantm
6a5abb7dbc
cloudflared: 2025.7.0 -> 2025.8.0
2025-08-10 12:09:43 +00:00
Arsenii Zorin
5f4f3db701
cloudflared: 2025.6.1 -> 2025.7.0
2025-07-04 11:32:20 +03:00
XYenon
c06f75576e
cloudflared: 2025.6.0 -> 2025.6.1
2025-06-18 02:43:28 +00:00
Arsenii Zorin
c7f60b9f7c
cloudflared: 2025.5.0 -> 2025.6.0
2025-06-16 13:37:55 +03:00
liberodark
51104bca6e
treewide: remove with lib Part 1
2025-06-03 18:27:59 +05:30
Arsenii Zorin
1c4eeef58a
cloudflared: 2025.4.0 -> 2025.5.0
2025-05-16 10:11:53 +03:00
awwpotato
fd8bf4519b
treewide: move to by-name
2025-04-21 09:02:01 -07:00