Merge pull request #301820 from ehmry/solo5

solo5: 0.8.0 -> 0.8.1
This commit is contained in:
Weijia Wang 2024-04-12 10:34:57 +02:00 committed by GitHub
commit a5f8f3bf36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,7 @@
, pkg-config, qemu, syslinux, util-linux }:
let
version = "0.8.0";
version = "0.8.1";
# list of all theoretically available targets
targets = [
"genode"
@ -21,7 +21,7 @@ in stdenv.mkDerivation {
src = fetchurl {
url = "https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz";
sha256 = "sha256-t80VOZ8Tr1Dq+mJfRPVLGqYprCaqegcQtDqdoHaSXW0=";
sha256 = "sha256-J1xcL/AdcLQ7Ph3TFwEaS9l4cWjDQsTaXTdBDcT7p6E=";
};
hardeningEnable = [ "pie" ];
@ -63,13 +63,13 @@ in stdenv.mkDerivation {
runHook postCheck
'';
meta = with lib; {
meta = {
description = "Sandboxed execution environment";
homepage = "https://github.com/solo5/solo5";
license = licenses.isc;
maintainers = [ maintainers.ehmry ];
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ ehmry ];
platforms = builtins.map ({arch, os}: "${arch}-${os}")
(cartesianProductOfSets {
(lib.cartesianProductOfSets {
arch = [ "aarch64" "x86_64" ];
os = [ "freebsd" "genode" "linux" "openbsd" ];
});

View File

@ -28136,8 +28136,6 @@ with pkgs;
smimesign = callPackage ../os-specific/darwin/smimesign { };
solo5 = callPackage ../os-specific/solo5 { };
statik = callPackage ../development/tools/statik { };
statifier = callPackage ../os-specific/linux/statifier { };