eot-utilities: init -> 1.1

This commit is contained in:
Michiel Leenaars 2016-06-15 16:53:07 +02:00
parent 7102c3c0c4
commit bfec40d416
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{stdenv, fetchurl, pkgconfig }:
stdenv.mkDerivation rec {
pname = "eot_utilities";
version = "1.1";
name = "${pname}-${version}";
src = fetchurl {
url = "https://www.w3.org/Tools/eot-utils/eot-utilities-${version}.tar.gz";
sha256 = "0cb41riabss23hgfg7vxhky09d6zqwjy1nxdvr3l2bh5qzd4kvaf";
};
buildInputs = [ pkgconfig ];
meta = {
homepage = "http://www.w3.org/Tools/eot-utils/";
description = "Create Embedded Open Type from OpenType or TrueType font";
license = stdenv.lib.licenses.w3c;
maintainers = with stdenv.lib.maintainers; [ leenaars ];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -1416,6 +1416,8 @@ in
entr = callPackage ../tools/misc/entr { };
eot_utilities = callPackage ../tools/misc/eot-utilities { };
eplot = callPackage ../tools/graphics/eplot { };
ethtool = callPackage ../tools/misc/ethtool { };