silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / ya / yasashisa-gothic / package.nix
blob20a629707f8dde334e73f58980047270ffff3d4f
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , unzrip
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "yasashisa-gothic";
9   version = "0-unstable-2014-03-13";
11   src = fetchurl {
12     url = "http://flop.sakura.ne.jp/font/fontna-op/07Yasashisa.zip";
13     hash = "sha256-JmsRvUak9FBjDw8wNA2R3lEt52/UpElleziQqa5Pm4w=";
14   };
16   unpackPhase = ''
17     runHook preUnpack
19     ${lib.getExe unzrip} -O SHIFT_JIS "$src"
21     runHook postUnpack
22   '';
24   installPhase = ''
25     runHook preInstall
27     install -Dm444 "07Yasashisa/07やさしさゴシック.ttf" -t "$out/share/fonts/truetype"
28     install -Dm444 "07Yasashisa/その他-サポート外/OpenType/YasashisaGothic.otf" -t "$out/share/fonts/opentype"
30     runHook postInstall
31   '';
33   meta = with lib; {
34     description = "Free gothic style font by Fontna";
35     homepage = "http://www.fontna.com/blog/379/";
36     license = with licenses; [ ipa mplus ];
37     platforms = platforms.all;
38     maintainers = with maintainers; [ h7x4 ];
39   };