nixpkgs/pkgs/development/web/nodejs/v11.nix
R. RyanTM 0aa97a84ed nodejs-slim-11_x: 11.13.0 -> 11.14.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nodejs-slim/versions
2019-04-15 07:55:53 -07:00

11 lines
265 B
Nix

{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
version = "11.14.0";
sha256 = "1rvdyvlvh8ddm9y2razshly5kb87kw0js287i0a5dzb5ay41vxlx";
}