nixpkgs/pkgs/development/libraries/libuninameslist/default.nix

29 lines
618 B
Nix
Raw Normal View History

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