summaryrefslogtreecommitdiffstats
path: root/pkgs/data/fonts/font-awesome
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/fonts/font-awesome')
-rw-r--r--pkgs/data/fonts/font-awesome/default.nix67
1 files changed, 40 insertions, 27 deletions
diff --git a/pkgs/data/fonts/font-awesome/default.nix b/pkgs/data/fonts/font-awesome/default.nix
index 8705a07d2593..f0622f56cd95 100644
--- a/pkgs/data/fonts/font-awesome/default.nix
+++ b/pkgs/data/fonts/font-awesome/default.nix
@@ -1,35 +1,48 @@
-{ lib, stdenvNoCC, fetchFromGitHub }:
+{
+ lib,
+ stdenvNoCC,
+ fetchFromGitHub,
+}:
let
- font-awesome = { version, hash, rev ? version }: stdenvNoCC.mkDerivation {
- pname = "font-awesome";
- inherit version;
-
- src = fetchFromGitHub {
- owner = "FortAwesome";
- repo = "Font-Awesome";
- inherit rev hash;
- };
+ font-awesome =
+ {
+ version,
+ hash,
+ rev ? version,
+ }:
+ stdenvNoCC.mkDerivation {
+ pname = "font-awesome";
+ inherit version;
- installPhase = ''
- runHook preInstall
+ src = fetchFromGitHub {
+ owner = "FortAwesome";
+ repo = "Font-Awesome";
+ inherit rev hash;
+ };
- install -m444 -Dt $out/share/fonts/opentype {fonts,otfs}/*.otf
+ installPhase = ''
+ runHook preInstall
- runHook postInstall
- '';
+ install -m444 -Dt $out/share/fonts/opentype {fonts,otfs}/*.otf
- meta = with lib; {
- description = "Font Awesome - OTF font";
- longDescription = ''
- Font Awesome gives you scalable vector icons that can instantly be customized.
- This package includes only the OTF font. For full CSS etc. see the project website.
+ runHook postInstall
'';
- homepage = "https://fontawesome.com/";
- license = licenses.ofl;
- platforms = platforms.all;
- maintainers = with maintainers; [ abaldeau johnazoidberg ];
+
+ meta = with lib; {
+ description = "Font Awesome - OTF font";
+ longDescription = ''
+ Font Awesome gives you scalable vector icons that can instantly be customized.
+ This package includes only the OTF font. For full CSS etc. see the project website.
+ '';
+ homepage = "https://fontawesome.com/";
+ license = licenses.ofl;
+ platforms = platforms.all;
+ maintainers = with maintainers; [
+ abaldeau
+ johnazoidberg
+ ];
+ };
};
- };
in
{
# Keeping version 4 and 5 because version 6 is incompatible for some icons. That
@@ -48,7 +61,7 @@ in
hash = "sha256-gd23ZplNY56sm1lfkU3kPXUOmNmY5SRnT0qlQZRNuBo=";
};
v6 = font-awesome {
- version = "6.5.2";
- hash = "sha256-kUa/L/Krxb5v8SmtACCSC6CI3qTTOTr4Ss/FMRBlKuw=";
+ version = "6.6.0";
+ hash = "sha256-tQ9Hxph5YiPZMiO9gs2HCkRJ8cdECa2swgS++cytEnM=";
};
}