about summary refs log tree commit diff
path: root/pkgs/by-name/ha
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-11-16 13:38:22 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-11-16 23:46:11 -0300
commitec726b697d6cb081338810c36c076ff7459ef663 (patch)
treed11d6e464e17e9f277a6300590d07b4a7e569be0 /pkgs/by-name/ha
parent28d9d26f5a2a2adfb6d2ea76001cdfbb369baefa (diff)
downloadnixlib-ec726b697d6cb081338810c36c076ff7459ef663.tar
nixlib-ec726b697d6cb081338810c36c076ff7459ef663.tar.gz
nixlib-ec726b697d6cb081338810c36c076ff7459ef663.tar.bz2
nixlib-ec726b697d6cb081338810c36c076ff7459ef663.tar.lz
nixlib-ec726b697d6cb081338810c36c076ff7459ef663.tar.xz
nixlib-ec726b697d6cb081338810c36c076ff7459ef663.tar.zst
nixlib-ec726b697d6cb081338810c36c076ff7459ef663.zip
hachimarupop: init at unstable-2022-07-11
Diffstat (limited to 'pkgs/by-name/ha')
-rw-r--r--pkgs/by-name/ha/hachimarupop/package.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/by-name/ha/hachimarupop/package.nix b/pkgs/by-name/ha/hachimarupop/package.nix
new file mode 100644
index 000000000000..3ebf82409a1c
--- /dev/null
+++ b/pkgs/by-name/ha/hachimarupop/package.nix
@@ -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;
+  };
+}