sitelen-seli-kiwen: init at unstable-2022-06-28

This commit is contained in:
Kylie McClain 2022-08-18 17:08:51 -04:00
parent aa7afd8d40
commit 9bebad4487
No known key found for this signature in database
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, fetchzip }:
let
rev = "69132c99873894746c9710707aaeb2cea2609709";
in
fetchzip {
pname = "sitelen-seli-kiwen";
version = "unstable-2022-06-28";
url = "https://raw.githubusercontent.com/kreativekorp/sitelen-seli-kiwen/${rev}/sitelenselikiwen.zip";
hash = "sha256-63sl/Ha2QAe8pVKCpLNs//DB0kjLdW01u6tVMrGquIU=";
stripRoot = false;
postFetch = ''
mkdir -p $out/share/fonts/{opentype,truetype}
mv $out/*.eot $out/share/fonts/opentype/
mv $out/*.ttf $out/share/fonts/truetype/
'';
meta = with lib; {
description = "A handwritten sitelen pona font supporting UCSUR";
homepage = "https://www.kreativekorp.com/software/fonts/sitelenselikiwen/";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ somasis ];
};
}

View file

@ -998,6 +998,8 @@ with pkgs;
sirula = callPackage ../tools/wayland/sirula { };
sitelen-seli-kiwen = callPackage ../data/fonts/sitelen-seli-kiwen {};
srcOnly = callPackage ../build-support/src-only { };
subnetcalc = callPackage ../tools/networking/subnetcalc { };