evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / se / seshat / package.nix
bloba04bb1feb6f5f4ea764460f6bf069521913353a7
1 { lib, stdenvNoCC, fetchzip }:
3 let
4   majorVersion = "0";
5   minorVersion = "100";
6 in
7 stdenvNoCC.mkDerivation {
8   pname = "seshat";
9   version = "${majorVersion}.${minorVersion}";
11   src = fetchzip {
12     url = "https://dotcolon.net/download/fonts/seshat_${majorVersion}${minorVersion}.zip";
13     hash = "sha256-XgprDhzAbcTzZw2QOwpCnzusYheYmSlM+ApU+Y0wO2Q=";
14     stripRoot = false;
15   };
17   installPhase = ''
18     runHook preInstall
20     install -D -m444 -t $out/share/fonts/opentype $src/*.otf
22     runHook postInstall
23   '';
25   meta = with lib; {
26     homepage = "http://dotcolon.net/font/seshat/";
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
30       referring to the classical balance, we changed some lines by
31       omitting part of the lines such as "A" and "n".
33       Also, by attaching the strength of the thickness like Optima
34       to the main drawing, it makes it more sharp design.
36       It incorporates symbols and ligatures used in the European region.
37     '';
38     platforms = platforms.all;
39     maintainers = with maintainers; [ leenaars minijackson ];
40     license = licenses.cc0;
41   };