aboutsummaryrefslogtreecommitdiff
path: root/overlays/gitweb/default.nix
blob: 27a11523dea3ca43849aca9c702735454b9e48f7 (plain) (blame)
1
2
3
4
5
6
7
self: super: {
  gitweb = super.gitweb.overrideAttrs(old: {
    postBuild = old.postBuild or "" + ''
      cp -r ${./theme} $out/gitweb-theme;
      '';
  });
}