sil-abyssinica: 1.500 → 2.100
This commit is contained in:
parent
78be5507bd
commit
6e37ec0c48
1 changed files with 9 additions and 7 deletions
|
@ -1,23 +1,25 @@
|
|||
{ fetchzip, lib }:
|
||||
|
||||
let
|
||||
version = "1.500";
|
||||
version = "2.100";
|
||||
in
|
||||
fetchzip {
|
||||
fetchzip rec {
|
||||
name = "sil-abyssinica-${version}";
|
||||
url = "mirror://debian/pool/main/f/fonts-sil-abyssinica/fonts-sil-abyssinica_${version}.orig.tar.xz";
|
||||
sha256 = "sha256-fCa88wG2JfHTaHaBkuvoncbcbrh3XNzc8ewS3W+W/fM=";
|
||||
url = "https://software.sil.org/downloads/r/abyssinica/AbyssinicaSIL-${version}.zip";
|
||||
sha256 = "sha256-06olbIdSlhJ4hgblzzabqIs57FpsyWIdPDFXb9vK31A=";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts
|
||||
tar xf $downloadedFile --strip-components=1 -C $out/share/fonts AbyssinicaSIL-${version}/AbyssinicaSIL-R.ttf
|
||||
rm -rf $out/web
|
||||
mkdir -p $out/share/{fonts/truetype,doc/${name}}
|
||||
mv $out/*.ttf $out/share/fonts/truetype/
|
||||
mv $out/*.txt $out/documentation $out/share/doc/${name}/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unicode font for Ethiopian and Erythrean scripts (Amharic et al.)";
|
||||
homepage = "https://software.sil.org/abyssinica/";
|
||||
license = licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ serge ];
|
||||
maintainers = with maintainers; [ serge ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue