aboutsummaryrefslogtreecommitdiff
path: root/overlays
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-09 19:20:56 +0200
commitce7436ddf74c8720240135ac618f8f80c620c4b5 (patch)
tree51e9252cc537a3ea267f59568b994318ad840378 /overlays
parentb639cc33725fed62988b616909843bea7f7aebe3 (diff)
downloadNix-ce7436ddf74c8720240135ac618f8f80c620c4b5.tar.gz
Nix-ce7436ddf74c8720240135ac618f8f80c620c4b5.tar.zst
Nix-ce7436ddf74c8720240135ac618f8f80c620c4b5.zip
Fix gitweb build
Diffstat (limited to 'overlays')
-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 2b9c0f6..27a1152 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 });