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.

12 lines
228 B
Nix
Raw Normal View History

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