Files

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

32 lines
722 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "libuninameslist";
version = "20250909";
src = fetchFromGitHub {
owner = "fontforge";
repo = "libuninameslist";
rev = version;
hash = "sha256-jLl9UY24wIBkMxr/zq/yXRcKgwlHFG8zmoyo3YKqq9A=";
};
nativeBuildInputs = [
autoreconfHook
];
meta = {
homepage = "https://github.com/fontforge/libuninameslist/";
changelog = "https://github.com/fontforge/libuninameslist/blob/${version}/ChangeLog";
description = "Library of Unicode names and annotation data";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ erictapen ];
platforms = lib.platforms.all;
};
}