lol

hachimarupop: init at unstable-2022-07-11

+30
+30
pkgs/by-name/ha/hachimarupop/package.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenvNoCC.mkDerivation { 7 + pname = "hachimarupop"; 8 + version = "unstable-2022-07-11"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "noriokanisawa"; 12 + repo = "HachiMaruPop"; 13 + rev = "67d96c274032f5a2e1d33c1ec53498fde9110079"; 14 + hash = "sha256-b1moyTVy0hHGu9/LrQ9k6Isd/LYTSxiuqz3BzrYVbXY="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + install -Dm444 fonts/ttf/*.ttf -t $out/share/fonts/truetype/ 20 + runHook postInstall 21 + ''; 22 + 23 + meta = { 24 + homepage = "https://github.com/noriokanisawa/HachiMaruPop"; 25 + description = "A cute, Japanese font"; 26 + license = lib.licenses.ofl; 27 + maintainers = with lib.maintainers; [ AndersonTorres ]; 28 + platforms = lib.platforms.all; 29 + }; 30 + }