Skip to content

Commit

Permalink
Merge pull request NixOS#10300 from rycee/bump/fira
Browse files Browse the repository at this point in the history
Updates fonts "fira" and "fira-mono"
  • Loading branch information
ttuegel committed Oct 11, 2015
2 parents 22d0503 + fd072ec commit 8fbe500
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pkgs/data/fonts/fira-mono/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
name = "fira-mono-3.205";
name = "fira-mono-3.206";

src = fetchurl {
url = http://www.carrois.com/downloads/fira_mono_3_2/FiraMonoFonts3205.zip;
sha256 = "0zd4wy8ksbz0qiiqgl9w7zyh34q8n983dyb44g5dfdcjakj09qlz";
url = http://www.carrois.com/downloads/fira_mono_3_2/FiraMonoFonts3206.zip;
sha256 = "1z65x0dw5dq6rs6p9wyfrir50rlh95vgzsxr8jcd40nqazw4jhpi";
};

buildInputs = [ unzip ];
phases = [ "unpackPhase" "installPhase" ];
sourceRoot = "FiraMonoFonts3205";
sourceRoot = "FiraMonoFonts3206";

installPhase = ''
mkdir -p $out/share/fonts/opentype
Expand Down
8 changes: 4 additions & 4 deletions pkgs/data/fonts/fira/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
name = "fira-4.105";
name = "fira-4.106";

src = fetchurl {
url = http://www.carrois.com/downloads/fira_4_1/FiraFonts4105.zip;
sha256 = "1857kpn7p7fc1xsmqx9589hk396ggwzd167yc3dmn1mh5dixibfz";
url = http://www.carrois.com/downloads/fira_4_1/FiraFonts4106.zip;
sha256 = "123xwd7abb96lsla1v579vfpvc7fwixhq78221qxrw4dv8mgf8id";
};

buildInputs = [unzip];
phases = [ "unpackPhase" "installPhase" ];
sourceRoot = "FiraFonts4105";
sourceRoot = "FiraFonts4106";

installPhase = ''
mkdir -p $out/share/fonts/opentype
Expand Down

0 comments on commit 8fbe500

Please sign in to comment.