
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
53 lines
1.6 KiB
Nix
53 lines
1.6 KiB
Nix
{
|
||
lib,
|
||
stdenvNoCC,
|
||
fetchFromGitHub,
|
||
}:
|
||
|
||
stdenvNoCC.mkDerivation rec {
|
||
pname = "b612";
|
||
version = "1.008";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "polarsys";
|
||
repo = "b612";
|
||
rev = version;
|
||
hash = "sha256-uyBC8UNOwztCHXhR9XZuWDwrty0eClbo0E+gI1PmjEg=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
mkdir -p $out/share/fonts/truetype
|
||
mv fonts/ttf/*.ttf $out/share/fonts/truetype
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
homepage = "https://b612-font.com/";
|
||
description = "Highly legible font family for use on aircraft cockpit screens";
|
||
longDescription = ''
|
||
B612 is the result of a research project initiated by Airbus. The font
|
||
was designed by Nicolas Chauveau and Thomas Paillot (intactile DESIGN) with the
|
||
support of Jean‑Luc Vinot (ENAC). Prior research by Jean‑Luc Vinot (DGAC/DSNA)
|
||
and Sylvie Athènes (Université de Toulouse III). The challenge for the
|
||
"Aeronautical Font" was to improve the display of information on the cockpit
|
||
screens, in particular in terms of legibility and comfort of reading, and to
|
||
optimize the overall homogeneity of the cockpit.
|
||
|
||
Intactile DESIGN was hired to work on the design of eight typographic
|
||
variants of the font. This one, baptized B612 in reference to the
|
||
imaginary asteroid of the aviator Saint‑Exupéry, benefited from a complete
|
||
hinting on all the characters.
|
||
'';
|
||
license = with licenses; [
|
||
ofl
|
||
epl10
|
||
bsd3
|
||
];
|
||
maintainers = with maintainers; [ leenaars ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|