nixpkgs/pkgs/data/fonts/ubuntu-font-family/default.nix

30 lines
872 B
Nix
Raw Normal View History

2012-06-22 22:55:47 +00:00
{ stdenv, fetchurl, unzip }:
2012-06-22 23:42:37 +00:00
stdenv.mkDerivation rec {
2012-06-22 22:55:47 +00:00
name = "ubuntu-font-family-0.80";
buildInputs = [unzip];
src = fetchurl {
2012-06-22 23:38:27 +00:00
url = "http://font.ubuntu.com/download/${name}.zip";
2012-06-22 23:36:46 +00:00
sha256 = "0k4f548riq23gmw4zhn30qqkcpaj4g2ab5rbc3lflfxwkc4p0w8h";
2012-06-22 22:55:47 +00:00
};
installPhase =
''
mkdir -p $out/share/fonts/ubuntu
cp *.ttf $out/share/fonts/ubuntu
'';
meta = {
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/;
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
2012-06-22 22:55:47 +00:00
};
}