##// END OF EJS Templates
core: added wrapped python into binaries so we can execute python hooks that have proper...
core: added wrapped python into binaries so we can execute python hooks that have proper libraries of vcsserver inside.

File last commit:

r34:640a4096 default
r326:15ece812 default
Show More
release.nix
15 lines | 164 B | text/x-nix | NixLexer
{ pkgs ? import <nixpkgs> {}
, doCheck ? true
}:
let
vcsserver = import ./default.nix {
inherit
doCheck
pkgs;
};
in {
build = vcsserver;
}