tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hachimarupop: init at unstable-2022-07-11
Anderson Torres
2 years ago
ec726b69
28d9d26f
+30
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ha
hachimarupop
package.nix
+30
pkgs/by-name/ha/hachimarupop/package.nix
···
1
1
+
{ lib
2
2
+
, stdenvNoCC
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
stdenvNoCC.mkDerivation {
7
7
+
pname = "hachimarupop";
8
8
+
version = "unstable-2022-07-11";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "noriokanisawa";
12
12
+
repo = "HachiMaruPop";
13
13
+
rev = "67d96c274032f5a2e1d33c1ec53498fde9110079";
14
14
+
hash = "sha256-b1moyTVy0hHGu9/LrQ9k6Isd/LYTSxiuqz3BzrYVbXY=";
15
15
+
};
16
16
+
17
17
+
installPhase = ''
18
18
+
runHook preInstall
19
19
+
install -Dm444 fonts/ttf/*.ttf -t $out/share/fonts/truetype/
20
20
+
runHook postInstall
21
21
+
'';
22
22
+
23
23
+
meta = {
24
24
+
homepage = "https://github.com/noriokanisawa/HachiMaruPop";
25
25
+
description = "A cute, Japanese font";
26
26
+
license = lib.licenses.ofl;
27
27
+
maintainers = with lib.maintainers; [ AndersonTorres ];
28
28
+
platforms = lib.platforms.all;
29
29
+
};
30
30
+
}