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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
613 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "libuninameslist";
2024-05-25 13:39:22 +00:00
version = "20240524";
src = fetchFromGitHub {
owner = "fontforge";
repo = pname;
rev = version;
2024-05-25 13:39:22 +00:00
sha256 = "sha256-LANwM0fhCsscXAdI/qGOmUWDzAhe3g9w3J68g4szDZQ=";
};
nativeBuildInputs = [
autoreconfHook
];
meta = with lib; {
2020-03-14 07:55:27 +00:00
homepage = "https://github.com/fontforge/libuninameslist/";
description = "Library of Unicode names and annotation data";
license = licenses.bsd3;
maintainers = with maintainers; [ erictapen ];
platforms = platforms.all;
};
}