Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

b612: init at 2019-01-21 #54431

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions pkgs/data/fonts/b612/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation {
name = "b612-font-2019-01-21";

src = fetchgit {
url = "git://git.polarsys.org/gitroot/b612/b612.git";
rev = "bd14fde2544566e620eab106eb8d6f2b7fb1347e";
sha256 = "1w1w9za599w3asmdkhng9amb9w0riq6mg400p43w1qnj0zqazy3d";
};

buildPhase = ":";

installPhase = ''
mkdir -p $out/share/fonts
cp ./TTF/*.ttf $out/share/fonts
'';

meta = {
description = "a highly legible open source font family designed and tested to be used on aircraft cockpit screens";
homepage = "http://b612-font.com/";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.epl10;
maintainers = [ stdenv.lib.maintainers.grahamc ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15395,6 +15395,8 @@ in

aurulent-sans = callPackage ../data/fonts/aurulent-sans { };

b612 = callPackage ../data/fonts/b612 { };

babelstone-han = callPackage ../data/fonts/babelstone-han { };

baekmuk-ttf = callPackage ../data/fonts/baekmuk-ttf { };
Expand Down