depot/third_party/nixpkgs/pkgs/data/fonts/linja-pi-pu-lukin/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
859 B
Nix

{ lib, stdenvNoCC, fetchurl }:
stdenvNoCC.mkDerivation {
pname = "linja-pi-pu-lukin";
version = "unstable-2021-10-29";
src = fetchurl {
url = "https://web.archive.org/web/20211029000000/https://jansa-tp.github.io/linja-pi-pu-lukin/PuLukin.otf";
hash = "sha256-Mf7P9fLGiG7L555Q3wRaI/PRv/TIs0njLq2IzIbc5Wo=";
};
dontUnpack = true;
installPhase = ''
runHook preInstall
install -D $src $out/share/fonts/opentype/linja-pi-pu-lukin.otf
runHook postInstall
'';
meta = with lib; {
description = "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 ];
};
}