nixpkgs/pkgs/data/fonts/mplus-outline-fonts/default.nix

27 lines
699 B
Nix
Raw Normal View History

2015-03-25 16:53:26 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mplus-${version}";
version = "062";
2015-03-25 16:53:26 +00:00
src = fetchurl {
2016-09-29 12:52:16 +01:00
url = "mirror://sourceforgejp/mplus-fonts/62344/mplus-TESTFLIGHT-${version}.tar.xz";
sha256 = "1f44vmnma5njhfiz351gwblxmdh9njv486864zrxqaa1h5pvdhha";
2015-03-25 16:53:26 +00:00
};
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;
};
}