videocutting/shell.nix
Daniel Siepmann 4fa3cef8c3
Add shell.nix
That way I can use nix-shell to execute the wrapper.
nix will download all runtime dependencies and adjust path within nix
shell.
2023-02-11 17:48:22 +01:00

14 lines
218 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
name = "Videocutting";
buildInputs = [
pkgs.ffmpeg
pkgs.php82
pkgs.php82Packages.composer
];
shellHook = ''
export PATH="$(pwd)/:$PATH"
'';
}