chatdesk-ui/postgres_15.8.1.044/nix/postgresql/default.nix

21 lines
534 B
Nix

self:
let
versions = {
postgresql_15 = ./15.nix;
postgresql_16 = ./16.nix;
postgresql_orioledb-16 = ./orioledb-16.nix;
postgresql_orioledb-17 = ./orioledb-17.nix;
};
mkAttributes = jitSupport:
self.lib.mapAttrs' (version: path:
let
attrName = if jitSupport then "${version}_jit" else version;
in
self.lib.nameValuePair attrName (import path {
inherit jitSupport self;
})
) versions;
in
# variations without and with JIT
(mkAttributes false) // (mkAttributes true)