2021-11-07 21:46:43 +01:00
|
|
|
args@{
|
|
|
|
depot ? import ../../../.. {}
|
2021-11-07 20:24:43 +01:00
|
|
|
, pkgs ? depot.third_party.nixpkgs
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
depot.third_party.naersk.buildPackage {
|
|
|
|
name = "xanthous-server";
|
|
|
|
version = "0.0.1";
|
|
|
|
src = depot.third_party.gitignoreSource ./.;
|
2021-11-07 21:46:43 +01:00
|
|
|
passthru = {
|
|
|
|
docker = import ./docker.nix args;
|
|
|
|
};
|
2021-11-07 20:24:43 +01:00
|
|
|
}
|