mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-12-28 13:33:47 +03:00
factor out shared things
This commit is contained in:
parent
55149e3336
commit
3be32c4dac
1 changed files with 7 additions and 6 deletions
13
flake.nix
13
flake.nix
|
@ -41,6 +41,11 @@
|
||||||
ROCKSDB_INCLUDE_DIR = "${pkgs.rocksdb_6_23}/include";
|
ROCKSDB_INCLUDE_DIR = "${pkgs.rocksdb_6_23}/include";
|
||||||
ROCKSDB_LIB_DIR = "${pkgs.rocksdb_6_23}/lib";
|
ROCKSDB_LIB_DIR = "${pkgs.rocksdb_6_23}/lib";
|
||||||
|
|
||||||
|
# Shared between the package and the devShell
|
||||||
|
nativeBuildInputs = (with pkgs.rustPlatform; [
|
||||||
|
bindgenHook
|
||||||
|
]);
|
||||||
|
|
||||||
builder =
|
builder =
|
||||||
((crane.mkLib pkgs).overrideToolchain toolchain.toolchain).buildPackage;
|
((crane.mkLib pkgs).overrideToolchain toolchain.toolchain).buildPackage;
|
||||||
in
|
in
|
||||||
|
@ -51,9 +56,7 @@
|
||||||
# Use system RocksDB
|
# Use system RocksDB
|
||||||
inherit ROCKSDB_INCLUDE_DIR ROCKSDB_LIB_DIR;
|
inherit ROCKSDB_INCLUDE_DIR ROCKSDB_LIB_DIR;
|
||||||
|
|
||||||
nativeBuildInputs = (with pkgs.rustPlatform; [
|
inherit nativeBuildInputs;
|
||||||
bindgenHook
|
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
|
@ -65,9 +68,7 @@
|
||||||
inherit ROCKSDB_INCLUDE_DIR ROCKSDB_LIB_DIR;
|
inherit ROCKSDB_INCLUDE_DIR ROCKSDB_LIB_DIR;
|
||||||
|
|
||||||
# Development tools
|
# Development tools
|
||||||
nativeBuildInputs = (with pkgs.rustPlatform; [
|
nativeBuildInputs = nativeBuildInputs ++ (with toolchain; [
|
||||||
bindgenHook
|
|
||||||
]) ++ (with toolchain; [
|
|
||||||
cargo
|
cargo
|
||||||
clippy
|
clippy
|
||||||
rust-src
|
rust-src
|
||||||
|
|
Loading…
Reference in a new issue