2018-09-07 23:37:31 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2015-03-12 23:14:21 +01:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
let
|
2018-09-07 23:37:31 +02:00
|
|
|
|
2016-11-16 23:15:50 +01:00
|
|
|
version = "5.4";
|
2018-09-07 23:37:31 +02:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
fetchurl rec {
|
2017-08-10 21:43:49 +02:00
|
|
|
name = "pecita-${version}";
|
2015-03-12 23:14:21 +01:00
|
|
|
|
2018-09-07 23:37:31 +02:00
|
|
|
url = "http://pecita.eu/b/Pecita.otf";
|
|
|
|
|
|
|
|
downloadToTemp = true;
|
2015-03-12 23:14:21 +01:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
postFetch = ''
|
2015-03-12 23:14:21 +01:00
|
|
|
mkdir -p $out/share/fonts/opentype
|
2018-09-07 23:37:31 +02:00
|
|
|
cp -v $downloadedFile $out/share/fonts/opentype/Pecita.otf
|
2015-03-12 23:14:21 +01:00
|
|
|
'';
|
|
|
|
|
2018-09-07 23:37:31 +02:00
|
|
|
recursiveHash = true;
|
2017-08-10 21:43:49 +02:00
|
|
|
sha256 = "0pwm20f38lcbfkdqkpa2ydpc9kvmdg0ifc4h2dmipsnwbcb5rfwm";
|
|
|
|
|
2015-03-12 23:14:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://pecita.eu/police-en.php;
|
|
|
|
description = "Handwritten font with connected glyphs";
|
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [maintainers.rycee];
|
|
|
|
};
|
|
|
|
}
|