R. Ryantm
4fa8ba9ea6
bpfmon: 2.53 -> 2.60
2026-07-30 00:27:15 +00:00
Ryan Burns
38d6a5a5c6
build2 packages: 0.17 -> 0.18 ( #537177 )
2026-07-02 23:36:03 +00:00
Sandro
da6d66159b
bpf-linker: 0.10.3 -> 0.10.4 ( #532794 )
2026-07-02 15:07:26 +00:00
2kybe3
fb0d1a7cd3
treewide: follow some GitHub redirects for fetchFromGitHub
2026-06-30 22:37:21 +02:00
Ryan Burns
06746a162b
build2 packages: 0.17 -> 0.18
...
These packages are all highly interdependent and have to be updated in
lockstep, so I'm just doing it all in one commit - there's no benefit to
having cherry-pickable commits as they wouldn't work individually.
2026-06-30 13:15:41 -07:00
R. Ryantm
f7bf97677d
bpf-linker: 0.10.3 -> 0.10.4
2026-06-17 21:36:11 +00:00
R. Ryantm
ee347c19bb
bpftrace: 0.26.0 -> 0.26.1
2026-06-05 02:28:38 +00:00
nixpkgs-ci[bot]
092306d543
bpftrace: 0.25.1 -> 0.26.0 ( #524500 )
2026-06-01 23:40:42 +00:00
Matt Sturgeon
2373d26e00
bpf-linker: 0.9.15 -> 0.10.3 ( #495824 )
2026-05-29 16:26:41 +00:00
R. Ryantm
7970014089
bpftrace: 0.25.1 -> 0.26.0
2026-05-26 16:07:37 +00:00
R. Ryantm
10e4b81203
bpftop: 0.8.0 -> 0.9.0
2026-05-03 00:27:08 +00:00
HaeNoe
5c6898b57b
bpf-linker: 0.9.15 -> 0.10.3
...
- allow overriding `llvmPackages` for using `bpf-linker` with a version
of rustc that uses a different llvm version
2026-04-21 17:10:03 +02:00
R. Ryantm
9b6ea3e4a7
bpftop: 0.7.1 -> 0.8.0
2026-04-14 00:26:12 +00:00
R. Ryantm
bb708cf61f
bpftrace: 0.25.0 -> 0.25.1
2026-03-25 19:14:00 +00:00
Lisanna Dettwyler
b0c4d5e583
bpm-tools: use https for sources
...
Signed-off-by: Lisanna Dettwyler <lisanna.dettwyler@gmail.com >
2026-03-21 12:30:08 -04:00
R. Ryantm
dbd3e76040
bpftrace: 0.24.2 -> 0.25.0
2026-03-15 13:05:52 +05:30
tarzst
2b72677636
bpftune: 0-unstable-2025-03-20 → 0.4-2
2026-02-11 23:02:08 +05:30
Fernando Rodrigues
169ab49f59
various: fix pname misuse and switch to finalAttrs pattern ( #487638 )
2026-02-07 09:20:32 +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
quantenzitrone
20f127a8c8
bpftop: refactor
...
this shouldn't create any rebuilds
2026-02-07 09:48:30 +01:00
Paul Haerle
f9d404434b
bpflinter: init at v0.1.5 ( #474393 )
2026-02-03 13:19:58 +00:00
quantenzitrone
6b61249106
various: switch to finalAttrs pattern
...
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
K900
6e8dc58e2d
Merge remote-tracking branch 'origin/master' into staging-next
2026-01-21 21:22:49 +03:00
quantenzitrone
35a1f39f96
{bdep,bpkg}: move to pkgs/by-name
...
this shouldn't create any rebuilds
2026-01-21 00:55:55 +01:00
Farid Zakaria
9cd450cb98
bpflinter: init at v0.3.0
2026-01-06 08:39:04 -08:00
Sergei Trofimovich
65d2dc7a4b
bpftools: add missing openssl depend
...
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=40863f4d6ef2c34bb00dd1070dfaf9d5f27a497e
added `BPF` program signing support. This bork `bpftools` build as:
sign.c:16:10: fatal error: openssl/opensslv.h: No such file or directory
16 | #include <openssl/opensslv.h>
| ^~~~~~~~~~~~~~~~~~~~
2025-12-28 17:34:37 +00:00
Muhammad Falak R Wani
24c8501580
bpftrace: 0.24.1 -> 0.24.2
...
Diff: https://github.com/bpftrace/bpftrace/compare/v0.24.1...v0.24.2
Changelog: https://github.com/bpftrace/bpftrace/releases/tag/v0.24.2
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com >
2025-12-14 06:19:53 +00: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
dish
69b95fa6c5
bpftrace: 0.23.5 -> 0.24.1 ( #450486 )
2025-10-13 19:22:18 +00:00
Dominique Martinet
27bb09b95e
bpftrace: 0.23.5 -> 0.24.1
...
This fixes build error due to updaded llvm.
bpftrace 0.24.1 had a couple of regressions, so backport fix and
temporarily raise ulimit in test.
A better solution for ulimit will probably make it in 0.24.2 but
that is likely harmless enough in practice so go ahead as is.
Notes:
- add new xxd build dep to fix build
- INSTALL_TOOL_DOCS was removed, .txt files are now comments in scripts
themselves
- USE_SYSTEM_LIBBPF is optional right now but needed on master, just set
it as there is no harm and next auto-update will be less work
2025-10-11 05:49:25 +09:00
Vincent Laporte
4aa5395ff8
bppsuite: fix build
2025-10-09 09:05:08 +02:00
SkohTV
955d1bb580
bpfilter: 0.5.2 -> 0.6.0
2025-09-29 14:53:32 -04:00
nixpkgs-ci[bot]
576af05d09
Merge master into staging-next
2025-09-03 21:56:09 +00:00
R. Ryantm
112a9994f7
bpftop: 0.7.0 -> 0.7.1
2025-09-02 06:43:21 +00:00
nixpkgs-ci[bot]
b4d7d83861
Merge staging-next into staging
2025-08-27 18:06:13 +00:00
Sandro Jäckel
751ca4050a
bpf-linker: run tests
2025-08-27 15:19:47 +02:00
Sandro Jäckel
d85913e9f9
bpf-linker: 0.9.14 -> 0.9.15
2025-08-26 17:33:43 +02:00
nixpkgs-ci[bot]
b5d4232cc0
Merge staging-next into staging
2025-08-21 06:06:59 +00:00
R. Ryantm
ecdafc3292
bpftop: 0.6.0 -> 0.7.0
2025-08-19 21:00:11 +00:00
Sandro
5964d5ed67
bpftools: Re-apply patch to fix build on powerpc64* ( #422391 )
2025-08-10 23:59:52 +02:00
Jared Baur
5e941fed6e
bpfilter: 0.4.0 -> 0.5.2
2025-07-27 12:17:17 -07:00
TomaSajt
398b16e16c
treewide: remove useFetchCargoVendor usages
2025-07-26 11:39:35 +02:00
OPNA2608
6ffc64b81b
bpftools: Re-apply patch to fix build on powerpc64*
2025-07-04 13:48:20 +02:00
Guy Chronister
1750d6c2fe
treewide: replace pname with string literal in src
2025-06-18 12:13:07 +00:00
R. Ryantm
3cea599f98
bpftrace: 0.23.4 -> 0.23.5
2025-06-12 10:12:18 +00:00
liberodark
c6729488de
treewide: remove with lib Part 4
2025-06-07 00:48:50 +02:00
R. Ryantm
38479681c0
bpftrace: 0.23.3 -> 0.23.4
2025-06-02 03:11:07 +00:00
R. Ryantm
10f39b0936
bpftrace: 0.23.2 -> 0.23.3
2025-05-22 20:37:58 +00:00
R. Ryantm
5813916b57
bpfilter: 0.3.0 -> 0.4.0
2025-05-21 06:53:37 +00:00
R. Ryantm
13d923053a
bpftrace: 0.23.1 -> 0.23.2
2025-04-21 07:30:13 +00:00