##// END OF EJS Templates
svn: use streaming uploads/downloads of files....
svn: use streaming uploads/downloads of files. - before we buffered whole content before uploading/download - this could lead to OOM errors on big files - now instead we stream when PUT/GET are sent from SVN resulting in faster more efficient data transfer

File last commit:

r2916:3d7e8e56 default
r3022:211018a9 stable
Show More
node-default.nix
16 lines | 476 B | text/x-nix | NixLexer
/ pkgs / node-default.nix
nix: update nix packages
r2916 # This file has been generated by node2nix 1.6.0. Do not edit!
dependencies: Generated node-packages based on node2nix
r707
{pkgs ? import <nixpkgs> {
inherit system;
nix: updated to 18.03 nix packages...
r2824 }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-6_x"}:
dependencies: Generated node-packages based on node2nix
r707
let
nodeEnv = import ./node-env.nix {
nix: updated to 18.03 nix packages...
r2824 inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
inherit nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
dependencies: Generated node-packages based on node2nix
r707 };
in
import ./node-packages.nix {
inherit (pkgs) fetchurl fetchgit;
inherit nodeEnv;
}