mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
kawkab-mono font type
This commit is contained in:
parent
60be029250
commit
ca9b59a3ed
26
pkgs/data/fonts/kawkab-mono/default.nix
Normal file
26
pkgs/data/fonts/kawkab-mono/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user