Merge pull request #268798 from x0ba/ia-writer-quattro

ia-writer-quattro: init at unstable-2023-06-16
This commit is contained in:
Weijia Wang 2023-12-04 00:31:23 +01:00 committed by GitHub
commit 3c14a77618
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -19800,6 +19800,12 @@
githubId = 3992240;
name = "Elijah Rum";
};
x0ba = {
name = "x0ba";
email = "dax@omg.lol";
github = "x0ba";
githubId = 64868985;
};
x3ro = {
name = "^x3ro";
email = "nix@x3ro.dev";

View file

@ -0,0 +1,31 @@
{ lib, stdenvNoCC, fetchFromGitHub, }:
stdenvNoCC.mkDerivation {
pname = "ia-writer-quattro";
version = "unstable-2023-06-16";
src = fetchFromGitHub {
owner = "iaolo";
rev = "f32c04c3058a75d7ce28919ce70fe8800817491b";
repo = "iA-fonts";
hash = "sha256-2T165nFfCzO65/PIHauJA//S+zug5nUwPcg8NUEydfc=";
};
dontConfigure = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
cp -R $src/iA\ Writer\ Quattro/Static/*.ttf $out/share/fonts/truetype
runHook postInstall
'';
meta = with lib; {
description = "iA Writer Quattro Typeface";
homepage = "https://github.com/iaolo/iA-Fonts";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.x0ba ];
};
}