2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-02 19:14:14 +00:00
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
615 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "libuninameslist";
2022-10-23 16:45:16 +00:00
version = "20221022";
src = fetchFromGitHub {
owner = "fontforge";
repo = pname;
rev = version;
2022-10-23 16:45:16 +00:00
sha256 = "sha256-YLlSe2++DpcptuAxLduTYAY2m9D8JSGDcvzijpAv1rU=";
};
nativeBuildInputs = [
autoreconfHook
];
meta = with 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;
};
}