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 ./.;
|
2022-05-26 14:44:11 +02:00
|
|
|
|
|
|
|
# Workaround for a potential Nix bug related to restricted eval.
|
|
|
|
# See https://github.com/nix-community/naersk/issues/169
|
|
|
|
root = depot.nix.sparseTree ./. [
|
|
|
|
./Cargo.toml
|
|
|
|
./Cargo.lock
|
|
|
|
];
|
|
|
|
|
2021-11-07 21:46:43 +01:00
|
|
|
passthru = {
|
|
|
|
docker = import ./docker.nix args;
|
|
|
|
};
|
2021-11-07 20:24:43 +01:00
|
|
|
}
|