nixpkgs/pkgs/development/web/nodejs/v10.nix
R. RyanTM 27f6600419 nodejs-slim-10_x: 10.7.0 -> 10.9.0 (#45172)
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.
2018-08-21 23:43:27 +02:00

11 lines
264 B
Nix

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