Merge pull request #10405 from MasseGuillaume/feature/kawkab-mono

kawkab-mono font type
This commit is contained in:
Peter Simons 2015-10-15 23:06:34 +02:00
commit 531f72b39f
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation rec {
name = "kawkab-mono-20151015";
src = fetchurl {
url = "http://makkuk.com/kawkab-mono/downloads/kawkab-mono-0.1.zip";
sha256 = "16pv9s4q7199aacbzfi2d10rcrq77vyfvzcy42g80nhfrkz1cb0m";
};
buildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
meta = {
description = "An arab fixed-width font";
homepage = "http://makkuk.com/kawkab-mono/";
license = stdenv.lib.licenses.ofl;
};
}

View file

@ -10537,6 +10537,8 @@ let
junicode = callPackage ../data/fonts/junicode { };
kawkab-mono-font = callPackage ../data/fonts/kawkab-mono {};
kochi-substitute = callPackage ../data/fonts/kochi-substitute {};
kochi-substitute-naga10 = callPackage ../data/fonts/kochi-substitute-naga10 {};