forked from Shinonome/nixos-fonts
24 lines
459 B
Nix
24 lines
459 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "readex-pro";
|
|
version = "1.000";
|
|
src = fetchFromGitHub {
|
|
owner = "ThomasJockin";
|
|
repo = "readexpro";
|
|
rev = "563dfbb36ae45e52ec50829b016ce724ac2fca70";
|
|
sha256 = "sha256-+CLym2N2O6Opv7pxuVA+sfiENggPD5HRJrVByzaMMN8=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 $src/fonts/ttf/*.ttf -t $out/share/fonts/truetype
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|