hachimarupop: init at unstable-2022-07-11
This commit is contained in:
parent
28d9d26f5a
commit
ec726b697d
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/ha/hachimarupop/package.nix
Normal file
30
pkgs/by-name/ha/hachimarupop/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "hachimarupop";
|
||||
version = "unstable-2022-07-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "noriokanisawa";
|
||||
repo = "HachiMaruPop";
|
||||
rev = "67d96c274032f5a2e1d33c1ec53498fde9110079";
|
||||
hash = "sha256-b1moyTVy0hHGu9/LrQ9k6Isd/LYTSxiuqz3BzrYVbXY=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm444 fonts/ttf/*.ttf -t $out/share/fonts/truetype/
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/noriokanisawa/HachiMaruPop";
|
||||
description = "A cute, Japanese font";
|
||||
license = lib.licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue