Spaces:
Build error
Build error
Update .nix/env.nix
Browse files- .nix/env.nix +10 -0
.nix/env.nix
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{ pkgs ? import <nixpkgs> {} }:
|
| 2 |
+
pkgs.mkShell {
|
| 3 |
+
buildInputs = with pkgs; [
|
| 4 |
+
nodejs_20
|
| 5 |
+
python3
|
| 6 |
+
ffmpeg
|
| 7 |
+
chromium
|
| 8 |
+
playwright
|
| 9 |
+
];
|
| 10 |
+
}
|