After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build a08b3a4d19.tar.gz \
--argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7
result/bin/apply-formatting $NIXPKGS_PATH
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchzip,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "hanazono";
|
|
version = "20170904";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://osdn/hanazono-font/68253/hanazono-${version}.zip";
|
|
stripRoot = false;
|
|
hash = "sha256-qd0q4wQnHBGLT7C+UQIiOHnxCnRCscMZcj3P5RRxD1U=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 *.ttf -t $out/share/fonts/truetype
|
|
install -Dm644 *.txt -t $out/share/doc/hanazono
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Japanese Mincho-typeface TrueType font";
|
|
homepage = "https://fonts.jp/hanazono/";
|
|
longDescription = ''
|
|
Hanazono Mincho typeface is a Japanese TrueType font that developed with a
|
|
support of Grant-in-Aid for Publication of Scientific Research Results
|
|
from Japan Society for the Promotion of Science and the International
|
|
Research Institute for Zen Buddhism (IRIZ), Hanazono University. also with
|
|
volunteers who work together on glyphwiki.org.
|
|
'';
|
|
|
|
# Dual-licensed under OFL and the following:
|
|
# This font is a free software.
|
|
# Unlimited permission is granted to use, copy, and distribute it, with
|
|
# or without modification, either commercially and noncommercially.
|
|
# THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.
|
|
license = [
|
|
licenses.ofl
|
|
licenses.free
|
|
];
|
|
maintainers = with maintainers; [ mathnerd314 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|