1
0
forked from clan/clan-core
clan-core/pkgs/matrix-bot/flake-module.nix
2024-07-02 19:47:21 +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 = { };
};
}