Initial Clock Format

This commit is contained in:
Chuck
2025-04-07 16:52:13 -05:00
parent 1262e09bf5
commit 30c3080f15
195 changed files with 1155334 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# This is a nix-shell for use with the nix package manager.
# If you have nix installed, you may simply run `nix-shell`
# in this repo, and have all dependencies ready in the new shell.
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs;
[
graphicsmagick
libwebp
ffmpeg
pkg-config
python311
python311Packages.cython
python311Packages.distutils-extra
];
shellHook = ''
export CYTHON=cython
'';
}