From 36701a8c93a848de70e8c22dac2c773d45e605c2 Mon Sep 17 00:00:00 2001 From: Chris Josten Date: Sat, 12 Dec 2020 19:51:12 +0100 Subject: [PATCH] Include static content --- kerstezel.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kerstezel.nix b/kerstezel.nix index 46a28f3..23a1a82 100644 --- a/kerstezel.nix +++ b/kerstezel.nix @@ -7,4 +7,8 @@ mkDubDerivation { src = ./.; version = "1.0.0"; buildInputs = [ pkgs.openssl ]; + + postInstall = '' + cp -r statisch $out + ''; }