python3Packages.pywikibot: init at 9.5.0 (#333068)
[NixPkgs.git] / pkgs / servers / oxigraph / default.nix
blob091b2037d235655a68cdf55cfe95296005af92ae
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchFromGitHub
5 , IOKit
6 , Security
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "oxigraph";
11   version = "0.3.22";
13   src = fetchFromGitHub {
14     owner = pname;
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-zwUiUDWdrmLF+Qj9Jy6JGXHaBskRnm+pMKW2GKGGeN8=";
18     fetchSubmodules = true;
19   };
21   cargoHash = "sha256-O9/YvvFOaZ1F7HYO/AplWLz1vw0hysJEvGketk8zb9w=";
23   nativeBuildInputs = [
24     rustPlatform.bindgenHook
25   ];
26   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ IOKit Security ];
28   cargoBuildFlags = [ "--package" "oxigraph_server" ];
30   # requires packaging of the associated python modules
31   doCheck = false;
33   meta = with lib; {
34     homepage = "https://github.com/oxigraph/oxigraph";
35     description = "SPARQL graph database";
36     platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];
37     maintainers = with maintainers; [ astro ];
38     license = with licenses; [ asl20 mit ];
39     mainProgram = "oxigraph_server";
40   };