about summary refs log tree commit diff
path: root/pkgs/servers/mail/mailman/default.nix
blob: 5571a5bef7f32fcee9e0ee653082d7136afd830c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ newScope, lib, python3 }:

let
  self = lib.makeExtensible (self: let inherit (self) callPackage; in {
    callPackage = newScope self;

    python3 = callPackage ./python.nix { inherit python3; };

    hyperkitty = callPackage ./hyperkitty.nix { };

    mailman = callPackage ./package.nix { };

    mailman-hyperkitty = callPackage ./mailman-hyperkitty.nix { };

    postorius = callPackage ./postorius.nix { };

    web = callPackage ./web.nix { };

    buildEnvs = { web ? self.web
                , mailman ? self.mailman
                , mailman-hyperkitty ? self.mailman-hyperkitty
                , withHyperkitty ? false
                , withLDAP ? false
                }:
      {
        mailmanEnv = self.python3.withPackages
          (ps: [ mailman ps.psycopg2 ]
            ++ lib.optional withHyperkitty mailman-hyperkitty
            ++ lib.optionals withLDAP [ ps.python-ldap ps.django-auth-ldap ]);
        webEnv = self.python3.withPackages
          (ps: [ web ps.psycopg2 ] ++ lib.optionals withLDAP [ ps.python-ldap ps.django-auth-ldap ]);
      };
  });

in self