Daniel Siepmann
4fa3cef8c3
That way I can use nix-shell to execute the wrapper. nix will download all runtime dependencies and adjust path within nix shell.
14 lines
218 B
Nix
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"
|
|
'';
|
|
}
|