mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
41 lines
955 B
Nix
41 lines
955 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, IOKit
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "oxigraph";
|
|
version = "0.3.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gV7Yo14oGFzuO1b/JGXeuqn4k+9aNTwngEJHoD9+NMI=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoHash = "sha256-bXf7PZm2l1hwnFVbfEJWLyRaVY3cZFaDSe8b77JtyaU=";
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ IOKit Security ];
|
|
|
|
cargoBuildFlags = [ "--package" "oxigraph_server" ];
|
|
|
|
# requires packaging of the associated python modules
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/oxigraph/oxigraph";
|
|
description = "SPARQL graph database";
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];
|
|
maintainers = with maintainers; [ astro ];
|
|
license = with licenses; [ asl20 mit ];
|
|
};
|
|
}
|