2019-05-13 03:55:32 +02:00
|
|
|
{ lib, fetchzip }:
|
2015-01-17 00:46:38 +01:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
let
|
2018-11-02 23:29:29 +01:00
|
|
|
version = "2016-06-23";
|
2017-08-10 21:43:49 +02:00
|
|
|
in fetchzip {
|
|
|
|
name = "open-dyslexic-${version}";
|
2015-01-17 00:46:38 +01:00
|
|
|
|
2018-11-02 23:29:29 +01:00
|
|
|
url = https://github.com/antijingoist/open-dyslexic/archive/20160623-Stable.zip;
|
2015-01-17 00:46:38 +01:00
|
|
|
|
2017-08-10 21:43:49 +02: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
|
2015-01-17 00:46:38 +01:00
|
|
|
'';
|
|
|
|
|
2018-11-02 23:29:29 +01:00
|
|
|
sha256 = "1vl8z5rknh2hpr2f0v4b2qgs5kclx5pzyk8al7243k5db82a2cyi";
|
2017-08-10 21:43:49 +02:00
|
|
|
|
2019-05-13 03:55:32 +02:00
|
|
|
meta = with lib; {
|
2018-01-05 20:42:46 +01:00
|
|
|
homepage = https://opendyslexic.org/;
|
2015-01-17 00:46:38 +01:00
|
|
|
description = "Font created to increase readability for readers with dyslexia";
|
2017-08-02 23:50:51 +02:00
|
|
|
license = "Bitstream Vera License (https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts)";
|
2015-01-17 00:46:38 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [maintainers.rycee];
|
|
|
|
};
|
|
|
|
}
|