nixpkgs/pkgs/os-specific/linux/syscall_limiter/default.nix

38 lines
942 B
Nix
Raw Normal View History

2016-01-05 15:00:02 +00:00
{ stdenv
, fetchFromGitHub
, libseccomp
, perl
, which
}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "syscall_limiter";
version = "2017-01-23";
2016-01-05 15:00:02 +00:00
src = fetchFromGitHub {
2017-02-18 10:39:01 +00:00
owner = "vi";
repo = "syscall_limiter";
rev = "481c8c883f2e1260ebc83b352b63bf61a930a341";
sha256 = "0z5arj1kq1xczgrbw1b8m9kicbv3vs9bd32wvgfr4r6ndingsp5m";
2016-01-05 15:00:02 +00:00
};
buildInputs = [ libseccomp ];
2016-01-05 15:00:02 +00:00
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 stdenv.lib; {
description = "Start Linux programs with only selected syscalls enabled";
2017-02-18 10:39:01 +00:00
homepage = https://github.com/vi/syscall_limiter;
license = licenses.mit;
2016-01-05 15:00:02 +00:00
maintainers = with maintainers; [ obadz ];
2017-02-18 10:39:01 +00:00
platforms = platforms.linux;
2016-01-05 15:00:02 +00:00
};
}