a0c4b91955
This project depends on Tokio, via actix, and both of those are bad ideas. This wasn't as clear 3 years ago as it is now, but to demonstrate it the project has amassed issues which required at least this minimum of changes to be buildable in 2021 (using a modern rustc). Yes, this adds dozens of new dependencies again (because of a top-level update) but don't worry: They will be gone when I'm done here. Change-Id: I1dde9dc0325da7bdcb6608359fab33e27692dc1d Reviewed-on: https://cl.tvl.fyi/c/depot/+/2857 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
7 lines
155 B
Nix
7 lines
155 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.naersk.buildPackage {
|
|
src = ./.;
|
|
buildInputs = with pkgs; [ openssl postgresql.lib ];
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
|
}
|