nixpkgs/pkgs/data/fonts/cooper-hewitt/default.nix

25 lines
825 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2018-12-31 00:00:00 +00:00
fetchzip rec {
pname = "cooper-hewitt";
version = "unstable-2014-06-09";
2018-12-31 00:00:00 +00:00
url = "https://web.archive.org/web/20221004145117/https://www.cooperhewitt.org/wp-content/uploads/fonts/CooperHewitt-OTF-public.zip";
2018-12-31 00:00:00 +00:00
postFetch = ''
mkdir -p $out/share/fonts/opentype
mv $out/*.otf $out/share/fonts/opentype
find $out -maxdepth 1 ! -type d -exec rm {} +
2022-09-29 20:44:08 +00:00
'';
2018-12-31 00:00:00 +00:00
sha256 = "01iwqmjvqkc6fmc2r0486vk06s6f51n9wxzl1pf9z48n0igj4gqd";
meta = with lib; {
homepage = "https://www.cooperhewitt.org/open-source-at-cooper-hewitt/cooper-hewitt-the-typeface-by-chester-jenkins/";
2018-12-31 00:00:00 +00:00
description = "A contemporary sans serif, with characters composed of modified-geometric curves and arches";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}