typodermic-public-domain: 2022-11 -> 2024-04

This commit is contained in:
Emery Hemingway 2024-07-31 09:42:48 +01:00
parent dee3e956ac
commit e7d978fba3

View File

@ -1,14 +1,20 @@
{ lib, stdenvNoCC, fetchzip }: {
lib,
stdenvNoCC,
fetchzip,
}:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "typodermic-public-domain"; pname = "typodermic-public-domain";
version = "2022-11"; version = "2024-04";
src = fetchzip { src = fetchzip {
url = url = "https://typodermicfonts.com/wp-content/uploads/2024/04/typodermic-public-domain-2024-04.zip";
"https://typodermicfonts.com/wp-content/uploads/2022/11/typodermic-public-domain-2022-11.zip"; hash = "sha256-grAAU/yL/Q1EyZtrvcgrB6bcXMZoNs7suVYaKibqBOE=";
hash = "sha256-2hqpehQ4zxSvsw2dtom/fkMAayJKNvOdYs+c+rrvJKw="; curlOptsList = [
curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; # unbreak their wordpress "--user-agent"
"Mozilla/5.0"
]; # unbreak their wordpress
stripRoot = false; stripRoot = false;
}; };
@ -26,5 +32,6 @@ stdenvNoCC.mkDerivation {
description = "Vintage Typodermic fonts"; description = "Vintage Typodermic fonts";
maintainers = with lib.maintainers; [ ehmry ]; maintainers = with lib.maintainers; [ ehmry ];
license = lib.licenses.cc0; license = lib.licenses.cc0;
platforms = lib.platforms.all;
}; };
} }