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/pkgs/webapps/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 flakes/mypackages/pkgs/webapps/default.nix (limited to 'flakes/mypackages/pkgs/webapps/default.nix') diff --git a/flakes/mypackages/pkgs/webapps/default.nix b/flakes/mypackages/pkgs/webapps/default.nix new file mode 100644 index 0000000..18a724d --- /dev/null +++ b/flakes/mypackages/pkgs/webapps/default.nix @@ -0,0 +1,24 @@ +{ callPackage, mylibs, composerEnv, sources }: +rec { + adminer = callPackage ./adminer {}; + apache-theme = import ./apache-theme; + awl = callPackage ./awl {}; + davical = callPackage ./davical {}; + dokuwiki = callPackage ./dokuwiki {}; + infcloud = callPackage ./infcloud {}; + mantisbt_2 = callPackage ./mantisbt_2 {}; + nextcloud_25 = callPackage ./nextcloud { nextcloudVersion = 25; }; + nextcloud_26 = callPackage ./nextcloud { nextcloudVersion = 26; }; + nextcloud_27 = callPackage ./nextcloud { nextcloudVersion = 27; }; + nextcloud_25-all = nextcloud_25.withApps (a: builtins.attrValues nextcloud_25.allSupportedApps); + nextcloud_26-all = nextcloud_26.withApps (a: builtins.attrValues nextcloud_26.allSupportedApps); + nextcloud_27-all = nextcloud_27.withApps (a: builtins.attrValues nextcloud_27.allSupportedApps); + phpbb = callPackage ./phpbb {}; + phpldapadmin = callPackage ./phpldapadmin {}; + rompr = callPackage ./rompr {}; + roundcubemail = callPackage ./roundcubemail {}; + spip = callPackage ./spip {}; + ttrss = callPackage ./ttrss { inherit sources; }; + wallabag = callPackage ./wallabag { inherit composerEnv; }; + yourls = callPackage ./yourls {}; +} -- cgit v1.2.3