summary refs log tree commit diff
path: root/pkgs/data/fonts/mph-2b-damase/default.nix
blob: 5729561c5809a270558c67d20276675bde0858b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchzip}:

fetchzip {
  name = "MPH-2B-Damase";

  url = http://www.wazu.jp/downloads/damase_v.2.zip;

  postFetch = ''
    mkdir -p $out/share/fonts
    unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
  '';

  sha256 = "0yzf12z6fpbgycqwiz88f39iawdhjabadfa14wxar3nhl9n434ql";

  meta = {
    platforms = stdenv.lib.platforms.unix;
  };
}