We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d61364 commit 9cfa568Copy full SHA for 9cfa568
nix/automation/devshells.nix
@@ -10,19 +10,23 @@
10
11
catalystCore = {...}: {
12
name = nixpkgs.lib.mkForce "Catalyst Core";
13
- env = mkEnv {
14
- PROTOC = "${nixpkgs.protobuf}/bin/protoc";
15
- PROTOC_INCLUDE = "${nixpkgs.protobuf}/include";
16
- };
+ env = with nixpkgs;
+ mkEnv {
+ OPENSSL_NO_VENDOR = 1;
+ OPENSSL_DIR = "${l.getDev openssl}";
17
+ OPENSSL_LIB_DIR = "${l.getLib openssl}/lib";
18
+ PROTOC = "${protobuf}/bin/protoc";
19
+ PROTOC_INCLUDE = "${protobuf}/include";
20
+ };
21
nixago = [
22
cell.configs.lefthook
23
cell.configs.prettier
24
cell.configs.treefmt
25
];
26
packages = with nixpkgs; [
27
+ gcc
28
rustToolchain
29
pkg-config
- openssl
30
protobuf
31
uniffi-bindgen
32
postgresql
0 commit comments