2019-05-13 01:55:32 +00:00
|
|
|
{ lib, fetchzip }:
|
2012-06-22 22:55:47 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
fetchzip {
|
2015-10-25 18:11:53 +00:00
|
|
|
name = "ubuntu-font-family-0.83";
|
2012-06-22 22:55:47 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
url = "https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.83.zip";
|
2017-08-11 04:03:56 +00:00
|
|
|
|
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts
|
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/ubuntu
|
|
|
|
'';
|
2012-06-22 22:55:47 +00:00
|
|
|
|
2017-08-11 04:03:56 +00:00
|
|
|
sha256 = "090y665h4kf2bi623532l6wiwkwnpd0xds0jr7560xwfwys1hiqh";
|
2012-06-22 22:55:47 +00:00
|
|
|
|
|
|
|
meta = {
|
2012-06-22 23:23:02 +00:00
|
|
|
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.";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://font.ubuntu.com/";
|
2019-05-13 01:55:32 +00:00
|
|
|
license = lib.licenses.free;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = [ lib.maintainers.antono ];
|
2012-06-22 22:55:47 +00:00
|
|
|
};
|
|
|
|
}
|