about summary refs log tree commit diff
path: root/users/aspen/xanthous/server/default.nix
blob: 572230a56c5eab054d0d7098ee68b51ca750247d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 {
    root = ./.;
    paths = [
      ./Cargo.toml
      ./Cargo.lock
    ];
  };

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