nixpkgs/pkgs/data/fonts/cantarell-fonts/default.nix

20 lines
551 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2016-03-30 14:33:16 +00:00
stdenv.mkDerivation rec {
major = "0.0";
minor = "24";
name = "cantarell-fonts-${major}.${minor}";
src = fetchurl {
2016-03-30 14:33:16 +00:00
url = "mirror://gnome/sources/cantarell-fonts/${major}/${name}.tar.xz";
sha256 = "0r4jnc2x9yncf40lixjb1pqgpq8rzbi2fz33pshlqzjgx2d69bcw";
};
meta = {
2014-09-30 10:29:11 +00:00
description = "Default typeface used in the user interface of GNOME since version 3.0";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.ofl;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}