Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
936 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
libseccomp,
perl,
which,
}:
stdenv.mkDerivation {
pname = "syscall_limiter";
version = "2017-01-23";
src = fetchFromGitHub {
owner = "vi";
repo = "syscall_limiter";
rev = "481c8c883f2e1260ebc83b352b63bf61a930a341";
sha256 = "0z5arj1kq1xczgrbw1b8m9kicbv3vs9bd32wvgfr4r6ndingsp5m";
};
buildInputs = [ libseccomp ];
installPhase = ''
mkdir -p $out/bin
cp -v limit_syscalls $out/bin
cp -v monitor.sh $out/bin/limit_syscalls_monitor.sh
substituteInPlace $out/bin/limit_syscalls_monitor.sh \
--replace perl ${perl}/bin/perl \
--replace which ${which}/bin/which
'';
meta = with lib; {
description = "Start Linux programs with only selected syscalls enabled";
homepage = "https://github.com/vi/syscall_limiter";
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.linux;
};
}