notbot 0.6.12

Matrix chatbot, primarily used around the Warsaw Hackerspace channels and spaces
Documentation
{
  description = "Notbot";
  inputs = {
    nixpkgs.url = "github:arachnist/nixpkgs/ar-patchset-unstable";
  };
  outputs =
    { nixpkgs, ... }:
    let
      supportedSystems = [ "x86_64-linux" ];
      forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
      pkgsFor = nixpkgs.legacyPackages;
    in
    {
      packages = forAllSystems (system: {
        default = pkgsFor.${system}.callPackage ./default.nix { };
      });
      devShells = forAllSystems (system: {
        default = pkgsFor.${system}.callPackage ./shell.nix { };
      });
    };
}