##// END OF EJS Templates
nix: updated to 18.03 packages....
nix: updated to 18.03 packages. - new nix structure - adjusted build problems - new generated python-packages.nix - drop setuptools - release.nix update

File last commit:

r472:c4583ce6 default
r472:c4583ce6 default
Show More
release.nix
16 lines | 214 B | text/x-nix | NixLexer
# This file defines how to "build" for packaging.
{ pkgs ? import <nixpkgs> {}
, doCheck ? true
}:
let
vcsserver = import ./default.nix {
inherit
doCheck
pkgs;
};
in {
build = vcsserver;
}