python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / hdt / default.nix
blob9e1efd5f836d24f5d7245adc9e2c35256b86f450
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libtool, pkg-config, zlib, serd }:
3 stdenv.mkDerivation rec {
4   pname = "hdt";
5   version = "1.3.3";
7   src = fetchFromGitHub {
8     owner = "rdfhdt";
9     repo = "hdt-cpp";
10     rev = "v${version}";
11     sha256 = "1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z";
12   };
14   buildInputs = [ zlib serd ];
16   nativeBuildInputs = [ autoreconfHook libtool pkg-config ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     homepage = "http://www.rdfhdt.org/";
22     description = "Header Dictionary Triples (HDT) is a compression format for RDF data that can also be queried for Triple Patterns";
23     license = licenses.lgpl21;
24     platforms = platforms.linux;
25     maintainers = [ maintainers.koslambrou ];
26   };