- dependencies: updated setuptools-scm to 2.1.0 - new strucutre - cleanups and optimize of build chain
16 lines
222 B
Nix
16 lines
222 B
Nix
# This file defines how to "build" for packaging.
|
|
|
|
{ pkgs ? import <nixpkgs> {}
|
|
, doCheck ? true
|
|
}:
|
|
|
|
let
|
|
enterprise_ce = import ./default.nix {
|
|
inherit
|
|
doCheck
|
|
pkgs;
|
|
};
|
|
|
|
in {
|
|
build = enterprise_ce;
|
|
}
|