nixpkgs/pkgs/data/fonts/gentium-book-basic/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* 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
2017-08-01 22:03:30 +02:00

32 lines
885 B
Nix

{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
name = "gentium-book-basic-${version}";
major = "1";
minor = "102";
version = "${major}.${minor}";
src = fetchzip {
name = "${name}.zip";
url = "http://software.sil.org/downloads/gentium/GentiumBasic_${major}${minor}.zip";
sha256 = "109yiqwdfb1bn7d6bjp8d50k1h3z3kz86p3faz11f9acvsbsjad0";
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/${name}
cp -v *.ttf $out/share/fonts/truetype/
cp -v FONTLOG.txt GENTIUM-FAQ.txt $out/share/doc/${name}
'';
meta = with stdenv.lib; {
homepage = http://software.sil.org/gentium/;
description = "A high-quality typeface family for Latin, Cyrillic, and Greek";
maintainers = with maintainers; [ ];
license = licenses.ofl;
platforms = platforms.all;
};
}