Files
nix-files/hosts/common/programs/ausyscall.nix
2025-07-22 22:10:52 +00:00

8 lines
188 B
Nix

# `ausyscall --dump`: lists all syscalls by number and name
{ pkgs, ... }:
{
sane.programs.ausyscall = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.audit "ausyscall";
};
}