chore: remove package all

use nixci

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-03-22 08:34:07 +01:00
parent 8f57b61c00
commit 4617b69a45
Signed by: harald
GPG key ID: F519A1143B3FBE32
2 changed files with 0 additions and 46 deletions

View file

@ -21,12 +21,6 @@
namespace = "nixsgx";
};
alias = {
packages = {
default = "all";
};
};
outputs-builder = channels: {
formatter = channels.nixpkgs.nixpkgs-fmt;
};

View file

@ -1,40 +0,0 @@
{ lib
, buildEnv
, stdenv
, symlinkJoin
, nixsgx
}:
let
container = stdenv.mkDerivation {
name = "container";
src = with nixsgx; [
docker-gramine-azure
docker-gramine-dcap
];
unpackPhase = "true";
installPhase = ''
set -x
mkdir -p $out
cp -vr $src $out
'';
};
in
symlinkJoin {
name = "all";
paths = with nixsgx;[
azure-dcap-client
container
gramine
libuv
nodejs
protobufc
restart-aesmd
sgx-dcap
sgx-psw
sgx-sdk
sgx-ssl
];
}