Merge pull request #16248 from leenaars/eotutils
eot-utilities: init -> 1.1
This commit is contained in:
commit
1265acc201
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1418,6 +1418,8 @@ in
|
||||||
|
|
||||||
entr = callPackage ../tools/misc/entr { };
|
entr = callPackage ../tools/misc/entr { };
|
||||||
|
|
||||||
|
eot_utilities = callPackage ../tools/misc/eot-utilities { };
|
||||||
|
|
||||||
eplot = callPackage ../tools/graphics/eplot { };
|
eplot = callPackage ../tools/graphics/eplot { };
|
||||||
|
|
||||||
ethtool = callPackage ../tools/misc/ethtool { };
|
ethtool = callPackage ../tools/misc/ethtool { };
|
||||||
|
|
Loading…
Reference in New Issue