Skip to content

Commit

Permalink
lora: init at v3.005
Browse files Browse the repository at this point in the history
  • Loading branch information
ofalvai committed Oct 22, 2024
1 parent 70e46c5 commit 0b80629
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/by-name/lo/lora/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
nix-update-script,
}:

stdenvNoCC.mkDerivation rec {
pname = "lora";
version = "v3.005";

src = fetchFromGitHub {
owner = "cyrealtype";
rev = version;
repo = "lora";
hash = "sha256-EHa8DUPFRvdYBdCY41gfjKGtTHwGIXCwD9Qc+Npmt1s=";
};

dontConfigure = true;
dontBuild = true;

passthru.updateScript = nix-update-script { };

installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
cp -R $src/fonts/ttf/*.ttf $out/share/fonts/truetype
runHook postInstall
'';

meta = with lib; {
description = "Lora is a well-balanced contemporary serif with roots in calligraphy";
homepage = "https://github.com/cyrealtype/lora";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ ofalvai ];
};
}

0 comments on commit 0b80629

Please sign in to comment.