##// END OF EJS Templates
svn: fixed case of wrong extracted repository name for SSH backend. In cases...
svn: fixed case of wrong extracted repository name for SSH backend. In cases where we commited to a nested subdirs SVN reported the access path with the subdir paths in it. We couldn't then match that extended name into proper rhodecode repository for ACL checks. - Current implementation gives an slight overhead as we have to lookup all repositories - fixes #5606

File last commit:

r3157:ea43f174 default
r4281:5da17e74 default
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;
node: bumped to nodejs8, and updated packages.
r3157 }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_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;
}