Merge pull request #6978 from henrytill/mplus-outline-fonts

add mplus-outline-fonts
This commit is contained in:
William A. Kennington III 2015-03-25 22:10:16 -07:00
commit 9ec9e01958
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mplus-${version}";
version = "TESTFLIGHT-059";
src = fetchurl {
url = "mirror://sourceforgejp/mplus-fonts/62344/mplus-TESTFLIGHT-059.tar.xz";
sha256 = "09dzdgqqflpijd3c30m38cyidshawfp4nz162xhn91j9w09y2qkq";
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
meta = with stdenv.lib; {
description = "M+ Outline Fonts";
homepage = http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/index-en.html;
license = licenses.mit;
maintainers = with maintainers; [ henrytill ];
platforms = platforms.all;
};
}

View file

@ -9683,6 +9683,8 @@ let
mph_2b_damase = callPackage ../data/fonts/mph-2b-damase { };
mplus-outline-fonts = callPackage ../data/fonts/mplus-outline-fonts { };
nafees = callPackage ../data/fonts/nafees { };
numix-icon-theme = callPackage ../data/icons/numix-icon-theme { };