nixpkgs/pkgs/development/compilers/dart/package-source-builders/default.nix
Maciej Krüger 4847eb4d4b
fluffychat: fix sqlite3 library missing
There were errors about libsqlite3.so missing, which I fixed by adding it to runtime dependencies
2024-04-23 14:41:58 +02:00

12 lines
371 B
Nix

{ callPackage }:
{
flutter_secure_storage_linux = callPackage ./flutter-secure-storage-linux { };
handy_window = callPackage ./handy-window { };
matrix = callPackage ./matrix { };
media_kit_libs_linux = callPackage ./media_kit_libs_linux { };
olm = callPackage ./olm { };
sqlite3 = callPackage ./sqlite3 { };
system_tray = callPackage ./system-tray { };
}