infrastructure/machines/compute01/satosa/package/default.nix

18 lines
470 B
Nix
Raw Normal View History

2023-12-12 14:45:01 +01:00
{ pkgs }:
2023-09-26 20:56:55 +02:00
let
2023-12-12 14:45:01 +01:00
callPackage = pkgs.lib.callPackageWith (pkgs // self);
2023-09-26 20:56:55 +02:00
self = {
satosa = callPackage ./satosa.nix { };
2023-09-26 20:56:55 +02:00
cookies-samesite-compat = callPackage ./cookies-samesite-compat.nix { };
pyop = callPackage ./pyop.nix { };
oic = callPackage ./oic.nix { };
pydantic-settings = callPackage ./pydantic-settings.nix { };
pydantic = callPackage ./pydantic.nix { };
pydantic-core = callPackage ./pydantic-core.nix { };
};
in
self.satosa