mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
616 B
Nix
29 lines
616 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libuninameslist";
|
|
version = "20200413";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fontforge";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0jbg94z00f5vwqyjfrbill6cjvzp1zrki6m3d235jjxyw0hm3wr5";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|