feat(alcoholic_jwt): Add Nix build for crate

... mostly to get CI.

Note that this adds the Cargo.lock file because we require pinning,
but it is generally not required for Rust libraries.

Change-Id: Iedbd3758e8df8a7f60fe67b6b06c8e41aba8f345
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3362
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2021-08-15 17:13:12 +03:00 committed by tazjin
parent 038cf39998
commit db5ba28735
2 changed files with 201 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ depot, pkgs, ... }:
depot.third_party.naersk.buildPackage {
src = ./.;
buildInputs = with pkgs; [
openssl
pkgconfig
];
}