1{ lib, stdenv
2, fetchFromGitHub
3, autoreconfHook
4}:
5
6stdenv.mkDerivation rec {
7 pname = "libuninameslist";
8 version = "20230916";
9
10 src = fetchFromGitHub {
11 owner = "fontforge";
12 repo = pname;
13 rev = version;
14 sha256 = "sha256-8mLXTvi4KbU4NiCPaJINTeFbnTAabGDg8ufpSHSqy0Y=";
15 };
16
17 nativeBuildInputs = [
18 autoreconfHook
19 ];
20
21 meta = with lib; {
22 homepage = "https://github.com/fontforge/libuninameslist/";
23 description = "A Library of Unicode names and annotation data";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ erictapen ];
26 platforms = platforms.all;
27 };
28}