infrastructure/machines/nixos/compute01/satosa/package/default.nix
Tom Hubrecht ecbad0a638
chore: Abstract machines and modules
This adds subdirectories for the different types of systems, for the
modules and the machines
2024-12-08 13:39:10 +01:00

17 lines
470 B
Nix

{ pkgs }:
let
callPackage = pkgs.lib.callPackageWith (pkgs // self);
self = {
satosa = callPackage ./satosa.nix { };
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