commit c1bcaad6b94f0853ffa1669e604981ea95e2cd7d from: mtmn date: Mon May 11 23:37:28 2026 UTC fix: remove sqlite commit - fceb53d25fd5d6cf9caf200f3799bcb905011200 commit + c1bcaad6b94f0853ffa1669e604981ea95e2cd7d blob - 800ac8229e74b0cbc4e15912f98ef082309f288a blob + 1354da5e1ba896780a4e51343cc2a12bf8f7c366 --- flake.nix +++ flake.nix @@ -34,7 +34,6 @@ baseNativeBuildInputs = with pkgs; [ pkg-config dbus - sqlite openssl ]; @@ -45,14 +44,14 @@ strictDeps = true; nativeBuildInputs = baseNativeBuildInputs; - buildInputs = with pkgs; [sqlite openssl dbus]; + buildInputs = with pkgs; [openssl dbus]; }; hakuna = craneLib.buildPackage (commonArgs // { cargoArtifacts = craneLib.buildDepsOnly commonArgs; postFixup = '' - patchelf --set-rpath ${pkgs.lib.makeLibraryPath (with pkgs; [openssl sqlite dbus])} $out/bin/hakuna + patchelf --set-rpath ${pkgs.lib.makeLibraryPath (with pkgs; [openssl dbus])} $out/bin/hakuna ''; }); in {