feat(crimp): 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: I565c7c8e899694accf3efd825ff46225f3c47d1a Reviewed-on: https://cl.tvl.fyi/c/depot/+/3363 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
This commit is contained in:
parent
db5ba28735
commit
509ea7f3cb
2 changed files with 187 additions and 0 deletions
9
net/crimp/default.nix
Normal file
9
net/crimp/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ depot, pkgs, ... }:
|
||||
|
||||
depot.third_party.naersk.buildPackage {
|
||||
src = ./.;
|
||||
buildInputs = with pkgs; [
|
||||
openssl
|
||||
pkgconfig
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue