2012-01-19 00:53:01 +04:00
|
|
|
{ stdenv, fetchurl }:
|
2012-01-07 00:10:23 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-09-30 14:14:59 +04:00
|
|
|
name = "cantarell-fonts-0.0.16";
|
2012-01-07 00:10:23 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-30 14:14:59 +04:00
|
|
|
url = mirror://gnome/sources/cantarell-fonts/0.0/cantarell-fonts-0.0.16.tar.xz;
|
|
|
|
sha256 = "071g2l89gdjgqhapw9dbm1ch6hnzydhf7b38pi86fm91adaqggqm";
|
2012-01-07 00:10:23 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2014-09-30 14:29:11 +04:00
|
|
|
description = "Default typeface used in the user interface of GNOME since version 3.0";
|
2012-01-07 00:10:23 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2014-09-30 14:14:59 +04:00
|
|
|
license = stdenv.lib.licenses.ofl;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2012-01-07 00:10:23 +04:00
|
|
|
};
|
|
|
|
}
|