audiobookshelf: 2.18.1 -> 2.19.0 (#378967)
[NixPkgs.git] / pkgs / by-name / lc / lcdf-typetools / package.nix
blob07fe3981db6671a4e84617a05bdeb3b668524365
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "lcdf-typetools";
10   version = "2.110";
12   src = fetchFromGitHub {
13     owner = "kohler";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-hoILYYCef2R1v6aN9V+FoYnXYaKsnGN2jlpb/QFAN/w=";
17   };
19   nativeBuildInputs = [ autoreconfHook ];
21   configureFlags = [ "--without-kpathsea" ];
23   meta = with lib; {
24     description = "Utilities for manipulating OpenType, PostScript Type 1, and Multiple Master fonts";
25     homepage = "https://www.lcdf.org/type";
26     license = licenses.gpl2Only;
27     maintainers = with maintainers; [ dtzWill ];
28   };