-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
29 lines (28 loc) · 725 Bytes
/
Copy pathshell.nix
File metadata and controls
29 lines (28 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#with (import <nixpkgs> {});
with (import (builtins.fetchTarball {
name = "nixos-25.05";
url = "https://github.com/nixos/nixpkgs/archive/ce01daebf8489ba97bd1609d185ea276efdeb121.tar.gz";
sha256 = "10cqhkqkifcgyibj9nwxrnq424crfl40kwr3daky83m2fisb4f6p";
}) {});
mkShell {
buildInputs = [
pkgs.autoconf
pkgs.automake
pkgs.bison
pkgs.bun
pkgs.flex
pkgs.gcc
pkgs.git
pkgs.gnumake
pkgs.gnutar
pkgs.libtool
pkgs.nodejs
pkgs.pkg-config
pkgs.python3
pkgs.rustup
pkgs.playwright-driver.browsers
];
PLAYWRIGHT_BROWSERS_PATH = "${pkgs.playwright-driver.browsers}";
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1";
PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS = "true";
}