biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / lcdf-typetools / default.nix
blobfeb2563735b4bbdeee39ee5e86b962764c587842
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "lcdf-typetools";
5   version = "2.110";
7   src = fetchFromGitHub {
8     owner = "kohler";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-hoILYYCef2R1v6aN9V+FoYnXYaKsnGN2jlpb/QFAN/w=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   configureFlags = [ "--without-kpathsea" ];
18   meta = with lib; {
19     description = "Utilities for manipulating OpenType, PostScript Type 1, and Multiple Master fonts";
20     homepage = "https://www.lcdf.org/type";
21     license = licenses.gpl2Only;
22     maintainers = with maintainers; [ dtzWill ];
23   };