fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / an / andagii / package.nix
blob3900d74f98b474c21e1fa591c4cb659c5863233b
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "andagii";
9   version = "1.0.2";
11   src = fetchzip {
12     url = "http://www.i18nguy.com/unicode/andagii.zip";
13     curlOpts = "--user-agent 'Mozilla/5.0'";
14     hash = "sha256-U7wC55G8jIvMMyPcEiJQ700A7nkWdgWK1LM0F/wgDCg=";
15   };
17   installPhase = ''
18     runHook preInstall
20     mkdir -p $out/share/fonts/truetype
21     cp -v ANDAGII_.TTF $out/share/fonts/truetype/andagii.ttf
23     runHook postInstall
24   '';
26   # There are multiple claims that the font is GPL, so I include the
27   # package; but I cannot find the original source, so use it on your
28   # own risk Debian claims it is GPL - good enough for me.
29   meta = with lib; {
30     homepage = "http://www.i18nguy.com/unicode/unicode-font.html";
31     description = "Unicode Plane 1 Osmanya script font";
32     maintainers = with maintainers; [ raskin ];
33     license = "unknown";
34     platforms = platforms.all;
35   };