nixpkgs/pkgs/data/fonts/ubuntu-font-family/default.nix

27 lines
804 B
Nix
Raw Permalink Normal View History

{ lib, fetchzip }:
2012-06-22 22:55:47 +00:00
2019-08-13 21:52:01 +00:00
fetchzip {
name = "ubuntu-font-family-0.83";
2012-06-22 22:55:47 +00:00
url = "https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.83.zip";
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/ubuntu
'';
2012-06-22 22:55:47 +00:00
sha256 = "090y665h4kf2bi623532l6wiwkwnpd0xds0jr7560xwfwys1hiqh";
2012-06-22 22:55:47 +00:00
meta = {
description = "Ubuntu Font Family";
longDescription = "The Ubuntu typeface has been specially
created to complement the Ubuntu tone of voice. It has a
contemporary style and contains characteristics unique to
the Ubuntu brand that convey a precise, reliable and free attitude.";
homepage = "http://font.ubuntu.com/";
license = lib.licenses.free;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.antono ];
2012-06-22 22:55:47 +00:00
};
}