nixpkgs/pkgs/os-specific/solo5/default.nix

76 lines
1.8 KiB
Nix
Raw Permalink Normal View History

2021-01-24 11:17:26 +00:00
{ lib, stdenv, fetchurl, pkg-config, libseccomp, util-linux, qemu }:
2020-10-08 14:20:39 +00:00
let
version = "0.6.8";
# list of all theoretically available targets
targets = [
"genode"
"hvt"
"muen"
"spt"
"virtio"
"xen"
];
2020-10-08 14:20:39 +00:00
in stdenv.mkDerivation {
pname = "solo5";
inherit version;
nativeBuildInputs = [ pkg-config ];
2020-10-08 14:20:39 +00:00
buildInputs = lib.optional (stdenv.hostPlatform.isLinux) libseccomp;
src = fetchurl {
url =
"https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz";
2021-02-06 19:20:57 +00:00
sha256 = "sha256-zrxNCXJIuEbtE3YNRK8Bxu2koHsQkcF+xItoIyhj9Uc=";
2020-10-08 14:20:39 +00:00
};
hardeningEnable = [ "pie" ];
configurePhase = ''
runHook preConfigure
sh configure.sh
runHook postConfigure
'';
enableParallelBuilding = true;
installPhase = ''
runHook preInstall
export DESTDIR=$out
export PREFIX=$out
make install-tools
# get CONFIG_* vars from Makeconf which also parse in sh
grep '^CONFIG_' Makeconf > nix_tmp_targetconf
source nix_tmp_targetconf
# install opam / pkg-config files for all enabled targets
${lib.concatMapStrings (bind: ''
[ -n "$CONFIG_${lib.toUpper bind}" ] && make install-opam-${bind}
'') targets}
2020-10-08 14:20:39 +00:00
runHook postInstall
'';
doCheck = stdenv.hostPlatform.isLinux;
2021-01-24 11:17:26 +00:00
checkInputs = [ util-linux qemu ];
checkPhase = ''
runHook preCheck
2020-10-08 14:20:39 +00:00
patchShebangs tests
./tests/bats-core/bats ./tests/tests.bats
runHook postCheck
'';
2020-10-08 14:20:39 +00:00
meta = with lib; {
description = "Sandboxed execution environment";
2020-10-08 14:20:39 +00:00
homepage = "https://github.com/solo5/solo5";
license = licenses.isc;
maintainers = [ maintainers.ehmry ];
platforms = builtins.map ({arch, os}: "${arch}-${os}")
(cartesianProductOfSets {
arch = [ "aarch64" "x86_64" ];
os = [ "freebsd" "genode" "linux" "openbsd" ];
});
2020-10-08 14:20:39 +00:00
};
}