clan-infra/pkgs/matrix-bot/flake-module.nix
2024-07-03 17:46:20 +02:00

15 lines
286 B
Nix

{ ... }:
{
perSystem =
{ self', pkgs, ... }:
{
devShells.matrix-bot = pkgs.callPackage ./shell.nix { inherit (self'.packages) matrix-bot; };
packages = {
matrix-bot = pkgs.python3.pkgs.callPackage ./default.nix { };
};
checks = { };
};
}