From: Ismaƫl Bouya Date: Thu, 9 Apr 2020 17:20:56 +0000 (+0200) Subject: Fix gitweb build X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=commitdiff_plain;h=ce7436ddf74c8720240135ac618f8f80c620c4b5 Fix gitweb build --- diff --git a/overlays/gitweb/default.nix b/overlays/gitweb/default.nix index 2b9c0f6..27a1152 100644 --- a/overlays/gitweb/default.nix +++ b/overlays/gitweb/default.nix @@ -1,6 +1,6 @@ self: super: { gitweb = super.gitweb.overrideAttrs(old: { - postInstall = old.postInstall or "" + '' + postBuild = old.postBuild or "" + '' cp -r ${./theme} $out/gitweb-theme; ''; });