nixpkgs/pkgs/data/fonts/junicode/default.nix

22 lines
543 B
Nix
Raw Normal View History

2017-08-10 19:43:49 +00:00
{ stdenv, fetchzip }:
2017-08-10 19:43:49 +00:00
fetchzip {
2014-11-03 23:59:30 +00:00
name = "junicode-0.7.8";
2017-08-10 19:43:49 +00:00
url = mirror://sourceforge/junicode/junicode/junicode-0-7-8/junicode-0-7-8.zip;
2017-08-10 19:43:49 +00:00
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/junicode-ttf
'';
2017-08-10 19:43:49 +00:00
sha256 = "0q4si9pnbif36154sv49kzc7ygivgflv81nzmblpz3b2p77g9956";
meta = {
2014-11-03 23:59:30 +00:00
homepage = http://junicode.sourceforge.net/;
description = "A Unicode font for medievalists";
platforms = stdenv.lib.platforms.unix;
2018-08-06 11:04:34 +00:00
license = stdenv.lib.licenses.gpl2Plus;
};
}