stix-two: init at 2.0.0
This commit is contained in:
parent
2f8aaf0c0a
commit
b87be6e8ec
28
pkgs/data/fonts/stix-two/default.nix
Normal file
28
pkgs/data/fonts/stix-two/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "stix-two-${version}";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/stixfonts/Current%20Release/STIXv${version}.zip";
|
||||
sha256 = "0f6rcg0p2dhnks523nywgkjk56bjajz3gnwsrap932674xxjkb3g";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/opentype
|
||||
cp -v "Fonts/OTF/"*.otf $out/share/fonts/opentype
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.stixfonts.org/;
|
||||
description = "Fonts for Scientific and Technical Information eXchange";
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.rycee ];
|
||||
};
|
||||
}
|
@ -12335,6 +12335,8 @@ with pkgs;
|
||||
|
||||
stix-otf = callPackage ../data/fonts/stix-otf { };
|
||||
|
||||
stix-two = callPackage ../data/fonts/stix-two { };
|
||||
|
||||
inherit (callPackages ../data/fonts/gdouros { })
|
||||
symbola aegyptus akkadian anatolian maya unidings musica analecta;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user