fix(nix): add openssl build inputs for webauthn-rs
webauthn-rs-core unconditionally depends on openssl for X.509 and signature verification. Add pkg-config and openssl to the nix build so the package builds in the sandbox.
This commit is contained in:
parent
149921dc31
commit
de3e1d4bcb
1 changed files with 3 additions and 0 deletions
|
|
@ -50,6 +50,9 @@
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
cargoLock.lockFile = ./Cargo.lock;
|
cargoLock.lockFile = ./Cargo.lock;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||||
|
buildInputs = [ pkgs.openssl ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Log your favourite roasters, roasts, brews and cafes!";
|
description = "Log your favourite roasters, roasts, brews and cafes!";
|
||||||
homepage = "https://github.com/jnsgruk/brewlog";
|
homepage = "https://github.com/jnsgruk/brewlog";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue