mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Added ttmkfdir - program to create fonts.scale for TTF fonts
svn path=/nixpkgs/trunk/; revision=10910
This commit is contained in:
parent
7ffdd3a997
commit
10daad7e97
@ -30,4 +30,5 @@ stdenv.mkDerivation rec {
|
||||
";
|
||||
homepage = "http://sixpak.org/dosfstools/dosfstools-2.8vb2.tar.gz";
|
||||
};
|
||||
inherit src;
|
||||
}
|
||||
|
@ -48,4 +48,5 @@ stdenv.mkDerivation rec {
|
||||
Relational FS over FUSE.
|
||||
";
|
||||
};
|
||||
inherit src;
|
||||
}
|
||||
|
@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
|
||||
description = "
|
||||
Readline wrapper for console programs.
|
||||
";
|
||||
inherit src;
|
||||
};
|
||||
}
|
||||
|
22
pkgs/tools/misc/ttmkfdir/default.nix
Normal file
22
pkgs/tools/misc/ttmkfdir/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
args: with args; with debPackage;
|
||||
debBuild ({
|
||||
src =
|
||||
fetchurl {
|
||||
url = http://ftp.de.debian.org/debian/pool/main/t/ttmkfdir/ttmkfdir_3.0.9.orig.tar.gz;
|
||||
sha256 = "0n6bmmndmp4c1myisvv7cby559gzgvwsw4rfw065a3f92m87jxiq";
|
||||
};
|
||||
patch =
|
||||
fetchurl {
|
||||
url = http://ftp.de.debian.org/debian/pool/main/t/ttmkfdir/ttmkfdir_3.0.9-5.1.diff.gz;
|
||||
sha256 = "1500kwvhxfq85zg7nwnn9dlvjxyg2ni7as17gdfm67pl9a45q3w4";
|
||||
};
|
||||
name = "ttf-mkfontdir-3.0.9-5.1";
|
||||
buildInputs = [fontconfig freetype libunwind libtool
|
||||
flex bison];
|
||||
meta = {
|
||||
description = "Create fonts.dir for TTF font directory.";
|
||||
};
|
||||
extraReplacements = ''sed -e 's/int isatty(int [^)]*)/& throw()/' '';
|
||||
omitConfigure = true;
|
||||
} // args)
|
||||
|
Loading…
Reference in New Issue
Block a user