2017-08-11 06:03:56 +02:00
|
|
|
{ stdenv, fetchzip }:
|
2012-06-23 00:55:47 +02:00
|
|
|
|
2017-08-11 06:03:56 +02:00
|
|
|
fetchzip rec {
|
2015-10-25 19:11:53 +01:00
|
|
|
name = "ubuntu-font-family-0.83";
|
2012-06-23 00:55:47 +02:00
|
|
|
|
2017-08-11 06:03:56 +02: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-23 00:55:47 +02:00
|
|
|
|
2017-08-11 06:03:56 +02:00
|
|
|
sha256 = "090y665h4kf2bi623532l6wiwkwnpd0xds0jr7560xwfwys1hiqh";
|
2012-06-23 00:55:47 +02:00
|
|
|
|
|
|
|
meta = {
|
2012-06-23 01:23:02 +02: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 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.free;
|
2012-06-23 01:23:02 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.antono ];
|
2012-06-23 00:55:47 +02:00
|
|
|
};
|
|
|
|
}
|