mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #6978 from henrytill/mplus-outline-fonts
add mplus-outline-fonts
This commit is contained in:
commit
9ec9e01958
2 changed files with 28 additions and 0 deletions
26
pkgs/data/fonts/mplus-outline-fonts/default.nix
Normal file
26
pkgs/data/fonts/mplus-outline-fonts/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue