Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libuninameslist / default.nix
blob3cbb78d83ce9b7b337f06d076c825c0819a17903
1 { lib, stdenv
2 , fetchFromGitHub
3 , autoreconfHook
4 }:
6 stdenv.mkDerivation rec {
7   pname = "libuninameslist";
8   version = "20230916";
10   src = fetchFromGitHub {
11     owner = "fontforge";
12     repo = pname;
13     rev = version;
14     sha256 = "sha256-8mLXTvi4KbU4NiCPaJINTeFbnTAabGDg8ufpSHSqy0Y=";
15   };
17   nativeBuildInputs = [
18     autoreconfHook
19   ];
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   };