forked from Shinonome/nixos-fonts
24 lines
456 B
Nix
24 lines
456 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "gabarito";
|
|
version = "1.000";
|
|
src = fetchFromGitHub {
|
|
owner = "naipefoundry";
|
|
repo = "gabarito";
|
|
rev = "1f3fb39d6449eefa880543f109f33ede0cd4064f";
|
|
sha256 = "sha256-cZMANs/csO4EZJ6iykRbY20wPib9L+S9oj233oNYfF0=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 $src/fonts/ttf/*.ttf -t $out/share/fonts/truetype
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|