nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 27 lines 761 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool, pkg-config, zlib, serd }: 2 3stdenv.mkDerivation rec { 4 pname = "hdt"; 5 version = "1.3.3"; 6 7 src = fetchFromGitHub { 8 owner = "rdfhdt"; 9 repo = "hdt-cpp"; 10 rev = "v${version}"; 11 sha256 = "1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z"; 12 }; 13 14 buildInputs = [ zlib serd ]; 15 16 nativeBuildInputs = [ autoreconfHook libtool pkg-config ]; 17 18 enableParallelBuilding = true; 19 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 }; 27}