mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
58 lines
1.7 KiB
Nix
58 lines
1.7 KiB
Nix
{ inputs, ... }:
|
|
{
|
|
perSystem =
|
|
{
|
|
self',
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
packages =
|
|
let
|
|
crane = self'.packages.crane;
|
|
src =
|
|
let
|
|
# see https://crane.dev/API.html#cranelibfiltercargosources
|
|
# we need to keep the `web` directory which would be filtered out by the regular source filtering function
|
|
# https://crane.dev/API.html#cranelibcleancargosource
|
|
isWebTemplate = path: _type: builtins.match ".*(src/(web|service)|docs).*" path != null;
|
|
isRust = crane.filterCargoSources;
|
|
isNix = path: _type: builtins.match ".+/nix.*" path != null;
|
|
webOrRustNotNix = p: t: !(isNix p t) && (isWebTemplate p t || isRust p t);
|
|
in
|
|
lib.cleanSourceWith {
|
|
src = inputs.self;
|
|
filter = webOrRustNotNix;
|
|
name = "source";
|
|
};
|
|
|
|
common = {
|
|
inherit src;
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
buildInputs = [ pkgs.liburing ];
|
|
env.LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
|
|
};
|
|
|
|
cargoArtifacts = crane.buildDepsOnly common;
|
|
|
|
rocksdb = pkgs.callPackage ./rocksdb.nix { };
|
|
|
|
continuwuity = crane.buildPackage (
|
|
common
|
|
// {
|
|
inherit cargoArtifacts;
|
|
env = {
|
|
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
|
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
|
};
|
|
}
|
|
);
|
|
in
|
|
{
|
|
default = continuwuity;
|
|
inherit rocksdb;
|
|
};
|
|
};
|
|
}
|