mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
komika-fonts: init at 0-unstable-2024-08-12
This commit is contained in:
parent
e351a0b840
commit
4ec848d365
120
pkgs/by-name/ko/komika-fonts/package.nix
Normal file
120
pkgs/by-name/ko/komika-fonts/package.nix
Normal file
@ -0,0 +1,120 @@
|
||||
{
|
||||
stdenvNoCC,
|
||||
lib,
|
||||
fetchzip,
|
||||
variants ? [
|
||||
"display"
|
||||
"hand"
|
||||
"poster"
|
||||
"text"
|
||||
"title"
|
||||
"komikahuna"
|
||||
"komikandy"
|
||||
"komikazba"
|
||||
"komikaze"
|
||||
"komikazoom"
|
||||
],
|
||||
}:
|
||||
|
||||
let
|
||||
fetchFont =
|
||||
{
|
||||
url,
|
||||
hash,
|
||||
curlOptsList ? [ ],
|
||||
}:
|
||||
fetchzip {
|
||||
inherit url hash curlOptsList;
|
||||
name = lib.nameFromURL url ".";
|
||||
stripRoot = false;
|
||||
};
|
||||
fontMap = {
|
||||
"display" = {
|
||||
url = "https://www.1001fonts.com/download/komika-display.zip";
|
||||
hash = "sha256-6oNKuaoV+a/cFCKFXRV8gtWqvFtPGtrqg+vt8hQREMI=";
|
||||
};
|
||||
"hand" = {
|
||||
url = "https://www.1001fonts.com/download/komika.zip";
|
||||
hash = "sha256-yb5SWQj7BRCLYHL31m25bhCOuo8qAvkRzGH6UIo3Bbs=";
|
||||
};
|
||||
"poster" = {
|
||||
url = "https://www.1001freefonts.com/d/5010/komika-poster.zip";
|
||||
hash = "sha256-k1uUfHSh9kymCJrfuPtKHejFeZGl2PxL4C/3hpoPIc4=";
|
||||
curlOptsList = [
|
||||
"-H"
|
||||
"Referer: https://www.1001freefonts.com/komika-poster.font"
|
||||
];
|
||||
};
|
||||
"text" = {
|
||||
url = "https://www.1001fonts.com/download/komika-text.zip";
|
||||
hash = "sha256-FdeFGw6MlYVTiYdvbfjSlQYq+UlKZTJ79HAdEEjMPQs=";
|
||||
};
|
||||
"title" = {
|
||||
url = "https://www.1001freefonts.com/d/5011/komika-title.zip";
|
||||
hash = "sha256-M/1NgsHjLR/w/ZxWEb5cebqEI1VKgPvtk75bhAPaw20=";
|
||||
curlOptsList = [
|
||||
"-H"
|
||||
"Referer: https://www.1001freefonts.com/komika-title.font"
|
||||
];
|
||||
};
|
||||
"komikahuna" = {
|
||||
url = "https://www.1001fonts.com/download/komikahuna.zip";
|
||||
hash = "sha256-TjGxQA3ZyIOyJUNP+MVkYiSDk9WDIDPy3d2ttWC1aoc=";
|
||||
};
|
||||
"komikandy" = {
|
||||
url = "https://www.1001fonts.com/download/komikandy.zip";
|
||||
hash = "sha256-NqpR+gM2giTHGUBYoJlO8vkzOD0ep7LzAry3nIagjLY=";
|
||||
};
|
||||
"komikazba" = {
|
||||
url = "https://www.1001fonts.com/download/komikazba.zip";
|
||||
hash = "sha256-SGJMP0OdZ/AEImN5S3QshCbWSLXO4qTjHnSQYqoy3Pc=";
|
||||
};
|
||||
"komikaze" = {
|
||||
url = "https://www.1001fonts.com/download/komikaze.zip";
|
||||
hash = "sha256-daJRwgkzL5v224KwkaGMK2FqVnfin8+8WvMTvXTkCGE=";
|
||||
};
|
||||
"komikazoom" = {
|
||||
url = "https://www.1001fonts.com/download/komikazoom.zip";
|
||||
hash = "sha256-/o2QPPPiQBkNU0XRxJyI0+5CKFEv4FKU3A5ku1zyVX4=";
|
||||
};
|
||||
|
||||
};
|
||||
knownFonts = lib.attrNames fontMap;
|
||||
selectedFonts =
|
||||
if (variants == [ ]) then
|
||||
lib.warn "No variants selected, installing all instead" knownFonts
|
||||
else
|
||||
let
|
||||
unknown = lib.subtractLists knownFonts variants;
|
||||
in
|
||||
if (unknown != [ ]) then
|
||||
throw "Unknown variant(s): ${lib.concatStringsSep " " unknown}"
|
||||
else
|
||||
variants;
|
||||
|
||||
in
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "komika-fonts";
|
||||
version = "0-unstable-2024-08-12";
|
||||
sourceRoot = ".";
|
||||
|
||||
srcs = map (variant: fetchFont fontMap.${variant}) selectedFonts;
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/share/fonts/ttf
|
||||
mv **/*.ttf $out/share/fonts/ttf
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://moorstation.org/typoasis/designers/lab/index.htm";
|
||||
# description from archive here: http://web.archive.org/web/20030422173903fw_/http://www.hardcovermedia.com/lab/Pages/Fontpages/komikahands.html
|
||||
description = "First ever comic lettering super family";
|
||||
longDescription = ''
|
||||
50 fonts, covering everything the comic artist needs when it comes to lettering. 10 text faces, 10 display faces, 10 tiling faces, 10 hand variations, 9 poster faces, and 20 balloons in a font.
|
||||
'';
|
||||
license = lib.licenses.unfree;
|
||||
maintainers = with lib.maintainers; [ pancaek ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user