about summary refs log tree commit diff
path: root/pkgs/by-name/ty/typodermic-public-domain/package.nix
blob: fdbdfc0c1e6ecc968c3d1da6b72d2fae21fa51ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenvNoCC, fetchzip }:

stdenvNoCC.mkDerivation {
  pname = "typodermic-public-domain";
  version = "2022-11";

  src = fetchzip {
    url =
      "https://typodermicfonts.com/wp-content/uploads/2022/11/typodermic-public-domain-2022-11.zip";
    hash = "sha256-2hqpehQ4zxSvsw2dtom/fkMAayJKNvOdYs+c+rrvJKw=";
    curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; # unbreak their wordpress
    stripRoot = false;
  };

  dontUnpack = true;

  installPhase = ''
    runHook preInstall
    mkdir -p $out/share/fonts
    cp -a "$src/OpenType Fonts" "$out/share/fonts/opentype"
    runHook postInstall
  '';

  meta = {
    homepage = "https://typodermicfonts.com/";
    description = "Vintage Typodermic fonts";
    maintainers = with lib.maintainers; [ ehmry ];
    license = lib.licenses.cc0;
  };
}