evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / li / libuninameslist / package.nix
blobff438f749fd8aa9af93b8311b3bc669d793b0bde
1 { lib, stdenv
2 , fetchFromGitHub
3 , autoreconfHook
4 }:
6 stdenv.mkDerivation rec {
7   pname = "libuninameslist";
8   version = "20240910";
10   src = fetchFromGitHub {
11     owner = "fontforge";
12     repo = "libuninameslist";
13     rev = version;
14     hash = "sha256-Pi30c3To57AzY59i39JVG2IUkGnq7CEAQkqJ1f5AZhw=";
15   };
17   nativeBuildInputs = [
18     autoreconfHook
19   ];
21   meta = with lib; {
22     homepage = "https://github.com/fontforge/libuninameslist/";
23     changelog = "https://github.com/fontforge/libuninameslist/blob/${version}/ChangeLog";
24     description = "Library of Unicode names and annotation data";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ erictapen ];
27     platforms = platforms.all;
28   };