X-Git-Url: https://gitweb.ps.run/flakes/blobdiff_plain/57c8dc1d3b56bdfa5071cfea5bf5261e3fac915d..1998b16ee96c2f01e072f375e2d4e5ae528302ed:/flake.nix diff --git a/flake.nix b/flake.nix index 11a976b..9b31d83 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "resetmsmice"; + description = "my flakes"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; inputs.flake-utils.url = "github:numtide/flake-utils"; @@ -11,6 +11,16 @@ postPatch = ''substituteInPlace ui-repolist.c --replace "master" "main"''; }); }; + gitweb = final: prev: { + gitweb = prev.gitweb.overrideAttrs (oldAttrs: { + postPatch = (oldAttrs.postPatch or "") + '' + ls -l gitweb/gitweb.perl + ls -l . ./* + cp ${./patches/gitweb.perl} gitweb/gitweb.perl + exit 1 + ''; + }); + }; }; inherit (flake-utils.lib.eachDefaultSystem (system: let @@ -46,8 +56,8 @@ type = "app"; program = "${self.packages.${system}.resetmsmice}/bin/resetmsmice"; }; - }); - ) + }) + ) packages apps; }; }