Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ComposableFi/composable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7101db4f913bc30c94b0c558b98f8ed83442224c
Choose a base ref
..
head repository: ComposableFi/composable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8ea8a6e905402be1aa4322bf6eacd4aaff450e5d
Choose a head ref
Showing with 5 additions and 2 deletions.
  1. +5 −2 dev-shells.nix
7 changes: 5 additions & 2 deletions dev-shells.nix
Original file line number Diff line number Diff line change
@@ -11,8 +11,11 @@
buildInputs = base.buildInputs
++ (with pkgs; [ clang nodejs python3 yarn ])
++ (with self'.packages; [ rust-nightly ]);
LD_LIBRARY_PATH = pkgs.lib.strings.makeLibraryPath
(with pkgs; [ stdenv.cc.cc.lib llvmPackages.libclang.lib pkgs.zlib ]);
LD_LIBRARY_PATH = pkgs.lib.strings.makeLibraryPath (with pkgs; [
stdenv.cc.cc.lib
llvmPackages.libclang.lib
pkgs.zlib
]);
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
PROTOC = "${pkgs.protobuf}/bin/protoc";
ROCKSDB_LIB_DIR = "${pkgs.rocksdb}/lib";