Proof-of-concept: takes a random screencap, doesn't post it yet

This commit is contained in:
xenofem 2023-06-30 13:26:11 -04:00
commit 6873e14f37
9 changed files with 2184 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "Screencap bot for Cohost";
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs {
system = "x86_64-linux";
};
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [ ffmpeg openssl ];
nativeBuildInputs = with pkgs; [ rustc cargo pkgconfig clang ];
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
};
};
}