1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00
nixpkgs/pkgs/data/fonts/junicode/default.nix

21 lines
490 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-08-10 20:43:49 +01:00
fetchzip {
2020-03-08 09:30:43 +00:00
name = "junicode-1.002";
2020-03-08 09:30:43 +00:00
url = mirror://sourceforge/junicode/junicode/junicode-1.002/junicode-1.002.zip;
2017-08-10 20:43:49 +01:00
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/junicode-ttf
'';
2020-03-08 09:30:43 +00:00
sha256 = "1n170gw41lr0zr5958z5cgpg6i1aa7kj7iq9s6gdh1cqq7hhgd08";
meta = {
2014-11-03 23:59:30 +00:00
homepage = http://junicode.sourceforge.net/;
description = "A Unicode font for medievalists";
license = lib.licenses.gpl2Plus;
};
}