Unverified Commit 765883fb authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #250276 from 21eleven/add-font-azeret-mono

azeret-mono: init at 1.0
parents d816b5ab edaa77dd
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -132,6 +132,12 @@
    github = "13r0ck";
    githubId = 58987761;
  };
  _21eleven = {
    name = "Noah Lidell";
    email = "noahlidell@gmail.com";
    github = "21eleven";
    githubId = 8813855;
  };
  _2gn = {
    name = "Hiram Tanner";
    github = "2gn";
+39 −0
Original line number Diff line number Diff line
{ lib, stdenvNoCC, fetchFromGitHub }:

stdenvNoCC.mkDerivation {
  pname = "azeret-mono";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "displaay";
    repo = "Azeret";
    rev = "3d45a6c3e094f08bfc70551b525bd2037cac51ba";
    hash = "sha256-WC5a2O+/hdX+lLz81obcmq64wYpX48ZxsYPEaZUbFaY=";
  };

  installPhase = ''
    runHook preInstall

    install -Dm644 fonts/ttf/*.ttf -t $out/share/fonts/truetype

    runHook postInstall
  '';

  meta = with lib; {
    description = "Azeret Mono";
    longDescription = ''
      The story of the typeface began with a draft that was driven by an exploration of OCR fonts, past and futuristic operating systems, various interfaces and the nineties. The final result is more based on a desire to achieve an appearance of the typeface that could serve in operating systems. Thus the overall character is a conjunction of everything described with details that evoke a specific personality.

      Azeret is a sans-serif typeface with a mono-linear character. Don’t go looking for too much contrast in the strokes! The circular parts of the letters do not have a smooth connection to the stems. The x-height is higher than usual and thus the ascenders and descenders are short. Alternates are also available which open the possibility of creating different moods. A number of them hint at a nineties aesthetic.

      The monospaced sub-family is available for free and is also on Google Fonts. If you would like to explore Azeret more you can do it on our micro-site which we developed with Martin Ehrlich.

      Designer: Martin Vácha, Daniel Quisek
      Production: Renegade Fonts (Jan Charvát, Zuzana Konečná)
    '';
    homepage = "https://displaay.net/typeface/azeret/azeret-mono/";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = with maintainers; [ _21eleven ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3355,6 +3355,8 @@ with pkgs;
  iam-policy-json-to-terraform = callPackage ../tools/misc/iam-policy-json-to-terraform { };
  azeret-mono = callPackage ../data/fonts/azeret-mono { };
  azure-cli = callPackage ../tools/admin/azure-cli { };
  azure-functions-core-tools = callPackage ../development/tools/azure-functions-core-tools { };