mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 02:55:39 +00:00
Added ubuntu-font-family
This commit is contained in:
parent
d1ca1bd455
commit
1b2d1f8399
21
pkgs/data/fonts/ubuntu-font-family/default.nix
Normal file
21
pkgs/data/fonts/ubuntu-font-family/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ubuntu-font-family-0.80";
|
||||
buildInputs = [unzip];
|
||||
|
||||
src = fetchurl {
|
||||
url = http://font.ubuntu.com/download/ubuntu-font-family-0.80.zip;
|
||||
sha256 = "107170099bbc3beae8602b97a5c423525d363106c3c24f787d43e09811298e4c";
|
||||
};
|
||||
|
||||
installPhase =
|
||||
''
|
||||
mkdir -p $out/share/fonts/ubuntu
|
||||
cp *.ttf $out/share/fonts/ubuntu
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "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.";
|
||||
};
|
||||
}
|
@ -6213,6 +6213,8 @@ let
|
||||
|
||||
vistafonts = callPackage ../data/fonts/vista-fonts { };
|
||||
|
||||
ubuntu_font_family = callPackage ../data/fonts/ubuntu-font-family { };
|
||||
|
||||
wqy_zenhei = callPackage ../data/fonts/wqy-zenhei { };
|
||||
|
||||
xhtml1 = callPackage ../data/sgml+xml/schemas/xml-dtd/xhtml1 { };
|
||||
|
Loading…
Reference in New Issue
Block a user