2022-10-21 18:38:19 +00:00
|
|
|
{ lib, fetchzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
fetchzip rec {
|
2022-10-06 18:32:54 +00:00
|
|
|
pname = "ubuntu-font-family";
|
|
|
|
version = "0.83";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
url = "https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-${version}.zip";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts/ubuntu
|
|
|
|
mv $out/*.ttf $out/share/fonts/ubuntu
|
|
|
|
find $out -maxdepth 1 ! -type d -exec rm {} +
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
sha256 = "090y665h4kf2bi623532l6wiwkwnpd0xds0jr7560xwfwys1hiqh";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +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.";
|
|
|
|
homepage = "http://font.ubuntu.com/";
|
2022-10-06 18:32:54 +00:00
|
|
|
license = licenses.free;
|
|
|
|
platforms = platforms.all;
|
2022-10-21 18:38:19 +00:00
|
|
|
maintainers = [ maintainers.antono ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|