nixpkgs/pkgs/by-name/hd/hdt/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

38 lines
1.1 KiB
Nix

{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libtool, pkg-config, zlib, serd }:
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=";
})
];
buildInputs = [ zlib serd ];
nativeBuildInputs = [ autoreconfHook libtool pkg-config ];
enableParallelBuilding = true;
meta = with 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 ];
};
}