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