nixpkgs/pkgs/data/fonts/open-dyslexic/default.nix

26 lines
812 B
Nix
Raw Normal View History

2017-08-10 19:43:49 +00:00
{stdenv, fetchzip}:
2017-08-10 19:43:49 +00:00
let
version = "2014-11-11";
2017-08-10 19:43:49 +00:00
in fetchzip {
name = "open-dyslexic-${version}";
2017-08-10 19:43:49 +00:00
url = https://github.com/antijingoist/open-dyslexic/archive/f4b5ba89018b44d633608907e15f93fb3fabbabc.zip;
2017-08-10 19:43:49 +00:00
postFetch = ''
mkdir -p $out/share/{doc,fonts}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*/README.md -d $out/share/doc/open-dyslexic
'';
2017-08-10 19:43:49 +00:00
sha256 = "045xc7kj56q4ygnjppm8f8fwqqvf21x1piabm4nh8hwgly42a3w2";
meta = with stdenv.lib; {
homepage = http://opendyslexic.org/;
description = "Font created to increase readability for readers with dyslexia";
license = "Bitstream Vera License (http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts)";
platforms = platforms.all;
maintainers = [maintainers.rycee];
};
}