mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
chunk: init at 2021-03-03
This commit is contained in:
parent
0d0a4e622c
commit
7475221525
38
pkgs/data/fonts/chunk/default.nix
Normal file
38
pkgs/data/fonts/chunk/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib, fetchFromGitHub, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation (self: {
|
||||
pname = "chunk";
|
||||
version = "2021-03-03";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "theleagueof";
|
||||
repo = self.pname;
|
||||
rev = "12a243f3fb7c7a68844901023f7d95d6eaf14104";
|
||||
hash = "sha256-NMkRvrUgy9yzOT3a1rN6Ch/p8Cr902CwL4G0w7jVm1E=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
|
||||
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "An ultra-bold, ultra-awesome slab serif typeface";
|
||||
longDescription = ''
|
||||
Chunk is an ultra-bold slab serif typeface that is reminiscent of old
|
||||
American Western woodcuts, broadsides, and newspaper headlines. Used
|
||||
mainly for display, the fat block lettering is unreserved yet refined for
|
||||
contemporary use.
|
||||
|
||||
In 2014, a new textured style was created by Tyler Finck called Chunk
|
||||
Five Print. It contains the same glyphs as the original.
|
||||
'';
|
||||
homepage = "https://www.theleagueofmoveabletype.com/chunk";
|
||||
license = lib.licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ minijackson ];
|
||||
};
|
||||
})
|
@ -26918,6 +26918,8 @@ with pkgs;
|
||||
|
||||
chonburi-font = callPackage ../data/fonts/chonburi { };
|
||||
|
||||
chunk = callPackage ../data/fonts/chunk { };
|
||||
|
||||
cldr-annotations = callPackage ../data/misc/cldr-annotations { };
|
||||
|
||||
clearlooks-phenix = callPackage ../data/themes/clearlooks-phenix { };
|
||||
|
Loading…
Reference in New Issue
Block a user