diff options
Diffstat (limited to 'kittybox.nix')
-rw-r--r-- | kittybox.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kittybox.nix b/kittybox.nix index 397e057..2dd6ee6 100644 --- a/kittybox.nix +++ b/kittybox.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, naersk, lld, mold +{ stdenv, lib, naersk, lld, mold, typescript , openssl, zlib, pkg-config, protobuf , useWebAuthn ? false }: @@ -15,7 +15,7 @@ naersk.buildPackage { "--no-default-features" "--features=\"webauthn\"" ]); buildInputs = lib.optional useWebAuthn openssl; - nativeBuildInputs = lib.optional useWebAuthn pkg-config; + nativeBuildInputs = [ typescript ] ++ (lib.optional useWebAuthn pkg-config); meta = with lib.meta; { maintainers = with lib.maintainers; [ vikanezrimaya ]; |