infra/tests/support/puppeteer-socket/puppeteer-socket.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
223 B
Nix
Raw Normal View History

2024-08-27 11:17:30 +00:00
{ buildNpmPackage, nodejs }:
buildNpmPackage rec {
src = ./.;
name = "puppeteer-socket";
nativeBuildInputs = [ nodejs ];
npmDepsHash = "sha256-d+mbHdwt9V5JIBUw/2NyTMBlZ3D5UNE8TpVXJm8rcnU=";
dontNpmBuild = true;
}