2
0
Fork 0
genodepkgs/pkgs/solo5/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2019-10-06 20:35:54 +02:00
# SPDX-FileCopyrightText: Emery Hemingway
#
# SPDX-License-Identifier: LicenseRef-Hippocratic-1.1
{ stdenv, buildPackages, fetchurl, llvmPackages }:
let version = "0.6.3";
2019-10-06 20:35:54 +02:00
in stdenv.mkDerivation {
pname = "solo5";
inherit version;
outputs = [ "out" "tests" ];
src = fetchurl {
url = "https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz";
sha256 = "08z2gv0jlsq6r92vacapdj0hqhyfqfy3xdjn5k9c1pd23a2syq7w";
2019-10-06 20:35:54 +02:00
};
enableParallelBuilding = true;
2019-10-21 13:06:35 +02:00
configurePhase = ''
runHook preConfigure
rm -r tests/test_tls
2019-10-21 13:06:35 +02:00
HOSTCC=${buildPackages.stdenv.cc}/bin/cc sh configure.sh
runHook postConfigure
'';
2019-10-06 20:35:54 +02:00
installPhase = ''
2019-10-21 13:06:35 +02:00
runHook preInstall
2019-10-06 20:35:54 +02:00
mkdir -p $out/bin $tests/bin
make install-opam-genode PREFIX=$out
for test in tests/*/*.genode; do
cp $test $tests/bin/solo5-`basename $test .genode`
done
2019-10-21 13:06:35 +02:00
runHook postInstall
2019-10-06 20:35:54 +02:00
'';
meta = with stdenv.lib; {
description = "Sandboxed execution environment.";
homepage = "https://github.com/solo5/solo5";
license = licenses.isc;
maintainers = [ maintainers.ehmry ];
};
}