77f0d62a2c
This appears to work pretty nicely! Change-Id: Icf52f58225ee2837b30ba6187ae3ba3c539de9df Reviewed-on: https://cl.tvl.fyi/c/depot/+/3810 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
14 lines
281 B
Nix
14 lines
281 B
Nix
args@{
|
|
depot ? import ../../../.. {}
|
|
, pkgs ? depot.third_party.nixpkgs
|
|
, ...
|
|
}:
|
|
|
|
depot.third_party.naersk.buildPackage {
|
|
name = "xanthous-server";
|
|
version = "0.0.1";
|
|
src = depot.third_party.gitignoreSource ./.;
|
|
passthru = {
|
|
docker = import ./docker.nix args;
|
|
};
|
|
}
|