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