about summary refs log tree commit diff
path: root/users/grfn/xanthous/server/default.nix
blob: fbb5ccd26920466a46035c0ec120136af3c7f06f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ./.;

  # 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
  ];

  passthru = {
    docker = import ./docker.nix args;
  };
}