567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
lib,
|
|
rustPlatform,
|
|
rustfmt,
|
|
protobuf,
|
|
}:
|
|
let
|
|
src = fetchFromGitHub {
|
|
owner = "indradb";
|
|
repo = "indradb";
|
|
rev = "06134dde5bb53eb1d2aaa52afdaf9ff3bf1aa674";
|
|
sha256 = "sha256-g4Jam7yxMc+piYQzgMvVsNTF+ce1U3thzYl/M9rKG4o=";
|
|
};
|
|
|
|
meta = {
|
|
# Marked broken 2025-11-28 because both indradb-server and indradb-client
|
|
# have failed on Hydra for nearly a year.
|
|
broken = true;
|
|
description = "Graph database written in rust";
|
|
homepage = "https://github.com/indradb/indradb";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
in
|
|
{
|
|
indradb-server = rustPlatform.buildRustPackage {
|
|
pname = "indradb-server";
|
|
version = "unstable-2021-01-05";
|
|
inherit src meta;
|
|
|
|
cargoHash = "sha256-wehQU0EOSkxQatoViqBJwgu4LG7NsbKjVZvKE6SoOFs=";
|
|
|
|
buildAndTestSubdir = "server";
|
|
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
|
|
nativeBuildInputs = [
|
|
rustfmt
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
# test rely on libindradb and it can't be found
|
|
# failure at https://github.com/indradb/indradb/blob/master/server/tests/plugins.rs#L63
|
|
# `let _server = Server::start(&format!("../target/debug/libindradb_plugin_*.{}", LIBRARY_EXTENSION)).unwrap();`
|
|
doCheck = false;
|
|
};
|
|
indradb-client = rustPlatform.buildRustPackage {
|
|
pname = "indradb-client";
|
|
version = "unstable-2021-01-05";
|
|
inherit src meta;
|
|
|
|
cargoHash = "sha256-wehQU0EOSkxQatoViqBJwgu4LG7NsbKjVZvKE6SoOFs=";
|
|
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
|
|
nativeBuildInputs = [
|
|
rustfmt
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildAndTestSubdir = "client";
|
|
};
|
|
}
|