depot/third_party/nixpkgs/pkgs/data/fonts/linja-pi-pu-lukin/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

23 lines
793 B
Nix

{ lib, fetchurl }:
fetchurl {
pname = "linja-pi-pu-lukin";
version = "unstable-2021-10-29";
url = "https://web.archive.org/web/20211029000000/https://jansa-tp.github.io/linja-pi-pu-lukin/PuLukin.otf";
hash = "sha256-VPdrMHWpiokFYON4S8zT+pSs4TsB17S8TZRtkjqIqU8=";
downloadToTemp = true;
recursiveHash = true;
postFetch = ''
install -D $downloadedFile $out/share/fonts/opentype/linja-pi-pu-lukin.otf
'';
meta = with lib; {
description = "A sitelen pona font resembling the style found in Toki Pona: The Language of Good (lipu pu), by jan Sa.";
homepage = "https://jansa-tp.github.io/linja-pi-pu-lukin/";
license = licenses.unfree; # license is unspecified in repository
platforms = platforms.all;
maintainers = with maintainers; [ somasis ];
};
}