2020-01-13 14:59:01 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libuninameslist";
|
2020-03-14 07:55:27 +00:00
|
|
|
version = "20200313";
|
2020-01-13 14:59:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fontforge";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-03-14 07:55:27 +00:00
|
|
|
sha256 = "1rs4mrmfcw7864kssnk559ac1sdlpl8yrd10xspxrnfz08ynqxw8";
|
2020-01-13 14:59:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-14 07:55:27 +00:00
|
|
|
homepage = "https://github.com/fontforge/libuninameslist/";
|
2020-01-13 14:59:01 +00:00
|
|
|
description = "A Library of Unicode names and annotation data";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ erictapen ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|