Add simplex_history_actor shell

This commit is contained in:
Emery Hemingway 2023-05-11 22:18:35 +01:00
parent d84de12836
commit 9d4db1aab7
1 changed files with 4 additions and 1 deletions

View File

@ -41,7 +41,10 @@
in mkShell { packages = [ libnl' pkg-config ]; };
libnotify_actor = mkShell { packages = [ libnotify pkg-config ]; };
nix_actor = mkShell { packages = [ boost nix pkg-config ]; };
movement = mkShell { packages = [ emscripten gcc-arm-embedded python3Minimal ]; };
movement = mkShell {
packages = [ emscripten gcc-arm-embedded python3Minimal ];
};
simplex_history_actor = mkShell { packages = [ pkg-config sqlcipher ]; };
zua = mkShell { packages = [ fontconfig pkg-config SDL2 ]; };
}) nixpkgs.legacyPackages;