boxfort: init at unstable-2019-09-19

Signed-off-by: Guillaume Pagnoux <gpagnoux@gmail.com>
This commit is contained in:
Guillaume Pagnoux 2019-10-09 14:44:24 +02:00
parent e2c8c1aa1e
commit b76e290d80
No known key found for this signature in database
GPG key ID: D35934FEC93651BF
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ stdenv, fetchFromGitHub, cmake, pkg-config, gettext, libcsptr, dyncall
, nanomsg, python37Packages }:
stdenv.mkDerivation rec {
version = "unstable-2019-09-19";
pname = "boxfort";
src = fetchFromGitHub {
owner = "Snaipe";
repo = "BoxFort";
rev = "926bd4ce968592dbbba97ec1bb9aeca3edf29b0d";
sha256 = "0mzy4f8qij6ckn5578y3l4rni2470pdkjy5xww7ak99l1kh3p3v6";
};
enableParallelBuilding = true;
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
dyncall
gettext
libcsptr
nanomsg
];
checkInputs = with python37Packages; [ cram ];
cmakeFlags = [ "-DBXF_FORK_RESILIENCE=OFF" ];
doCheck = true;
preCheck = ''
export LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
'';
outputs = [ "dev" "out" ];
meta = with stdenv.lib; {
description = "Convenient & cross-platform sandboxing C library";
homepage = "https://github.com/Snaipe/BoxFort";
license = licenses.mit;
maintainers = with maintainers; [
thesola10
Yumasi
];
platforms = platforms.unix;
};
}

View file

@ -10455,6 +10455,8 @@ in
box2d = callPackage ../development/libraries/box2d { };
boxfort = callPackage ../development/libraries/boxfort { };
buddy = callPackage ../development/libraries/buddy { };
bulletml = callPackage ../development/libraries/bulletml { };