1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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 {
pname = "typodermic-public-domain";
version = "2022-11";
version = "2024-04";
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
url = "https://typodermicfonts.com/wp-content/uploads/2024/04/typodermic-public-domain-2024-04.zip";
hash = "sha256-grAAU/yL/Q1EyZtrvcgrB6bcXMZoNs7suVYaKibqBOE=";
curlOptsList = [
"--user-agent"
"Mozilla/5.0"
]; # unbreak their wordpress
stripRoot = false;
};
@ -26,5 +32,6 @@ stdenvNoCC.mkDerivation {
description = "Vintage Typodermic fonts";
maintainers = with lib.maintainers; [ ehmry ];
license = lib.licenses.cc0;
platforms = lib.platforms.all;
};
}