python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / eot-utilities / default.nix
blob516c9e426175090908ef944a12e25eb80d89fd52
1 {lib, stdenv, fetchurl, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "eot_utilities";
5   version = "1.1";
7   src = fetchurl {
8     url = "https://www.w3.org/Tools/eot-utils/eot-utilities-${version}.tar.gz";
9     sha256 = "0cb41riabss23hgfg7vxhky09d6zqwjy1nxdvr3l2bh5qzd4kvaf";
10   };
12   nativeBuildInputs = [ pkg-config ];
14   meta = {
15     homepage = "http://www.w3.org/Tools/eot-utils/";
16     description = "Create Embedded Open Type from OpenType or TrueType font";
17     license = lib.licenses.w3c;
18     maintainers = with lib.maintainers; [ leenaars ];
19     platforms = with lib.platforms; unix;
20   };