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.
This commit is contained in:
parent
2d411d7160
commit
4fa3cef8c3
1 changed files with 14 additions and 0 deletions
14
shell.nix
Normal file
14
shell.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
pkgs.mkShell {
|
||||
name = "Videocutting";
|
||||
buildInputs = [
|
||||
pkgs.ffmpeg
|
||||
pkgs.php82
|
||||
pkgs.php82Packages.composer
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export PATH="$(pwd)/:$PATH"
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue