added readexpro

This commit is contained in:
kenji
2025-08-12 08:10:33 -05:00
parent 081ee3262c
commit beefe0f140
4 changed files with 30 additions and 6 deletions
+23
View File
@@ -0,0 +1,23 @@
{
stdenv,
fetchFromGitHub,
...
}:
stdenv.mkDerivation {
pname = "readex-pro";
version = "1.000";
src = fetchFromGitHub {
owner = "ThomasJockin";
repo = "readexpro";
rev = "563dfbb36ae45e52ec50829b016ce724ac2fca70";
sha256 = "sha256-caMANs/csO4EZJ6iykRbY20wPib9L+S9oj233oNYfF0=";
};
installPhase = ''
runHook preInstall
install -Dm644 $src/fonts/ttf/*.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
}