···4 majorVersion = "0";
5 minorVersion = "100";
6in
7-stdenvNoCC.mkDerivation (self: {
8 pname = "seshat";
9 version = "${majorVersion}.${minorVersion}";
1011 src = fetchzip {
12- url = "https://dotcolon.net/download/fonts/${self.pname}_${majorVersion}${minorVersion}.zip";
13 hash = "sha256-XgprDhzAbcTzZw2QOwpCnzusYheYmSlM+ApU+Y0wO2Q=";
14 stripRoot = false;
15 };
···23 '';
2425 meta = with lib; {
26- homepage = "http://dotcolon.net/font/${self.pname}/";
27 description = "Roman body font designed for main text by Sora Sagano";
28 longDescription = ''
29 Seshat is a Roman body font designed for the main text. By
···4 majorVersion = "0";
5 minorVersion = "100";
6in
7+stdenvNoCC.mkDerivation (finalAttrs: {
8 pname = "seshat";
9 version = "${majorVersion}.${minorVersion}";
1011 src = fetchzip {
12+ url = "https://dotcolon.net/download/fonts/${finalAttrs.pname}_${majorVersion}${minorVersion}.zip";
13 hash = "sha256-XgprDhzAbcTzZw2QOwpCnzusYheYmSlM+ApU+Y0wO2Q=";
14 stripRoot = false;
15 };
···23 '';
2425 meta = with lib; {
26+ homepage = "http://dotcolon.net/font/${finalAttrs.pname}/";
27 description = "Roman body font designed for main text by Sora Sagano";
28 longDescription = ''
29 Seshat is a Roman body font designed for the main text. By
···32 platforms = platforms.all;
33 # never built on aarch64-darwin since first introduction in nixpkgs
34 broken = stdenv.isDarwin && stdenv.isAarch64;
00035 };
3637}
···32 platforms = platforms.all;
33 # never built on aarch64-darwin since first introduction in nixpkgs
34 broken = stdenv.isDarwin && stdenv.isAarch64;
35+ knownVulnerabilities = [
36+ "CVE-2023-29552: UDP Reflection Attack with ampliciation factor of up to 2200"
37+ ];
38 };
3940}