summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-09 19:20:56 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:04:55 +0200
commit1e9558437b62e99dac4ee14ca54b9bb8409066e8 (patch)
tree3fa4bb17a3b12e6e2390e4104793b46fbfaf6cab
parent5b1c5dbdcce9d4bf63662ecb7acf954a640ffef6 (diff)
downloadNUR-1e9558437b62e99dac4ee14ca54b9bb8409066e8.tar.gz
NUR-1e9558437b62e99dac4ee14ca54b9bb8409066e8.tar.zst
NUR-1e9558437b62e99dac4ee14ca54b9bb8409066e8.zip
Fix gitweb build
-rw-r--r--overlays/gitweb/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/overlays/gitweb/default.nix b/overlays/gitweb/default.nix
index 2b9c0f6b..27a11523 100644
--- a/overlays/gitweb/default.nix
+++ b/overlays/gitweb/default.nix
@@ -1,6 +1,6 @@
1self: super: { 1self: super: {
2 gitweb = super.gitweb.overrideAttrs(old: { 2 gitweb = super.gitweb.overrideAttrs(old: {
3 postInstall = old.postInstall or "" + '' 3 postBuild = old.postBuild or "" + ''
4 cp -r ${./theme} $out/gitweb-theme; 4 cp -r ${./theme} $out/gitweb-theme;
5 ''; 5 '';
6 }); 6 });