mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
33 lines
890 B
Nix
33 lines
890 B
Nix
{ lib, stdenvNoCC, fetchzip }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "junicode";
|
|
version = "2.203";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/psb1558/Junicode-font/releases/download/v${version}/Junicode_${version}.zip";
|
|
hash = "sha256-RG12veiZXqjfK2gONmauhGReuLEkqxbQ4h4PEwaih/U=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm 444 -t $out/share/fonts/truetype TTF/*.ttf VAR/*.ttf
|
|
install -Dm 444 -t $out/share/fonts/opentype OTF/*.otf
|
|
install -Dm 444 -t $out/share/fonts/woff2 WOFF2/*.woff2
|
|
|
|
install -Dm 444 -t $doc/share/doc/${pname}-${version} docs/*.pdf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/psb1558/Junicode-font";
|
|
description = "A Unicode font for medievalists";
|
|
maintainers = with lib.maintainers; [ ivan-timokhin ];
|
|
license = lib.licenses.ofl;
|
|
};
|
|
}
|