sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / tools / misc / eot-utilities / default.nix
blobbb9279687b1bc1c6d523f59cf539cbd2772f3369
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 = "https://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   };