You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
Nix
16 lines
355 B
Nix
1 year ago
|
# 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
|
||
|
python3
|
||
|
];
|
||
|
}
|