mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
hdt: init at 1.3.3
This commit is contained in:
parent
54acf58040
commit
016dad9deb
27
pkgs/misc/hdt/default.nix
Normal file
27
pkgs/misc/hdt/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -12659,6 +12659,8 @@ in
|
|||||||
|
|
||||||
haxor-news = callPackage ../applications/misc/haxor-news { };
|
haxor-news = callPackage ../applications/misc/haxor-news { };
|
||||||
|
|
||||||
|
hdt = callPackage ../misc/hdt {};
|
||||||
|
|
||||||
herqq = libsForQt5.callPackage ../development/libraries/herqq { };
|
herqq = libsForQt5.callPackage ../development/libraries/herqq { };
|
||||||
|
|
||||||
heyefi = haskellPackages.heyefi;
|
heyefi = haskellPackages.heyefi;
|
||||||
|
Loading…
Reference in New Issue
Block a user