From 42cb24cec2364795a443679847a00b11f3453d7a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 19 Dec 2020 04:20:00 +0000 Subject: [PATCH] stix-two: 2.0.2 -> 2.10 PR #107235 --- pkgs/data/fonts/stix-two/default.nix | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/pkgs/data/fonts/stix-two/default.nix b/pkgs/data/fonts/stix-two/default.nix index e6e4009020a..1e32ebbf16a 100644 --- a/pkgs/data/fonts/stix-two/default.nix +++ b/pkgs/data/fonts/stix-two/default.nix @@ -1,25 +1,22 @@ -{ stdenv, fetchFromGitHub }: - +{ lib, fetchzip }: let - version = "2.0.2"; -in fetchFromGitHub { + version = "2.10"; +in +fetchzip { name = "stix-two-${version}"; - owner = "stipub"; - repo = "stixfonts"; - rev = "v${version}"; + url = "https://github.com/stipub/stixfonts/raw/v${version}/zipfiles/STIX${builtins.replaceStrings [ "." ] [ "_" ] version}-all.zip"; + + sha256 = "1xvh5c5asbasfa333mizimvdp209g0lppbwv2p0cg3ixfpxgq4dl"; postFetch = '' - tar xf $downloadedFile --strip=1 - install -m444 -Dt $out/share/fonts/opentype/ OTF/*.otf - install -m444 -Dt $out/share/fonts/woff/ WOFF/*.woff - install -m444 -Dt $out/share/fonts/woff2/ WOFF2/*.woff2 + mkdir -p $out/share/fonts/ + unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype + unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype ''; - sha256 = "1ah8s0cb67yv4ll8zfs01mdh9m5i2lbkrfbmkhi1xdid6pxsk32x"; - - meta = with stdenv.lib; { - homepage = "http://www.stixfonts.org/"; + meta = with lib; { + homepage = "https://www.stixfonts.org/"; description = "Fonts for Scientific and Technical Information eXchange"; license = licenses.ofl; platforms = platforms.all;