forked from mirrors/nixpkgs
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
28 lines
603 B
Nix
28 lines
603 B
Nix
{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;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|
|
|
|
|