build this with the default node instead of pinning one

main
Brian Hicks 2022-05-06 14:18:35 -05:00
parent 2ddad53d40
commit ad03ca2686
Signed by: brian
GPG Key ID: C4F324B9CAAB0D50
1 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,7 @@
# This file has been generated by node2nix 1.9.0. Do not edit!
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
{ pkgs ? import <nixpkgs> { inherit system; }, system ? builtins.currentSystem
, nodejs ? pkgs.nodejs }:
let
nodeEnv = import ./node-env.nix {
@ -10,8 +9,7 @@ let
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
in import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
}