X-Git-Url: https://gitweb.ps.run/flakes/blobdiff_plain/9e25130078296077bf9864978b91bda7dfcea7bc..0f31b09761b4ccd885ac0f528967f6a9dd78ec4a:/flake.nix?ds=sidebyside diff --git a/flake.nix b/flake.nix index ac4fea0..583690f 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"; @@ -13,7 +13,15 @@ }; gitweb = final: prev: { gitweb = prev.gitweb.overrideAttrs (oldAttrs: { - patches = [ ./patches/gitweb.patch ]; + postPatch = (oldAttrs.postPatch or "") + '' + ls -l gitweb/gitweb.perl + ls -l . ./* + cp ${./patches/gitweb.perl} gitweb/gitweb.perl + exit 1 + ''; + postInstall = (oldAttrs.postInstall or "") + '' + echo hallo + ''; }); }; };