easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libuninameslist / package.nix
bloba1df422c7183c16638452aad4e1dc20e41102159
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libuninameslist";
10   version = "20240910";
12   src = fetchFromGitHub {
13     owner = "fontforge";
14     repo = "libuninameslist";
15     rev = version;
16     hash = "sha256-Pi30c3To57AzY59i39JVG2IUkGnq7CEAQkqJ1f5AZhw=";
17   };
19   nativeBuildInputs = [
20     autoreconfHook
21   ];
23   meta = with lib; {
24     homepage = "https://github.com/fontforge/libuninameslist/";
25     changelog = "https://github.com/fontforge/libuninameslist/blob/${version}/ChangeLog";
26     description = "Library of Unicode names and annotation data";
27     license = licenses.bsd3;
28     maintainers = with maintainers; [ erictapen ];
29     platforms = platforms.all;
30   };