easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libre-baskerville / package.nix
blob848c2c009f05023edd30d62a950aa3a48d506d15
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "libre-baskerville";
9   version = "1.000";
11   src = fetchFromGitHub {
12     owner = "impallari";
13     repo = "Libre-Baskerville";
14     rev = "2fba7c8e0a8f53f86efd3d81bc4c63674b0c613f";
15     hash = "sha256-1EXi1hxFpc7pFsLbEj1xs9LqjeIf3XBol/8HdKNROUU=";
16   };
18   installPhase = ''
19     runHook preInstall
21     install -m444 -Dt $out/share/fonts/truetype *.ttf
22     install -m444 -Dt $out/share/doc/${pname}-${version} README.md FONTLOG.txt
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Webfont family optimized for body text";
29     longDescription = ''
30       Libre Baskerville is a webfont family optimized for body text. It's Based
31       on 1941 ATF Baskerville Specimens but it has a taller x-height, wider
32       counters and less contrast that allow it to work on small sizes in any
33       screen.
34     '';
35     homepage = "http://www.impallari.com/projects/overview/libre-baskerville";
36     license = licenses.ofl;
37     maintainers = with maintainers; [ cmfwyp ];
38     platforms = platforms.all;
39   };