google-fonts: init at 2015-11-18
This commit is contained in:
parent
7ae05edcdd
commit
08c6a2cd92
@ -402,6 +402,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
fullName = "TCL/TK License";
|
fullName = "TCL/TK License";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ufl = {
|
||||||
|
fullName = "Ubuntu Font License 1.0";
|
||||||
|
url = http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt;
|
||||||
|
};
|
||||||
|
|
||||||
unfree = {
|
unfree = {
|
||||||
fullName = "Unfree";
|
fullName = "Unfree";
|
||||||
free = false;
|
free = false;
|
||||||
|
26
pkgs/data/fonts/google-fonts/default.nix
Normal file
26
pkgs/data/fonts/google-fonts/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "google-fonts";
|
||||||
|
version = "2015-11-18";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/google/fonts/archive/a26bc2b9f4ad27266c2587dc0355b3066519844a.tar.gz";
|
||||||
|
sha256 = "1aizwzsxg30mjds1628280bs7ishgsfairnx131654gm51aihw8p";
|
||||||
|
};
|
||||||
|
|
||||||
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/fonts/truetype
|
||||||
|
find . -name "*.ttf" -exec cp -v {} $out/share/fonts/truetype \;
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://www.google.com/fontsl;
|
||||||
|
description = "Font files available from Google Font";
|
||||||
|
license = with licenses; [ asl20 ofl ufl ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainer = with maintainers; [ manveru ];
|
||||||
|
};
|
||||||
|
}
|
@ -1669,6 +1669,8 @@ let
|
|||||||
|
|
||||||
google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { };
|
google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { };
|
||||||
|
|
||||||
|
google-fonts = callPackage ../data/fonts/google-fonts { };
|
||||||
|
|
||||||
gource = callPackage ../applications/version-management/gource { };
|
gource = callPackage ../applications/version-management/gource { };
|
||||||
|
|
||||||
gparted = callPackage ../tools/misc/gparted { };
|
gparted = callPackage ../tools/misc/gparted { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user