tvl-depot/users/tazjin/tgsa/default.nix
Vincent Ambo 96181f917a chore(tazjin/tgsa): bump all dependencies
Change-Id: Id90cf6b74999e81680c589847a8b2f64eefc37ca
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6875
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
2022-10-06 22:53:04 +00:00

14 lines
211 B
Nix

{ depot, pkgs, ... }:
depot.third_party.naersk.buildPackage {
src = depot.nix.sparseTree ./. [
./Cargo.lock
./Cargo.toml
./src
];
buildInputs = with pkgs; [
pkg-config
openssl
];
}