2022-10-15 22:02:13 +02:00
|
|
|
{
|
2023-04-05 01:56:51 +02:00
|
|
|
inputs = {
|
2023-06-18 02:02:10 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
2023-04-05 01:56:51 +02:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2024-01-18 22:05:55 +01:00
|
|
|
nix-filter.url = "github:numtide/nix-filter";
|
2023-04-05 01:56:51 +02:00
|
|
|
|
|
|
|
fenix = {
|
|
|
|
url = "github:nix-community/fenix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-04-05 02:30:30 +02:00
|
|
|
crane = {
|
|
|
|
url = "github:ipetkov/crane";
|
2023-04-05 01:56:51 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-27 22:10:21 +01:00
|
|
|
};
|
2023-04-05 01:56:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, nixpkgs
|
|
|
|
, flake-utils
|
2024-01-18 22:05:55 +01:00
|
|
|
, nix-filter
|
2023-04-05 01:56:51 +02:00
|
|
|
|
|
|
|
, fenix
|
2023-04-05 02:30:30 +02:00
|
|
|
, crane
|
2023-04-05 01:56:51 +02:00
|
|
|
}: flake-utils.lib.eachDefaultSystem (system:
|
|
|
|
let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
|
2023-07-16 22:39:13 +02:00
|
|
|
# Use mold on Linux
|
|
|
|
stdenv = if pkgs.stdenv.isLinux then
|
2023-04-05 04:11:34 +02:00
|
|
|
pkgs.stdenvAdapters.useMoldLinker pkgs.stdenv
|
|
|
|
else
|
|
|
|
pkgs.stdenv;
|
|
|
|
|
2023-04-05 01:56:51 +02:00
|
|
|
# Nix-accessible `Cargo.toml`
|
|
|
|
cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml);
|
|
|
|
|
|
|
|
# The Rust toolchain to use
|
|
|
|
toolchain = fenix.packages.${system}.toolchainOf {
|
|
|
|
# Use the Rust version defined in `Cargo.toml`
|
|
|
|
channel = cargoToml.package.rust-version;
|
|
|
|
|
|
|
|
# THE rust-version HASH
|
2023-06-18 02:04:11 +02:00
|
|
|
sha256 = "sha256-gdYqng0y9iHYzYPAdkC/ka3DRny3La/S5G8ASj0Ayyc=";
|
2023-04-05 01:56:51 +02:00
|
|
|
};
|
|
|
|
|
2023-12-24 06:12:42 +01:00
|
|
|
mkToolchain = fenix.packages.${system}.combine;
|
|
|
|
|
|
|
|
buildToolchain = mkToolchain (with toolchain; [
|
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
]);
|
|
|
|
|
|
|
|
devToolchain = mkToolchain (with toolchain; [
|
|
|
|
cargo
|
|
|
|
clippy
|
|
|
|
rust-src
|
|
|
|
rustc
|
|
|
|
|
|
|
|
# Always use nightly rustfmt because most of its options are unstable
|
|
|
|
fenix.packages.${system}.latest.rustfmt
|
|
|
|
]);
|
|
|
|
|
|
|
|
builder =
|
|
|
|
((crane.mkLib pkgs).overrideToolchain buildToolchain).buildPackage;
|
2023-07-16 22:38:33 +02:00
|
|
|
|
2023-04-05 02:52:15 +02:00
|
|
|
nativeBuildInputs = (with pkgs.rustPlatform; [
|
|
|
|
bindgenHook
|
|
|
|
]);
|
|
|
|
|
2023-12-24 06:12:42 +01:00
|
|
|
env = {
|
|
|
|
ROCKSDB_INCLUDE_DIR = "${pkgs.rocksdb}/include";
|
|
|
|
ROCKSDB_LIB_DIR = "${pkgs.rocksdb}/lib";
|
|
|
|
};
|
2023-04-05 01:56:51 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
packages.default = builder {
|
2024-01-18 22:05:55 +01:00
|
|
|
src = nix-filter {
|
|
|
|
root = ./.;
|
|
|
|
include = [
|
|
|
|
"src"
|
|
|
|
"Cargo.toml"
|
|
|
|
"Cargo.lock"
|
|
|
|
];
|
|
|
|
};
|
2023-04-05 01:56:51 +02:00
|
|
|
|
2023-12-24 06:12:42 +01:00
|
|
|
# This is redundant with CI
|
|
|
|
doCheck = false;
|
|
|
|
|
2023-04-05 04:15:09 +02:00
|
|
|
inherit
|
2023-12-24 06:12:42 +01:00
|
|
|
env
|
2023-07-16 22:38:33 +02:00
|
|
|
nativeBuildInputs
|
2023-12-24 06:12:42 +01:00
|
|
|
stdenv;
|
|
|
|
|
|
|
|
meta.mainProgram = cargoToml.package.name;
|
2023-04-05 01:56:51 +02:00
|
|
|
};
|
|
|
|
|
2023-04-05 04:11:34 +02:00
|
|
|
devShells.default = (pkgs.mkShell.override { inherit stdenv; }) {
|
2023-12-24 06:12:42 +01:00
|
|
|
env = env // {
|
|
|
|
# Rust Analyzer needs to be able to find the path to default crate
|
|
|
|
# sources, and it can read this environment variable to do so. The
|
|
|
|
# `rust-src` component is required in order for this to work.
|
|
|
|
RUST_SRC_PATH = "${devToolchain}/lib/rustlib/src/rust/library";
|
|
|
|
};
|
2023-07-16 22:38:33 +02:00
|
|
|
|
2023-04-05 01:56:51 +02:00
|
|
|
# Development tools
|
2023-12-24 06:12:42 +01:00
|
|
|
nativeBuildInputs = nativeBuildInputs ++ [
|
|
|
|
devToolchain
|
|
|
|
] ++ (with pkgs; [
|
2023-12-21 00:29:09 +01:00
|
|
|
engage
|
2023-04-05 01:56:51 +02:00
|
|
|
]);
|
|
|
|
};
|
|
|
|
});
|
2022-10-15 22:02:13 +02:00
|
|
|
}
|