From edf32110f7f210fa6119e8bf7aef9a1c42843b78 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sun, 5 May 2024 10:24:12 +0200 Subject: [PATCH] fix --- systems/hetzner/nginx.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/systems/hetzner/nginx.nix b/systems/hetzner/nginx.nix index 4e036e9..820aefb 100644 --- a/systems/hetzner/nginx.nix +++ b/systems/hetzner/nginx.nix @@ -77,6 +77,10 @@ nativeBuildInputs = [ pkgs.unzip ]; + unpackPhase = '' + mkdir -p $out + unzip $src "madara-child/*" -d $out + ''; installPhase = "mkdir -p $out; cp -R * $out/"; }; madara-core = pkgs.stdenv.mkDerivation rec { @@ -103,6 +107,10 @@ nativeBuildInputs = [ pkgs.unzip ]; + unpackPhase = '' + mkdir -p $out + unzip $src "madara-shortcodes/*" -d $out + ''; installPhase = "mkdir -p $out; cp -R * $out/"; }; option-tree-lean = pkgs.stdenv.mkDerivation rec {