2015-03-12 22:14:21 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pecita-${version}";
|
2015-09-07 22:28:20 +01:00
|
|
|
version = "5.2";
|
2015-03-12 22:14:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-09-11 23:52:32 +01:00
|
|
|
url = "http://archive.rycee.net/pecita/${name}.tar.xz";
|
|
|
|
sha256 = "0ryfvxdla5iinwwin4dc1k89hk1bjq2mfdrrv67q6fdgz41l0qf0";
|
2015-03-12 22:14:21 +00:00
|
|
|
};
|
|
|
|
|
2015-09-11 23:52:32 +01:00
|
|
|
phases = ["unpackPhase" "installPhase"];
|
2015-03-12 22:14:21 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/fonts/opentype
|
2015-09-11 23:52:32 +01:00
|
|
|
cp -v Pecita.otf $out/share/fonts/opentype/Pecita.otf
|
2015-03-12 22:14:21 +00: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];
|
|
|
|
};
|
|
|
|
}
|