mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #268798 from x0ba/ia-writer-quattro
ia-writer-quattro: init at unstable-2023-06-16
This commit is contained in:
commit
3c14a77618
2 changed files with 37 additions and 0 deletions
|
@ -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";
|
||||
|
|
31
pkgs/by-name/ia/ia-writer-quattro/package.nix
Normal file
31
pkgs/by-name/ia/ia-writer-quattro/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue