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