##// END OF EJS Templates
caches: use repo.lru based Dict cache. This LRUDict uses Timing Algo to not have to use locking...
caches: use repo.lru based Dict cache. This LRUDict uses Timing Algo to not have to use locking for consistency.

File last commit:

r472:c4583ce6 default
r497:23957c07 default
Show More
release.nix
16 lines | 214 B | text/x-nix | NixLexer
nix: updated to 18.03 packages....
r472 # This file defines how to "build" for packaging.
initial commit
r0 { pkgs ? import <nixpkgs> {}
nix: Propagate doCheck argument through nix files.
r34 , doCheck ? true
initial commit
r0 }:
let
vcsserver = import ./default.nix {
inherit
nix: Propagate doCheck argument through nix files.
r34 doCheck
initial commit
r0 pkgs;
};
in {
build = vcsserver;
}