nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv
2, fetchFromGitHub
3, autoreconfHook
4}:
5
6stdenv.mkDerivation rec {
7 pname = "libuninameslist";
8 version = "20200413";
9
10 src = fetchFromGitHub {
11 owner = "fontforge";
12 repo = pname;
13 rev = version;
14 sha256 = "0jbg94z00f5vwqyjfrbill6cjvzp1zrki6m3d235jjxyw0hm3wr5";
15 };
16
17 nativeBuildInputs = [
18 autoreconfHook
19 ];
20
21 meta = with stdenv.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}