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

30 lines
610 B
Nix
Raw Normal View History

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