triplestore/triplestore.nix

25 lines
503 B
Nix
Raw Permalink Normal View History

2023-05-13 16:55:54 +00:00
{ lib
, nixosTests
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "triplestore";
version = "0.1.0";
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
2023-05-14 17:19:35 +00:00
"bonsaidb-0.4.0" = "qdwjwHlUxzyWXx7Crnar7zGhBAaWJkFa+hgvMzOuibc=";
};
};
2023-05-13 16:55:54 +00:00
passthru.tests = { inherit (nixosTests) triplestore; };
meta = {
description = "A triplestore in rust";
homepage = "https://git.asonix.dog/asonix/triplestore";
license = [ lib.licenses.agpl3Plus ];
};
}