X-Git-Url: https://gitweb.ps.run/flakes/blobdiff_plain/611bb975297182650d63191a2dfb296e5261b6c1..a047da530c53b11a36b103c5d898822e167b93d2:/flake.nix diff --git a/flake.nix b/flake.nix index ae83df3..53cc18d 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,10 @@ cgit = prev.cgit.overrideAttrs (oldAttrs: { postPatch = ''substituteInPlace ui-repolist.c --replace "master" "main"''; }); + gitweb = final: prev: { + gitweb = prev.gitweb.overrideAttrs (oldAttrs: { + patches = [ ./patches/gitweb.patch ]; + }); }; }; inherit (flake-utils.lib.eachDefaultSystem (system: @@ -47,7 +51,7 @@ program = "${self.packages.${system}.resetmsmice}/bin/resetmsmice"; }; }) - ) + ) packages apps; }; }