nixpkgs/pkgs/misc/hdt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libtool, pkg-config, zlib, serd }:
2020-08-22 22:06:25 +00:00
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=";
})
];
2020-08-22 22:06:25 +00:00
buildInputs = [ zlib serd ];
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ autoreconfHook libtool pkg-config ];
2020-08-22 22:06:25 +00:00
enableParallelBuilding = true;
meta = with lib; {
2020-08-22 22:06:25 +00:00
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";
2020-08-22 22:06:25 +00:00
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = [ maintainers.koslambrou ];
};
}