forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / data / fonts / ankacoder / default.nix
blob12a953f72dcab6fbae0c468bded0e379db028103
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "ankacoder";
5   version = "1.100";
7   src = fetchzip {
8     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/anka-coder-fonts/AnkaCoder.${version}.zip";
9     stripRoot = false;
10     hash = "sha256-14ItaSQ/fO/WDq0O4SXGWnZgiM0kayJrWQgsKb7bsyY=";
11   };
13   installPhase = ''
14     runHook preInstall
16     mkdir -p $out/share/fonts/truetype
17     cp *.ttf $out/share/fonts/truetype
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Anka/Coder fonts";
24     homepage = "https://code.google.com/archive/p/anka-coder-fonts";
25     license = licenses.ofl;
26     maintainers = [ ];
27     platforms = platforms.all;
28   };