X-Git-Url: https://gitweb.ps.run/flakes/blobdiff_plain/57c8dc1d3b56bdfa5071cfea5bf5261e3fac915d..9a1d0c514456752694e317bfef7b500fa7caeee2:/flake.nix diff --git a/flake.nix b/flake.nix index 11a976b..ac4fea0 100644 --- a/flake.nix +++ b/flake.nix @@ -11,6 +11,11 @@ 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: let @@ -46,8 +51,8 @@ type = "app"; program = "${self.packages.${system}.resetmsmice}/bin/resetmsmice"; }; - }); - ) + }) + ) packages apps; }; }