Proof-of-concept: takes a random screencap, doesn't post it yet
This commit is contained in:
commit
6873e14f37
9 changed files with 2184 additions and 0 deletions
15
flake.nix
Normal file
15
flake.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue