chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ty / typodermic-public-domain / package.nix
blob201dd0a64a75048e65f2b1717a598881922f7d99
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "typodermic-public-domain";
9   version = "2024-04";
11   src = fetchzip {
12     url = "https://typodermicfonts.com/wp-content/uploads/2024/04/typodermic-public-domain-2024-04.zip";
13     hash = "sha256-grAAU/yL/Q1EyZtrvcgrB6bcXMZoNs7suVYaKibqBOE=";
14     curlOptsList = [
15       "--user-agent"
16       "Mozilla/5.0"
17     ]; # unbreak their wordpress
18     stripRoot = false;
19   };
21   dontUnpack = true;
23   installPhase = ''
24     runHook preInstall
25     mkdir -p $out/share/fonts
26     cp -a "$src/OpenType Fonts" "$out/share/fonts/opentype"
27     runHook postInstall
28   '';
30   meta = {
31     homepage = "https://typodermicfonts.com/";
32     description = "Vintage Typodermic fonts";
33     maintainers = with lib.maintainers; [ ehmry ];
34     license = lib.licenses.cc0;
35     platforms = lib.platforms.all;
36   };