forked from mirrors/nixpkgs
Adding andagii font
svn path=/nixpkgs/trunk/; revision=24610
This commit is contained in:
parent
ffebdb77c3
commit
384eefe26b
58
pkgs/data/fonts/andagii/default.nix
Normal file
58
pkgs/data/fonts/andagii/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
x@{builderDefsPackage
|
||||
, unzip
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
url="http://www.i18nguy.com/unicode/andagii.zip";
|
||||
name="andagii";
|
||||
hash="0cknb8vin15akz4ahpyayrpqyaygp9dgrx6qw7zs7d6iv9v59ds1";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
src = a.fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.hash;
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
inherit buildInputs;
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doUnpack" "doInstall"];
|
||||
|
||||
doUnpack = a.fullDepEntry ''
|
||||
unzip "${src}"
|
||||
'' ["addInputs"];
|
||||
|
||||
doInstall = a.fullDepEntry (''
|
||||
ensureDir "$out"/share/fonts/ttf/
|
||||
cp ANDAGII_.TTF "$out"/share/fonts/ttf/andagii.ttf
|
||||
'') ["defEnsureDir" "minInit"];
|
||||
|
||||
meta = {
|
||||
description = "Unicode Plane 1 Osmanya script font";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
[];
|
||||
# There are multiple claims that the font is GPL,
|
||||
# so I include the package; but I cannot find the
|
||||
# original source, so use it on your own risk
|
||||
# Debian claims it is GPL - good enough for me.
|
||||
};
|
||||
passthru = {
|
||||
updateInfo = {
|
||||
downloadPage = "http://www.i18nguy.com/unicode/unicode-font.html";
|
||||
};
|
||||
};
|
||||
}) x
|
||||
|
|
@ -5104,6 +5104,8 @@ let
|
|||
|
||||
### DATA
|
||||
|
||||
andagii = callPackage ../data/fonts/andagii {};
|
||||
|
||||
arkpandora_ttf = builderDefsPackage (import ../data/fonts/arkpandora) {
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue