[Travis CI] Automatic update 2022-06-03 (Build 20)
This commit is contained in:
parent
c26cbef275
commit
4e2182d10d
9 changed files with 120 additions and 15 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://travis-ci.org/dimitarnestorov/nix-google-fonts-overlay)
|
[](https://travis-ci.org/dimitarnestorov/nix-google-fonts-overlay)
|
||||||
|
|
||||||
**1519 high-quality fonts packaged for Nix**
|
**1522 high-quality fonts packaged for Nix**
|
||||||
|
|
||||||
This [Nix overlay](https://nixos.org) contains individual packages for all the
|
This [Nix overlay](https://nixos.org) contains individual packages for all the
|
||||||
fonts from the [Google Fonts project](https://github.com/google/fonts). The
|
fonts from the [Google Fonts project](https://github.com/google/fonts). The
|
||||||
|
|
|
@ -4,6 +4,7 @@ self: super:
|
||||||
google-fonts-abeezee = super.callPackage ./pkgs/abeezee {};
|
google-fonts-abeezee = super.callPackage ./pkgs/abeezee {};
|
||||||
google-fonts-abel = super.callPackage ./pkgs/abel {};
|
google-fonts-abel = super.callPackage ./pkgs/abel {};
|
||||||
google-fonts-abhaya-libre = super.callPackage ./pkgs/abhaya-libre {};
|
google-fonts-abhaya-libre = super.callPackage ./pkgs/abhaya-libre {};
|
||||||
|
google-fonts-aboreto = super.callPackage ./pkgs/aboreto {};
|
||||||
google-fonts-abril-fatface = super.callPackage ./pkgs/abril-fatface {};
|
google-fonts-abril-fatface = super.callPackage ./pkgs/abril-fatface {};
|
||||||
google-fonts-abyssinica-sil = super.callPackage ./pkgs/abyssinica-sil {};
|
google-fonts-abyssinica-sil = super.callPackage ./pkgs/abyssinica-sil {};
|
||||||
google-fonts-aclonica = super.callPackage ./pkgs/aclonica {};
|
google-fonts-aclonica = super.callPackage ./pkgs/aclonica {};
|
||||||
|
@ -443,6 +444,7 @@ self: super:
|
||||||
google-fonts-galdeano = super.callPackage ./pkgs/galdeano {};
|
google-fonts-galdeano = super.callPackage ./pkgs/galdeano {};
|
||||||
google-fonts-galindo = super.callPackage ./pkgs/galindo {};
|
google-fonts-galindo = super.callPackage ./pkgs/galindo {};
|
||||||
google-fonts-gamja-flower = super.callPackage ./pkgs/gamja-flower {};
|
google-fonts-gamja-flower = super.callPackage ./pkgs/gamja-flower {};
|
||||||
|
google-fonts-gantari = super.callPackage ./pkgs/gantari {};
|
||||||
google-fonts-gayathri = super.callPackage ./pkgs/gayathri {};
|
google-fonts-gayathri = super.callPackage ./pkgs/gayathri {};
|
||||||
google-fonts-gelasio = super.callPackage ./pkgs/gelasio {};
|
google-fonts-gelasio = super.callPackage ./pkgs/gelasio {};
|
||||||
google-fonts-gemunu-libre = super.callPackage ./pkgs/gemunu-libre {};
|
google-fonts-gemunu-libre = super.callPackage ./pkgs/gemunu-libre {};
|
||||||
|
@ -776,6 +778,7 @@ self: super:
|
||||||
google-fonts-miltonian = super.callPackage ./pkgs/miltonian {};
|
google-fonts-miltonian = super.callPackage ./pkgs/miltonian {};
|
||||||
google-fonts-miltonian-tattoo = super.callPackage ./pkgs/miltonian-tattoo {};
|
google-fonts-miltonian-tattoo = super.callPackage ./pkgs/miltonian-tattoo {};
|
||||||
google-fonts-mina = super.callPackage ./pkgs/mina {};
|
google-fonts-mina = super.callPackage ./pkgs/mina {};
|
||||||
|
google-fonts-mingzat = super.callPackage ./pkgs/mingzat {};
|
||||||
google-fonts-miniver = super.callPackage ./pkgs/miniver {};
|
google-fonts-miniver = super.callPackage ./pkgs/miniver {};
|
||||||
google-fonts-miriam-libre = super.callPackage ./pkgs/miriam-libre {};
|
google-fonts-miriam-libre = super.callPackage ./pkgs/miriam-libre {};
|
||||||
google-fonts-mirza = super.callPackage ./pkgs/mirza {};
|
google-fonts-mirza = super.callPackage ./pkgs/mirza {};
|
||||||
|
|
32
pkgs/aboreto/default.nix
Normal file
32
pkgs/aboreto/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib, stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "aboreto-${version}";
|
||||||
|
version = "2022-06-01-134329";
|
||||||
|
|
||||||
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
|
srcs = [
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://github.com/google/fonts/blob/cb1d70a463c113cb2c7e2b38a9faf169732a71ba/ofl/aboreto/Aboreto-Regular.ttf?raw=true";
|
||||||
|
name = "Aboreto-Regular.ttf";
|
||||||
|
sha256 = "b9458031bcba06d9b6053ad866c017e1bed673644ca7bd8660cbe0d0c900b8a6";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
for font in $srcs; do
|
||||||
|
cp "$font" "$(echo "$font" | cut -d- -f2-)"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm644 Aboreto-Regular.ttf $out/share/fonts/truetype/Aboreto-Regular.ttf
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Aboreto";
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "akshar-${version}";
|
name = "akshar-${version}";
|
||||||
version = "2022-05-23-195233";
|
version = "2022-06-01-135618";
|
||||||
|
|
||||||
phases = [ "unpackPhase" "installPhase" ];
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
srcs = [
|
srcs = [
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
url = "https://github.com/google/fonts/blob/6dac97888a4878f6f59db268c0f8a336e49a2890/ofl/akshar/Akshar%5Bwght%5D.ttf?raw=true";
|
url = "https://github.com/google/fonts/blob/ee638854e6c5599373f150c8858f33533554fbde/ofl/akshar/Akshar%5Bwght%5D.ttf?raw=true";
|
||||||
name = "Akshar_wght_.ttf";
|
name = "Akshar_wght_.ttf";
|
||||||
sha256 = "cff1ba32b91efffc94474fab787b61cd951f4ac99ce90339b1caa500fa72e890";
|
sha256 = "5288f970076f57f158dba767f44aec8f8e852920f1a3cc20a3268420ad9ec251";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -2,20 +2,20 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "familjen-grotesk-${version}";
|
name = "familjen-grotesk-${version}";
|
||||||
version = "2022-05-23-214203";
|
version = "2022-06-02-125518";
|
||||||
|
|
||||||
phases = [ "unpackPhase" "installPhase" ];
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
srcs = [
|
srcs = [
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
url = "https://github.com/google/fonts/blob/c5472db7405caf4c4a962843ab2d446519090161/ofl/familjengrotesk/FamiljenGrotesk%5Bwght%5D.ttf?raw=true";
|
url = "https://github.com/google/fonts/blob/917cad5aeb6953227b5b7740ad7fadf53210f55b/ofl/familjengrotesk/FamiljenGrotesk%5Bwght%5D.ttf?raw=true";
|
||||||
name = "FamiljenGrotesk_wght_.ttf";
|
name = "FamiljenGrotesk_wght_.ttf";
|
||||||
sha256 = "9bc27f9addaaf093bcd9685d9b2a7fa4903ffb2ca94f21cac79bb36d34c51038";
|
sha256 = "5300f02ffd415d435ea02983e710ae943340137418cb99a1672c2dd38fd84f53";
|
||||||
})
|
})
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
url = "https://github.com/google/fonts/blob/c5472db7405caf4c4a962843ab2d446519090161/ofl/familjengrotesk/FamiljenGrotesk-Italic%5Bwght%5D.ttf?raw=true";
|
url = "https://github.com/google/fonts/blob/917cad5aeb6953227b5b7740ad7fadf53210f55b/ofl/familjengrotesk/FamiljenGrotesk-Italic%5Bwght%5D.ttf?raw=true";
|
||||||
name = "FamiljenGrotesk-Italic_wght_.ttf";
|
name = "FamiljenGrotesk-Italic_wght_.ttf";
|
||||||
sha256 = "66ed991be0eba5601f4c2021fae41faf769e384c3c51ef976ce4ed16a2e8565f";
|
sha256 = "c3b1c16b5fe240662f823af51dbe7b3d5eff4308d3d2469c527a433bb2266efc";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -2,20 +2,20 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "finlandica-${version}";
|
name = "finlandica-${version}";
|
||||||
version = "2022-05-13-113603";
|
version = "2022-06-02-123207";
|
||||||
|
|
||||||
phases = [ "unpackPhase" "installPhase" ];
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
srcs = [
|
srcs = [
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
url = "https://github.com/google/fonts/blob/3be6b49def6a786e17b914834a9134569676cec2/ofl/finlandica/Finlandica%5Bwght%5D.ttf?raw=true";
|
url = "https://github.com/google/fonts/blob/4754c2d98fad2b17587f66972edb18aa3c0658d2/ofl/finlandica/Finlandica%5Bwght%5D.ttf?raw=true";
|
||||||
name = "Finlandica_wght_.ttf";
|
name = "Finlandica_wght_.ttf";
|
||||||
sha256 = "7cc975c9ada6f93a824a550b8c5b5b81bbd6e801e6f7ae00c874221d76267a42";
|
sha256 = "88d3eec4aa204695c0c1434e25e097a9746b2dbbd316f3154acbc9d1c9de003d";
|
||||||
})
|
})
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
url = "https://github.com/google/fonts/blob/3be6b49def6a786e17b914834a9134569676cec2/ofl/finlandica/Finlandica-Italic%5Bwght%5D.ttf?raw=true";
|
url = "https://github.com/google/fonts/blob/4754c2d98fad2b17587f66972edb18aa3c0658d2/ofl/finlandica/Finlandica-Italic%5Bwght%5D.ttf?raw=true";
|
||||||
name = "Finlandica-Italic_wght_.ttf";
|
name = "Finlandica-Italic_wght_.ttf";
|
||||||
sha256 = "e70ac3a18d169ad8424c5e80b68cd0ebdf5608b562044e3acdd2a101922c6e66";
|
sha256 = "7c431e56ea162ae263c6f2ed6653e1487a0030735822c7b9561f2fde6a2c15dc";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
38
pkgs/gantari/default.nix
Normal file
38
pkgs/gantari/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ lib, stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "gantari-${version}";
|
||||||
|
version = "2022-06-02-131111";
|
||||||
|
|
||||||
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
|
srcs = [
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://github.com/google/fonts/blob/b57c3acbd9e5389610b117ad35f791eb08057e2a/ofl/gantari/Gantari%5Bwght%5D.ttf?raw=true";
|
||||||
|
name = "Gantari_wght_.ttf";
|
||||||
|
sha256 = "16b83edd620efd401c7855ebb96694718c29f55f4198913dfad4791591796e71";
|
||||||
|
})
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://github.com/google/fonts/blob/b57c3acbd9e5389610b117ad35f791eb08057e2a/ofl/gantari/Gantari-Italic%5Bwght%5D.ttf?raw=true";
|
||||||
|
name = "Gantari-Italic_wght_.ttf";
|
||||||
|
sha256 = "968f9aa4c6a6f7ef4f6995533c9492367b4c7b5e8b4912db555473ecfda24e0f";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
for font in $srcs; do
|
||||||
|
cp "$font" "$(echo "$font" | cut -d- -f2-)"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm644 Gantari_wght_.ttf $out/share/fonts/truetype/Gantari_wght_.ttf
|
||||||
|
install -Dm644 Gantari-Italic_wght_.ttf $out/share/fonts/truetype/Gantari-Italic_wght_.ttf
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Gantari";
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
32
pkgs/mingzat/default.nix
Normal file
32
pkgs/mingzat/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib, stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "mingzat-${version}";
|
||||||
|
version = "2022-06-01-140151";
|
||||||
|
|
||||||
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
|
srcs = [
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://github.com/google/fonts/blob/5c2d328a5e26531d7f7b4a0b75ecf6165f32ba43/ofl/mingzat/Mingzat-Regular.ttf?raw=true";
|
||||||
|
name = "Mingzat-Regular.ttf";
|
||||||
|
sha256 = "63b8c9ea9ceb9953a6aeaf94e70be3d534c93070247c945512c1e782dace961a";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
for font in $srcs; do
|
||||||
|
cp "$font" "$(echo "$font" | cut -d- -f2-)"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm644 Mingzat-Regular.ttf $out/share/fonts/truetype/Mingzat-Regular.ttf
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Mingzat";
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pushster-${version}";
|
name = "pushster-${version}";
|
||||||
version = "2022-05-25-201243";
|
version = "2022-06-03-005842";
|
||||||
|
|
||||||
phases = [ "unpackPhase" "installPhase" ];
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue