Skip to content

Commit

Permalink
Add shell.nix for nix package manager dependencies.
Browse files Browse the repository at this point in the history
For users using it.
  • Loading branch information
hzeller committed Apr 29, 2023
1 parent 3a1c17a commit f4641d4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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
];
}

0 comments on commit f4641d4

Please sign in to comment.