Skip to content

Commit

Permalink
fix nix develop
Browse files Browse the repository at this point in the history
with this fix, on nixos you can build the project by doing:

```shell
$ nix develop # ensure dependencies to build
$ cargo build # succesfully build
```

otherwise there is an error in building rocksdb
  • Loading branch information
RCasatta authored and shesek committed Apr 10, 2024
1 parent 30c43d5 commit e85a9b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@

devShells.default = mkShell {
inputsFrom = [ bin ];
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib"; # for rocksdb
};
}
);
Expand Down

0 comments on commit e85a9b3

Please sign in to comment.