Skip to content

Commit

Permalink
recursive: 1.052 -> 1.054
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam committed Aug 3, 2020
1 parent 2d6c269 commit 1b99e2f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/data/fonts/recursive/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{ lib, fetchzip }:

let
version = "1.052";
version = "1.054";
in
fetchzip {
name = "recursive-${version}";

url = "https://github.com/arrowtype/recursive/releases/download/${version}/Recursive-Beta_${version}.zip";
url = "https://github.com/arrowtype/recursive/releases/download/${version}/ArrowType-Recursive-${version}.zip";

postFetch = ''
mkdir -p $out/share/fonts/
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
unzip -j $downloadedFile \*.woff2 -d $out/share/fonts/woff2
unzip -j $downloadedFile \*.otf -x __MACOSX/\* -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.ttf -x __MACOSX/\* -d $out/share/fonts/truetype
unzip -j $downloadedFile \*.woff2 -x __MACOSX/\* -d $out/share/fonts/woff2
'';

sha256 = "1kam7wcn0rg89gw52pn174sz0r9lc2kjdz88l0jg20gwa3bjbpc6";
sha256 = "12ld0w7x5lyvymrnqzfj74a3m6knv7i1795bvnpyljmxxkacscnl";

meta = with lib; {
homepage = "https://recursive.design/";
Expand Down

0 comments on commit 1b99e2f

Please sign in to comment.