about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/hdt/default.nix
blob: e7c46d78588dd6e0748c9c7ef679d4665ae14b0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libtool, pkg-config, zlib, serd }:

stdenv.mkDerivation rec {
  pname = "hdt";
  version = "1.3.3";

  src = fetchFromGitHub {
    owner = "rdfhdt";
    repo = "hdt-cpp";
    rev = "v${version}";
    sha256 = "1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z";
  };

  patches = [
    # Pull fix for gcc-13 compatibility pending upstream inclusion:
    #   https://github.com/rdfhdt/hdt-cpp/pull/276
    (fetchpatch {
      name = "gcc-13.patch";
      url = "https://github.com/rdfhdt/hdt-cpp/commit/1b775835c6661c67cb18f5d6f65638ba7d4ecf3c.patch";
      hash = "sha256-2ppcA+Ztw5G/buW2cwCNbuGeUuvgvSruW3OarWNCIHI=";
    })
  ];

  buildInputs = [ zlib serd ];

  nativeBuildInputs = [ autoreconfHook libtool pkg-config ];

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "http://www.rdfhdt.org/";
    description = "Header Dictionary Triples (HDT) is a compression format for RDF data that can also be queried for Triple Patterns";
    license = licenses.lgpl21;
    platforms = platforms.linux;
    maintainers = [ maintainers.koslambrou ];
  };
}