2022-10-06 18:32:54 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ubuntu-font-family";
|
|
|
|
version = "0.83";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://assets.ubuntu.com/v1/fad7939b-${pname}-${version}.zip";
|
|
|
|
hash = "sha256-FAg1xn8Gcbwmuvqtg9SquSet4oTT9nqE+Izeq7ZMVcA=";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
installPhase = ''
|
|
|
|
install -D -m 644 -t "$out/share/fonts/truetype" *.ttf
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = "sha256-EEcYtOeOd2DKyRLo1kG7lk8euaFilCFMXMJNAosxHiQ=";
|
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;
|
|
|
|
maintainers = with maintainers; [ antono ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|