forked from mirrors/nixpkgs
eot-utilities: init -> 1.1
This commit is contained in:
parent
7102c3c0c4
commit
bfec40d416
22
pkgs/tools/misc/eot-utilities/default.nix
Normal file
22
pkgs/tools/misc/eot-utilities/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue