From 9b6ee9886ffe0cdcfb23b1f196a9d4ea8f5a9b37 Mon Sep 17 00:00:00 2001 From: Gabor Pihaj Date: Sun, 8 Oct 2023 16:53:40 +0000 Subject: [PATCH] fix: revert openssl installation (#14) This reverts commit 7dc68ba37ffa0700e35d3a673605723a491a8e91. Reviewed-on: https://git.vdx.hu/voidcontext/woodpecker-plugin-nix-attic/pulls/14 Co-authored-by: Gabor Pihaj Co-committed-by: Gabor Pihaj --- mkImage.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/mkImage.nix b/mkImage.nix index 68da970..7e2b5c5 100644 --- a/mkImage.nix +++ b/mkImage.nix @@ -16,14 +16,13 @@ in name = "git.vdx.hu/voidcontext/woodpecker-plugin-nix-attic"; tag = tag; fromImage = nixImage; + # runAsRoot = '' + # #!${pkgs.stdenv.shell} + # export PATH=/bin:/usr/bin:/sbin:/usr/sbin:$PATH + # ''; copyToRoot = pkgs.buildEnv { name = "woodpecker-plugin-nix-attic-image-root"; - paths = [ - pkgs.gnumake - pkgs.attic-client - pkgs.openssl - entrypoint - ]; + paths = [pkgs.gnumake pkgs.attic-client entrypoint]; pathsToLink = ["/bin"]; };