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