about summary refs log tree commit diff
path: root/users/grfn/xanthous/server/default.nix
blob: 95c2b15ec95fe9fae6231c07759686f11c5c4963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
  };
}