python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / lcdf-typetools / default.nix
blob3c4fd39713b48cf2812d16f7f630c8e39557ca13
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "lcdf-typetools";
5   version = "2.108";
7   src = fetchFromGitHub {
8     owner = "kohler";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0a6jqaqwq43ldjjjlnsh6mczs2la9363qav7v9fyrfzkfj8kw9ad";
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.gpl2;
22     maintainers = with maintainers; [ dtzWill ];
23   };