about summary refs log tree commit diff stats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nix/package.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nix/package.nix b/nix/package.nix
index d0efb16..adc5a03 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -14,6 +14,7 @@
   # nativeBuildInputs
   pkg-config,
   sqlite,
+  fd,
 }:
 rustPlatform.buildRustPackage (finalAttrs: {
   pname = "rocie-server";
@@ -38,10 +39,14 @@ rustPlatform.buildRustPackage (finalAttrs: {
 
   nativeBuildInputs = [
     pkg-config
+
+    # Needed for the `mkdb.sh`
     sqlite
+    fd
   ];
 
   buildInputs = [
+    sqlite.dev
   ];
 
   checkInputs = [