From 1a64deeb894dc95e2645a75771732c6cc53a79ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 4 Oct 2023 01:35:06 +0200 Subject: Squash changes containing private information There were a lot of changes since the previous commit, but a lot of them contained personnal information about users. All thos changes got stashed into a single commit (history is kept in a different place) and private information was moved in a separate private repository --- flakes/mypackages/overlays/default.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 flakes/mypackages/overlays/default.nix (limited to 'flakes/mypackages/overlays/default.nix') diff --git a/flakes/mypackages/overlays/default.nix b/flakes/mypackages/overlays/default.nix new file mode 100644 index 0000000..e91d6a1 --- /dev/null +++ b/flakes/mypackages/overlays/default.nix @@ -0,0 +1,25 @@ +{ sources, mylibs }: +{ + mylibs = self: super: { inherit mylibs; }; + mypkgs = final: prev: import ../pkgs/default.nix { pkgs = final; inherit mylibs sources; }; + + bitlbee = import ./bitlbee; + bitlbee-discord = import ./bitlbee-discord; + gitweb = import ./gitweb; + gitolite = import ./gitolite; + goaccess = import ./goaccess; + kanboard = import ./kanboard; + mysql = import ./databases/mysql; + postfix = import ./postfix; + postgresql = import ./databases/postgresql; + ympd = import ./ympd; + morph = import ./morph; + cron = self: super: { + cron = super.cron.overrideAttrs(old: { + # Allow "+" char in MAILTO + patchPhase = '' + sed -i -e "/static const char safe_delim/s/@/@+/" do_command.c + ''; + }); + }; +} -- cgit v1.2.3