summary refs log tree commit diff
path: root/pkgs/os-specific/linux/sydbox/default.nix
blob: bdaf77147f2ee76d740a8ce0425bdb1a7c592750 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{ lib
, stdenv
, fetchurl
, pkg-config
, autoreconfHook
, python3
, perl
, libxslt
, docbook_xsl
, docbook_xml_dtd_42
, libseccomp
, installTests ? true, gnumake, which
, debugBuild ? false, libunwind
}:

stdenv.mkDerivation rec {
  pname = "sydbox-1";
  version = "2.2.0";

  outputs = [ "out" "dev" "man" "doc" ]
    ++ lib.optional installTests "installedTests";

  src = fetchurl {
    url = "https://git.exherbo.org/${pname}.git/snapshot/${pname}-${version}.tar.xz";
    sha256 = "0664myrrzbvsw73q5b7cqwgv4hl9a7vkm642s1r96gaxm16jk0z7";
  };

  nativeBuildInputs = [
    pkg-config
    autoreconfHook
    python3
    perl
    libxslt.bin
    docbook_xsl
    docbook_xml_dtd_42
  ];

  buildInputs = [
    libseccomp
  ] ++ lib.optional debugBuild libunwind
    ++ lib.optionals installTests [
      gnumake
      python3
      perl
      which
    ];

  enableParallelBuilding = true;

  configureFlags = [ ]
    ++ lib.optionals installTests [ "--enable-installed-tests"
      "--libexecdir=${placeholder "installedTests"}/libexec" ]
    ++ lib.optional debugBuild "--enable-debug";

  makeFlags = [ "SYD_INCLUDEDIR=${stdenv.cc.libc.dev}/include" ];

  doCheck = true;
  checkPhase = ''
    # Many of the regular test cases in t/ do not work inside the build sandbox
    make -C syd check
  '';

  postInstall = if installTests then ''
    moveToOutput bin/syd-test $installedTests
  '' else ''
    # Tests are installed despite --disable-installed-tests
    rm -r $out/bin/syd-test $out/libexec
  '';

  meta = with lib; {
    homepage = "https://sydbox.exherbo.org/";
    description = "seccomp-based application sandbox";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ mvs ];
  };
}