fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / se / seshat / package.nix
blobaaaedde2ee006e87e189f4455eb5ed21436b5d11
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 let
8   majorVersion = "0";
9   minorVersion = "100";
11 stdenvNoCC.mkDerivation {
12   pname = "seshat";
13   version = "${majorVersion}.${minorVersion}";
15   src = fetchzip {
16     url = "https://dotcolon.net/download/fonts/seshat_${majorVersion}${minorVersion}.zip";
17     hash = "sha256-XgprDhzAbcTzZw2QOwpCnzusYheYmSlM+ApU+Y0wO2Q=";
18     stripRoot = false;
19   };
21   installPhase = ''
22     runHook preInstall
24     install -D -m444 -t $out/share/fonts/opentype $src/*.otf
26     runHook postInstall
27   '';
29   meta = with lib; {
30     homepage = "http://dotcolon.net/font/seshat/";
31     description = "Roman body font designed for main text by Sora Sagano";
32     longDescription = ''
33       Seshat is a Roman body font designed for the main text. By
34       referring to the classical balance, we changed some lines by
35       omitting part of the lines such as "A" and "n".
37       Also, by attaching the strength of the thickness like Optima
38       to the main drawing, it makes it more sharp design.
40       It incorporates symbols and ligatures used in the European region.
41     '';
42     platforms = platforms.all;
43     maintainers = with maintainers; [
44       leenaars
45       minijackson
46     ];
47     license = licenses.cc0;
48   };