Skip to content

Commit

Permalink
Merge pull request #96038 from koslambrou/add-hdt-package
Browse files Browse the repository at this point in the history
hdt: init at 1.3.3
  • Loading branch information
peterhoeg committed Aug 24, 2020
2 parents c449e59 + 016dad9 commit 6072bac
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/misc/hdt/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, autoreconfHook, libtool, pkgconfig, zlib, serd }:

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

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

buildInputs = [ zlib serd ];

nativeBuildInputs = [ autoreconfHook libtool pkgconfig ];

enableParallelBuilding = true;

meta = with stdenv.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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12723,6 +12723,8 @@ in

haxor-news = callPackage ../applications/misc/haxor-news { };

hdt = callPackage ../misc/hdt {};

herqq = libsForQt5.callPackage ../development/libraries/herqq { };

heyefi = haskellPackages.heyefi;
Expand Down

0 comments on commit 6072bac

Please sign in to comment.