mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-10 13:02:59 +00:00
21 lines
482 B
Nix
21 lines
482 B
Nix
# 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
|
|
'';
|
|
}
|